/* =========================================================================
   Ariana Cleaning — Design System
   Olive / Ivory / Champagne luxury direction
   Display: Fraunces  |  Body: Mulish
   ========================================================================= */

:root {
  /* ---- Colour ---- */
  --olive-900: #2b331e;   /* footer / deepest */
  --olive-800: #353f25;
  --olive-700: #434d2d;   /* primary brand */
  --olive-600: #4f5b35;
  --olive-500: #5f6c42;
  --sage:      #7e8c6a;   /* muted eco accent */
  --gold:      #bf9f56;   /* champagne accent */
  --gold-soft: #d8c28e;
  --ivory:     #f8f5ee;
  --cream:     #fcfaf4;
  --stone:     #ece5d7;
  --beige:     #ded4c2;
  --charcoal:  #2a2922;
  --charcoal-soft: #585648;
  --line:      #e0d8c8;
  --white:     #ffffff;

  /* ---- Type ---- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-eyebrow: 0.78rem;
  --fs-body: 1.0625rem;
  --fs-lead: 1.2rem;
  --fs-h3: clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem);
  --fs-h2: clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  --fs-h1: clamp(2.2rem, 1.4rem + 3.4vw, 3.6rem);
  --fs-hero: clamp(2.5rem, 1.5rem + 4.4vw, 4.3rem);

  /* ---- Space ---- */
  --space-section: clamp(3.5rem, 2rem + 6vw, 6.5rem);
  --gutter: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
  --maxw: 1180px;
  --maxw-narrow: 760px;

  /* ---- Misc ---- */
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 18px;
  --shadow-soft: 0 18px 50px -28px rgba(43, 51, 30, 0.45);
  --shadow-card: 0 12px 36px -24px rgba(43, 51, 30, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--olive-700); text-decoration: none; }
a:hover { color: var(--olive-600); }
ul { padding: 0; list-style: none; }

/* ---------------------------------------------------------------- Type */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--olive-800);
  font-optical-sizing: auto;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

.lead { font-size: var(--fs-lead); color: var(--charcoal-soft); line-height: 1.6; }

/* ---------------------------------------------------------------- Layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--space-section); }
.section--tint { background: var(--ivory); }
.section--stone { background: var(--stone); }
.section--olive { background: var(--olive-700); color: var(--ivory); }
.section--olive h2, .section--olive h3 { color: var(--ivory); }
.section--olive .lead { color: rgba(248, 245, 238, 0.82); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }

.divider-leaf { display: flex; justify-content: center; margin-block: 0.5rem 2rem; color: var(--gold); }
.divider-leaf svg { width: 30px; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: var(--radius-s);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--olive-700); color: var(--ivory); box-shadow: var(--shadow-card); }
.btn--primary:hover { background: var(--olive-600); color: var(--white); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--olive-900); }
.btn--gold:hover { background: var(--gold-soft); color: var(--olive-900); transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: var(--olive-700); color: var(--olive-700); }
.btn--outline:hover { background: var(--olive-700); color: var(--ivory); }
.btn--ghost-light { background: transparent; border-color: rgba(248,245,238,0.5); color: var(--ivory); }
.btn--ghost-light:hover { background: var(--ivory); color: var(--olive-800); }
.btn--full { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row--center { justify-content: center; }

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252, 250, 244, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.32rem; color: var(--olive-800); letter-spacing: -0.01em; }
.brand:hover { color: var(--olive-800); }
.brand .mark { width: 34px; height: 34px; flex: none; color: var(--olive-700); }
.site-logo { display: block; width: auto; flex: none; }
.site-header .site-logo--icon { height: 48px; }
.mobile-nav .site-logo--icon { height: 42px; }
.footer-top .site-logo--full { height: 104px; margin-bottom: 0.4rem; }
.brand small { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-weight: 600; font-size: 0.96rem; color: var(--charcoal); position: relative; padding-block: 0.3rem; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width 0.25s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--olive-700); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.has-sub { position: relative; }
.has-sub > button { font: inherit; font-weight: 600; font-size: 0.96rem; background: none; border: 0; color: var(--charcoal); cursor: pointer; display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.3rem 0; }
.has-sub > button svg { width: 0.7em; transition: transform 0.2s var(--ease); }
.submenu {
  position: absolute; top: calc(100% + 0.6rem); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft); padding: 0.5rem; min-width: 290px;
  opacity: 0; visibility: hidden; transition: all 0.2s var(--ease);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-sub:hover > button svg { transform: rotate(180deg); }
.submenu a { display: block; padding: 0.6rem 0.8rem; border-radius: var(--radius-s); font-size: 0.92rem; }
.submenu a::after { display: none; }
.submenu a:hover { background: var(--ivory); }

.header-cta { display: flex; align-items: center; gap: 0.8rem; }
.header-phone { font-weight: 700; color: var(--olive-700); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.4rem; }
.header-phone svg { width: 1em; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem; color: var(--olive-800); }
.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile nav */
.mobile-nav { display: none; }
@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--cream); z-index: 90; padding: 1.5rem var(--gutter) 6rem;
    transform: translateX(100%); transition: transform 0.32s var(--ease);
    overflow-y: auto; box-shadow: var(--shadow-soft);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
  .mobile-nav a { display: block; padding: 0.85rem 0; font-size: 1.1rem; font-weight: 600; border-bottom: 1px solid var(--line); color: var(--charcoal); }
  .mobile-nav .m-sub a { font-size: 1rem; padding-left: 1rem; color: var(--charcoal-soft); font-weight: 500; }
  .mobile-nav .m-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 1.4rem; }
  .mobile-nav .btn { margin-top: 1.4rem; }
  .menu-close { background: none; border: 0; cursor: pointer; color: var(--olive-800); padding: 0.3rem; }
  .menu-close svg { width: 26px; }
  .scrim { position: fixed; inset: 0; background: rgba(42,41,34,0.5); z-index: 80; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
  .scrim.open { opacity: 1; visibility: visible; }
}

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; background: var(--olive-700); color: var(--ivory); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(216,194,142,0.18), transparent 55%),
    linear-gradient(180deg, var(--olive-700), var(--olive-800));
}
.hero-botanical { position: absolute; right: -4%; bottom: -6%; width: min(42vw, 460px); color: rgba(216,194,142,0.16); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 3rem + 8vw, 7rem); }
/* Full-bleed hero: composite photo fills the whole hero, text overlaps on top */
.hero--photo { position: relative; display: flex; align-items: center; overflow: hidden; }

/* Reserve the hero media area immediately to prevent layout shift. */
.hero--photo > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero--photo > picture .hero-bgimg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero--photo::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(43,51,30,0.92) 0%, rgba(43,51,30,0.82) 30%, rgba(43,51,30,0.5) 50%, rgba(43,51,30,0.1) 72%, rgba(43,51,30,0) 100%); }
.hero--photo .hero-botanical { display: none; }
.hero--photo .hero-inner { position: relative; z-index: 2; display: block; width: 100%; }
.hero--photo .hero-text { max-width: 560px; }

/* Desktop: reserve the full hero aspect ratio before the image is decoded. */
@media (min-width: 861px) {
  .hero--photo { min-height: 0; width: 100%; aspect-ratio: 16 / 9; }
}

@media (max-width: 860px) {
  .hero--photo { flex-direction: column; }

  .hero--photo > picture {
    position: relative;
    inset: auto;
    order: 2;
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin-top: 1.6rem;
    border-radius: 16px;
    overflow: hidden;
  }

  .hero--photo > picture .hero-bgimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero--photo::after { display: none; }
  .hero--photo .hero-inner { order: 1; }
  .hero--photo .hero-text { max-width: 100%; }
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-hero);
  max-width: 16ch;
  font-weight: 400;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lead { color: rgba(248,245,238,0.86); max-width: 56ch; margin-top: 1.4rem; }
.hero .btn-row { margin-top: 2.2rem; }
.hero-sub { font-size: var(--fs-h1); }

/* page hero (interior, lighter) */
.pagehero { background: var(--olive-700); color: var(--ivory); position: relative; overflow: hidden; }
.pagehero::before { content:""; position:absolute; inset:0; background: radial-gradient(110% 120% at 90% 0%, rgba(216,194,142,0.16), transparent 50%); }
.pagehero-inner { position: relative; z-index: 2; padding-block: clamp(2.5rem, 2rem + 5vw, 4.5rem); }
.pagehero h1 { color: var(--ivory); max-width: 20ch; font-weight: 400; }
.pagehero .lead { color: rgba(248,245,238,0.85); margin-top: 1rem; }
.pagehero .btn-row { margin-top: 1.8rem; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.82rem; color: rgba(248,245,238,0.7); margin-bottom: 1.2rem; }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.breadcrumbs a { color: rgba(248,245,238,0.85); }
.breadcrumbs a:hover { color: var(--gold-soft); }
.breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin-left: 0.4rem;
  color: rgba(248,245,238,0.45);
}

/* ---------------------------------------------------------------- Trust bar */
.trustbar { background: var(--olive-800); color: var(--ivory); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.4rem 1.5rem; padding-block: 1.3rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; font-weight: 600; color: rgba(248,245,238,0.92); }
.trust-item svg { width: 1.2em; color: var(--gold-soft); flex: none; }

/* ---------------------------------------------------------------- Cards / grids */
.grid { display: grid; gap: clamp(1.1rem, 2vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.service-card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 1.8rem 1.6rem; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.service-card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--gold); transition: width 0.4s var(--ease); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--beige); }
.service-card:hover::after { width: 100%; }
.service-card .num { font-family: var(--font-display); font-size: 0.9rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
.service-card .ico { width: 40px; height: 40px; color: var(--olive-700); margin: 0.6rem 0 1rem; }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.98rem; color: var(--charcoal-soft); margin-bottom: 1.2rem; }
.service-card .more { margin-top: auto; font-weight: 700; color: var(--olive-700); display: inline-flex; align-items: center; gap: 0.4rem; }
.service-card .more svg { width: 1em; transition: transform 0.25s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .ico { width: 30px; height: 30px; color: var(--gold); flex: none; margin-top: 0.15rem; }
.feature h3 { font-family: var(--font-body); font-size: 1.08rem; font-weight: 800; color: var(--olive-800); margin-bottom: 0.3rem; }
.feature p { font-size: 0.97rem; color: var(--charcoal-soft); }

.section--olive .feature .ico { color: var(--gold-soft); }
.section--olive .feature h3 { color: var(--ivory); }
.section--olive .feature p { color: rgba(248,245,238,0.78); }

/* checklist */
.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.7rem 1.6rem; }
.checklist li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 1rem; }
.checklist li::before {
  content: ""; flex: none; width: 1.3em; height: 1.3em; margin-top: 0.15em; border-radius: 50%;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b331e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/0.8em no-repeat;
}

/* process steps */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step .n { flex: none; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--olive-700); font-family: var(--font-display); font-weight: 600; display: grid; place-items: center; font-size: 1.1rem; }
.step h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.step p { font-size: 0.97rem; color: var(--charcoal-soft); }

/* media / image placeholder */
.ph {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  background: linear-gradient(135deg, var(--olive-600), var(--olive-800));
  color: rgba(248,245,238,0.85); min-height: 240px; display: grid; place-items: center; text-align: center;
  border: 1px solid var(--line);
}
.ph::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 80% at 30% 20%, rgba(216,194,142,0.18), transparent 60%); }
.ph .ph-label { position: relative; z-index:2; padding: 1.2rem; font-size: 0.86rem; max-width: 28ch; }
.ph .ph-label strong { display:block; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--gold-soft); }
.ph--light { background: var(--stone); color: var(--charcoal-soft); border: 1px dashed var(--beige); }
.ph--light::after { display:none; }
.ph--light .ph-label strong { color: var(--olive-700); }

.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.beforeafter .ph { min-height: 200px; }
.tag { position: absolute; top: 0.8rem; left: 0.8rem; z-index: 3; background: var(--gold); color: var(--olive-900); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3em 0.7em; border-radius: 100px; }

/* split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 800px) { .split, .split--reverse { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

/* ---------------------------------------------------------------- Testimonials */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.quote {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 1.8rem; position: relative;
}
.quote .mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--gold); }
.quote .stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.12em; line-height: 1; margin-bottom: 0.9rem; }
.quote p { font-size: 1.02rem; color: var(--charcoal); font-style: italic; margin: 0.5rem 0 1.2rem; }
.quote .who { font-weight: 800; color: var(--olive-800); font-size: 0.95rem; }
.quote .who span { display: block; font-weight: 600; color: var(--charcoal-soft); font-style: normal; font-size: 0.85rem; }
.placeholder-note { font-size: 0.8rem; color: var(--charcoal-soft); text-align: center; margin-top: 1.4rem; font-style: italic; }

/* areas served */
.areas { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.areas--center { justify-content: center; max-width: 860px; margin-inline: auto; }
.areas li { background: var(--white); border: 1px solid var(--line); color: var(--olive-800); padding: 0.5em 1em; border-radius: 100px; font-size: 0.88rem; font-weight: 600; }
.section--olive .areas li { background: rgba(248,245,238,0.08); border-color: rgba(216,194,142,0.32); color: var(--ivory); }
.section--stone .areas li { background: var(--white); border-color: var(--line); color: var(--olive-800); }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 1.08rem; color: var(--olive-800); padding: 1.2rem 2.5rem 1.2rem 0; position: relative; display: block; }
.faq-q .pm { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--gold); transition: transform 0.3s var(--ease); }
.faq-q[aria-expanded="true"] .pm { transform: translateY(-50%) rotate(45deg); }
.js .faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq-a > div { padding: 0 0 1.3rem; color: var(--charcoal-soft); }
.faq-a p { margin-bottom: 0.6rem; }
.section--olive .faq-item { border-color: rgba(216,194,142,0.25); }
.section--olive .faq-q { color: var(--ivory); }
.section--olive .faq-a > div { color: rgba(248,245,238,0.8); }

/* ---------------------------------------------------------------- CTA band */
.ctaband { background: var(--olive-700); color: var(--ivory); position: relative; overflow: hidden; }
.ctaband::before { content:""; position:absolute; inset:0; background: radial-gradient(90% 120% at 80% 0%, rgba(216,194,142,0.2), transparent 55%); }
.ctaband .wrap { position: relative; z-index: 2; text-align: center; }
.ctaband h2 { color: var(--ivory); }
.ctaband .lead { color: rgba(248,245,238,0.85); margin: 0.8rem auto 2rem; }

/* ---------------------------------------------------------------- Form */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(1.5rem, 3vw, 2.6rem); box-shadow: var(--shadow-card); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--olive-800); margin-bottom: 0.4rem; }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--charcoal);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-s);
  padding: 0.8em 0.9em; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--olive-600); box-shadow: 0 0 0 3px rgba(79,91,53,0.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--charcoal-soft); margin-top: 0.8rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { margin-top: 1rem; padding: 0.95rem 1.15rem; border-radius: var(--radius-m); background: #fff4f0; border: 1px solid #e3b9a8; color: #7a3417; font-size: 0.9rem; }
.form-error strong { color: #7a3417; }
.form-error-actions { display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-top: 0.6rem; }
.form-error-actions a { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--olive-700); }
.form-error-actions a svg { width: 16px; height: 16px; }
.dev-note { background: var(--ivory); border: 1px dashed var(--beige); border-radius: var(--radius-m); padding: 1rem 1.2rem; font-size: 0.84rem; color: var(--charcoal-soft); margin-top: 1.4rem; }
.dev-note strong { color: var(--olive-800); }

/* contact methods */
.contact-methods { display: grid; gap: 0.9rem; }
.contact-method { display: flex; gap: 1rem; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 1.1rem 1.3rem; }
.contact-method > svg, .contact-method .ico { width: 28px; height: 28px; color: var(--olive-700); flex: none; }
.contact-method b { display: block; color: var(--olive-800); font-size: 1.02rem; }
.contact-method span { font-size: 0.9rem; color: var(--charcoal-soft); }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--olive-900); color: rgba(248,245,238,0.78); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem; }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top .brand { color: var(--ivory); margin-bottom: 0.9rem; }
.footer-top .brand .mark { color: var(--gold-soft); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; font-weight: 700; }
.footer-col a, .footer-col p { color: rgba(248,245,238,0.78); font-size: 0.94rem; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-about p { font-size: 0.94rem; max-width: 38ch; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(216,194,142,0.35); color: var(--gold-soft); transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease); }
.footer-social a:hover { background: var(--gold); color: var(--olive-900); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-contact a { display: flex; gap: 0.5rem; align-items: center; }
.footer-contact svg { width: 1em; color: var(--gold-soft); flex: none; }
.footer-bottom { border-top: 1px solid rgba(248,245,238,0.14); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; font-size: 0.82rem; color: rgba(248,245,238,0.6); }
.footer-bottom a { color: rgba(248,245,238,0.7); }

/* ---------------------------------------------------------------- Sticky mobile CTA */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none;
  grid-template-columns: 1fr 1fr 1fr; background: var(--olive-800);
  border-top: 1px solid var(--olive-600); box-shadow: 0 -8px 24px -16px rgba(0,0,0,0.5);
}
.mobile-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; padding: 0.65rem 0.4rem; color: var(--ivory); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em; }
.mobile-cta a svg { width: 20px; height: 20px; color: var(--gold-soft); }
.mobile-cta a + a { border-left: 1px solid rgba(248,245,238,0.14); }
.mobile-cta a.is-quote { background: var(--gold); color: var(--olive-900); }
.mobile-cta a.is-quote svg { color: var(--olive-900); }
@media (max-width: 920px) {
  .mobile-cta { display: grid; }
  body { padding-bottom: 64px; }
}

/* ---------------------------------------------------------------- Floating action buttons */
.fab-stack { position: fixed; right: 20px; bottom: 22px; z-index: 75; display: flex; flex-direction: column; gap: 0.8rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px -8px rgba(0,0,0,0.4); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.fab:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(0,0,0,0.45); }
.fab svg { width: 28px; height: 28px; }
.fab--wa { background: #25d366; }
.fab--wa svg { color: #fff; }
.fab--call { background: var(--olive-700); border: 1px solid var(--gold-soft); display: none; }
.fab--call svg { color: var(--gold-soft); }
@media (max-width: 920px) {
  .fab-stack { right: 14px; bottom: 78px; gap: 0.7rem; }  /* sit above the sticky CTA bar */
  .fab { width: 52px; height: 52px; }
  .fab--call { display: flex; }
}

/* ---------------------------------------------------------------- Utility / motion */

/*
 * Elementos comuns continuam usando a animação de entrada.
 * O conteúdo principal do hero é exibido imediatamente para não atrasar o LCP.
 */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* O hero contém o título LCP e não deve aguardar JavaScript */
.js .hero .reveal,
.js .hero .hero-text,
.js .hero h1 {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

.center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--olive-700); color: var(--ivory); padding: 0.6rem 1rem; border-radius: var(--radius-s); z-index: 100; }
.skip-link:focus { left: 1rem; top: 1rem; color: var(--ivory); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }

.prose p { margin-bottom: 1.1rem; }
.prose h2 { margin: 2.2rem 0 0.9rem; }
.prose h3 { margin: 1.6rem 0 0.6rem; }


/* Jotform embed — Contact page */
.jotform-embed-shell {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(49, 66, 34, 0.08);
}
.jotform-embed-shell iframe {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border: 0;
}
@media (max-width: 760px) {
  .jotform-embed-shell {
    border-radius: 12px;
  }
}
