/*
Theme Name: Team Arora
Theme URI: https://www.teamarora.com/
Author: Team Arora
Description: Custom luxury real-estate theme for Team Arora (RE/MAX) — editorial design in official RE/MAX red, blue & white. Single-page lead-generation homepage with services, team spotlight, process, areas served, testimonials and conversion CTAs.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: team-arora
*/

:root {
  --ivory: #f5f7fa;        /* clean cool white */
  --ivory-deep: #e9edf3;
  --ink: #122149;          /* deep RE/MAX navy ink */
  --ink-soft: #4c5670;
  --estate: #003da5;       /* RE/MAX blue (primary) */
  --estate-light: #0a4cc0;
  --brass: #dc1c2e;        /* RE/MAX red (accent) */
  --brass-deep: #c01525;
  --line: rgba(18, 33, 73, 0.14);
  --shadow: 0 30px 60px -25px rgba(0, 61, 165, 0.4);
  --display: "Bodoni Moda", Georgia, serif;
  --body: "Archivo", -apple-system, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ---------- NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 247, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.admin-bar .site-header { top: 32px; }
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1240px; margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-weight: 700; font-size: 1.55rem; letter-spacing: 0.04em;
  color: var(--estate); text-decoration: none;
  display: flex; align-items: baseline; gap: 8px;
}
.logo span { color: var(--brass); font-size: 0.85rem; letter-spacing: 0.28em; font-weight: 500; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 0.82rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--brass); transition: width 0.35s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--estate); color: var(--ivory) !important;
  padding: 11px 22px; border-radius: 100px; letter-spacing: 0.04em !important;
  text-transform: none !important; font-size: 0.85rem !important;
  transition: transform 0.3s, background 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--estate-light); transform: translateY(-2px); }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--ink); display: block; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 70px 0 0; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass-deep); font-weight: 600; margin-bottom: 26px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); }

.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem); line-height: 1.02;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--estate); }
.hero h1 .brass { color: var(--brass-deep); }
.hero p.lead {
  font-size: 1.12rem; color: var(--ink-soft); max-width: 460px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--estate); color: var(--ivory); border: none;
  padding: 16px 30px; border-radius: 100px; font-family: var(--body);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 14px 30px -12px rgba(0, 61, 165, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); background: var(--estate-light); box-shadow: 0 22px 40px -14px rgba(0, 61, 165, 0.6); }
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 9px; padding: 14px 8px;
  border-bottom: 1.5px solid transparent; transition: border-color 0.3s;
}
.btn-ghost:hover { border-color: var(--brass); }
.btn-ghost .dot { width: 9px; height: 9px; border-radius: 50%; background: #3da06a; box-shadow: 0 0 0 4px rgba(61,160,106,0.2); }

/* hero image collage */
.hero-visual { position: relative; height: 540px; }
.hero-visual .frame {
  position: absolute; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); background: var(--ivory-deep);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.frame-main { inset: 0 60px 80px 0; z-index: 2; }
.frame-sub {
  width: 210px; height: 250px; right: 0; bottom: 0; z-index: 3;
  border: 6px solid var(--ivory);
}
.frame-badge {
  position: absolute; top: 24px; left: -14px; z-index: 4;
  background: var(--brass); color: #fff; padding: 14px 20px;
  border-radius: 12px; box-shadow: var(--shadow);
  font-family: var(--display); line-height: 1; text-align: center;
}
.frame-badge strong { font-size: 1.7rem; display: block; font-weight: 700; }
.frame-badge span { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--body); font-weight: 600; opacity: 0.85; }

/* ---------- STAT STRIP ---------- */
.stats { background: var(--estate); color: var(--ivory); margin-top: 90px; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1240px; margin: 0 auto;
}
.stat { padding: 46px 32px; text-align: center; border-right: 1px solid rgba(244,239,229,0.13); }
.stat:last-child { border-right: none; }
.stat strong {
  font-family: var(--display); font-size: 2.7rem; font-weight: 700;
  display: block; line-height: 1; color: var(--ivory);
}
.stat strong .brass { color: var(--brass); }
.stat span { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,239,229,0.7); margin-top: 12px; display: block; }

/* ---------- SECTION SHELL ---------- */
section.block { padding: 110px 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; letter-spacing: -0.01em;
  color: var(--ink); margin: 14px 0 18px;
}
.sec-head h2 em { font-style: italic; color: var(--estate); }
.sec-head p { color: var(--ink-soft); font-size: 1.05rem; }
.kicker { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc {
  background: var(--ivory-deep); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc-img { aspect-ratio: 4/3.2; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.8,.2,1); }
.svc:hover .svc-img img { transform: scale(1.07); }
.svc-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-num { font-family: var(--display); color: var(--brass); font-size: 0.9rem; font-weight: 700; }
.svc h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 600; margin: 6px 0 8px; color: var(--ink); }
.svc p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.svc .svc-link { margin-top: 16px; color: var(--estate); font-weight: 600; font-size: 0.85rem; text-decoration: none; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 6px; }
.svc .svc-link:hover { color: var(--brass-deep); }

/* ---------- PROCESS ---------- */
.process { background: var(--ink); color: var(--ivory); }
.process .sec-head h2 { color: var(--ivory); }
.process .sec-head h2 em { color: var(--brass); }
.process .sec-head p { color: rgba(244,239,229,0.65); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step { padding: 0 26px; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 22px; right: -2px; width: 60%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--brass) 0 5px, transparent 5px 11px); opacity: 0.45;
}
.step-num {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--brass);
  color: var(--brass); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: 22px;
  background: var(--ink);
}
.step h4 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.step p { font-size: 0.9rem; color: rgba(244,239,229,0.62); }

/* ---------- AGENTS ---------- */
.agents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.agent {
  border-radius: 16px; overflow: hidden; background: var(--ivory-deep);
  border: 1px solid var(--line); transition: transform 0.4s, box-shadow 0.4s;
}
.agent:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.agent-photo { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.agent-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(0.15); transition: transform 0.6s, filter 0.6s; }
.agent:hover .agent-photo img { transform: scale(1.05); filter: grayscale(0); }
.agent-photo .role {
  position: absolute; bottom: 12px; left: 12px; background: rgba(244,239,229,0.92);
  color: var(--estate); padding: 5px 13px; border-radius: 100px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.agent-body { padding: 20px 22px 24px; }
.agent-body h3 { font-family: var(--display); font-size: 1.45rem; font-weight: 600; }
.agent-body .exp { color: var(--brass-deep); font-size: 0.82rem; font-weight: 600; margin-top: 2px; }
.agent-links { display: flex; gap: 14px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.agent-links a {
  color: var(--ink-soft); text-decoration: none; font-size: 0.82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s;
}
.agent-links a:hover { color: var(--estate); }
.team-more { text-align:center; margin-top:40px; font-size:1.02rem; color:var(--ink-soft); }
.team-more strong { color: var(--estate); }
.team-more a { color: var(--brass-deep); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--brass); }

/* ---------- AREAS ---------- */
.areas { background: var(--ivory-deep); }
.area-tags { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; align-items: baseline; }
.area-tag {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 500;
  color: var(--ink); text-decoration: none; padding: 6px 4px; position: relative;
  transition: color 0.3s; line-height: 1;
}
.area-tag::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px; height: 2px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.area-tag:hover { color: var(--estate); }
.area-tag:hover::after { transform: scaleX(1); }
.area-tag.sep { color: var(--brass); font-style: italic; }

/* ---------- TESTIMONIAL ---------- */
.quote-block { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-block .stars { color: var(--brass); letter-spacing: 4px; font-size: 1.2rem; margin-bottom: 28px; }
.quote-block blockquote {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.3; color: var(--ink); letter-spacing: -0.01em;
}
.quote-block .who { margin-top: 30px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); }
.quote-block .who span { color: var(--ink-soft); font-weight: 400; }

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--estate); color: var(--ivory); border-radius: 28px;
  padding: 76px 60px; text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(220, 28, 46, 0.3), transparent 45%);
}
.final-inner { position: relative; z-index: 2; }
.final h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.06; margin-bottom: 18px; }
.final h2 em { font-style: italic; color: var(--brass); }
.final p { color: rgba(244,239,229,0.75); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.final .btn-primary { background: var(--brass); color: #fff; }
.final .btn-primary:hover { background: #e8394a; }
.final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  border: 1px solid rgba(244,239,229,0.4); color: var(--ivory); text-decoration: none;
  padding: 16px 30px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.3s, border-color 0.3s;
}
.btn-outline:hover { background: rgba(244,239,229,0.08); border-color: var(--ivory); }

/* ---------- FOOTER ---------- */
.site-footer { padding: 70px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.foot-brand .logo { margin-bottom: 16px; }
.foot-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 280px; }
.foot-col h5 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-deep); margin-bottom: 16px; font-weight: 700; }
.foot-col a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; margin-bottom: 10px; transition: color 0.3s; }
.foot-col a:hover { color: var(--estate); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 26px; color: var(--ink-soft); font-size: 0.82rem; flex-wrap: wrap; gap: 10px; }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-bar { display: none; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@keyframes floatIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero .eyebrow, .hero h1, .hero p.lead, .hero-actions { animation: floatIn 0.9s cubic-bezier(.2,.8,.2,1) backwards; }
.hero h1 { animation-delay: 0.1s; }
.hero p.lead { animation-delay: 0.22s; }
.hero-actions { animation-delay: 0.34s; }
.hero-visual { animation: floatIn 1.1s cubic-bezier(.2,.8,.2,1) 0.2s backwards; }

/* ---------- INNER PAGE / BLOG FALLBACK CONTENT ---------- */
main.block { min-height: 50vh; }
.entry-content { color: var(--ink-soft); font-size: 1.05rem; max-width: 760px; }
.entry-content p { margin-bottom: 1.1em; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { font-family: var(--display); color: var(--ink); margin: 1.4em 0 0.5em; line-height: 1.2; }
.entry-content a { color: var(--estate); }
.entry-content a:hover { color: var(--brass-deep); }
.entry-content ul, .entry-content ol { margin: 0 0 1.1em 1.3em; }
.entry-content img { max-width: 100%; height: auto; border-radius: 12px; }
.entry-content blockquote { border-left: 3px solid var(--brass); padding-left: 18px; font-style: italic; color: var(--ink); margin: 1.2em 0; }
.entry-list { display: grid; gap: 28px; }
.entry-card { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.entry-card h3 { font-family: var(--display); font-size: 1.7rem; font-weight: 600; margin-bottom: 6px; }
.entry-card h3 a { color: var(--ink); text-decoration: none; }
.entry-card h3 a:hover { color: var(--estate); }
.entry-meta { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; margin-bottom: 12px; }
.entry-pagination { margin-top: 50px; }
.entry-pagination a, .entry-pagination .current { padding: 8px 14px; margin-right: 6px; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--ink-soft); }
.entry-pagination .current { background: var(--estate); color: var(--ivory); border-color: var(--estate); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { height: 420px; max-width: 520px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(244,239,229,0.13); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .step::after { display: none; }
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .site-nav { padding: 14px 20px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 18px;
    background: var(--ivory); padding: 24px 24px 30px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-cta { margin-top: 4px; }
  .burger { display: flex; }
  section.block { padding: 72px 0; }
  .services-grid, .agents-grid, .steps, .foot-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .final { padding: 54px 26px; border-radius: 20px; }
  .frame-sub { width: 150px; height: 180px; }
  .mobile-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--estate); padding: 12px 16px; gap: 12px;
    box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.4);
  }
  .mobile-bar a {
    flex: 1; text-align: center; padding: 13px; border-radius: 100px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem; letter-spacing: 0.02em;
  }
  .mobile-bar .call { background: var(--brass); color: #fff; }
  .mobile-bar .wa { background: rgba(244,239,229,0.14); color: var(--ivory); border: 1px solid rgba(244,239,229,0.3); }
  body { padding-bottom: 70px; }
}

/* ============================================================
   BREA GLOBALS — styling for elements injected by the
   brea-globals.php mu-plugin (top utility bar, mobile sticky
   CTA, footer compliance, header call shortcode).
   ============================================================ */

/* ---------- TOP UTILITY BAR (desktop) ---------- */
.top-utility-bar {
  background: var(--ink);
  color: rgba(245, 247, 250, 0.92);
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-utility-bar .inner {
  max-width: 1240px; margin: 0 auto; padding: 9px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.top-utility-bar .left,
.top-utility-bar .right { display: flex; align-items: center; gap: 24px; }
.top-utility-bar a {
  color: rgba(245, 247, 250, 0.9); text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.25s ease;
}
.top-utility-bar a:hover { color: #fff; }
.top-utility-bar .right a:hover { color: var(--brass); }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-bar { display: none; }
.mobile-sticky-bar .row { display: flex; }
.mobile-sticky-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 9px 6px; text-decoration: none;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em; color: #fff;
}
.mobile-sticky-bar .icon { font-size: 1.15rem; line-height: 1; }
.mobile-sticky-bar .call { background: var(--brass); }
.mobile-sticky-bar .whatsapp { background: #1f9d57; }
.mobile-sticky-bar .email { background: var(--estate); }

/* ---------- FOOTER COMPLIANCE (RECO attribution) ---------- */
.footer-compliance {
  max-width: 1240px; margin: 0 auto; padding: 24px 32px 30px;
  color: var(--ink-soft); font-size: 0.78rem; line-height: 1.75; text-align: center;
  border-top: 1px solid var(--line);
}
.footer-compliance strong { color: var(--ink); font-weight: 700; }

/* ---------- HEADER CALL CTA ([brea_call_cta] shortcode) ---------- */
.header-call-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brass); color: #fff; text-decoration: none;
  padding: 10px 18px; border-radius: 100px; font-weight: 700; font-size: 0.9rem;
  transition: background 0.25s ease;
}
.header-call-cta:hover { background: var(--brass-deep); }

/* Legacy theme mobile bar is replaced by .mobile-sticky-bar from the mu-plugin. */
.mobile-bar { display: none !important; }

/* ---------- BREA GLOBALS RESPONSIVE ---------- */
@media (max-width: 980px) {
  .top-utility-bar { display: none; }
  .mobile-sticky-bar {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250;
    box-shadow: 0 -8px 26px -12px rgba(0, 0, 0, 0.45);
  }
  body { padding-bottom: 60px; }
}
