/* ==========================================================================
   Dubai Home Service Co. — styles.css
   One cohesive, hand-written stylesheet shared by every page.
   Palette: deep petrol-teal + cooling teal + warm brass on cool pale.
   Type:    Space Grotesk (display) + Manrope (body), system fallback.
   ========================================================================== */

/* ------------------------------------------------------------------ tokens */
:root {
  /* Color */
  --ink:        #102423;   /* deep petrol-ink: dark sections + headings */
  --petrol:     #0C4744;   /* primary brand */
  --petrol-700: #0E524F;
  --petrol-800: #0A3937;
  --teal:       #14A89C;   /* bright cooling accent */
  --teal-700:   #0F8A80;
  --mint:       #E6F0EE;   /* pale section tint */
  --paper:      #F5F8F7;   /* page background */
  --white:      #FFFFFF;
  --brass:      #C8932E;   /* warm gold accent — numerals, stamps, key highlights */
  --brass-700:  #A8782A;
  --brass-soft: #E7C77A;
  --wa:         #25D366;   /* WhatsApp green — reserved for WhatsApp buttons only */
  --wa-700:     #1FB458;
  --text:       #1A2B2A;   /* body text on light */
  --muted:      #586B6A;   /* secondary text on light */
  --muted-dark: #9FB1AF;   /* secondary text on dark */
  --line:       #D9E3E1;   /* hairline on light */
  --line-dark:  rgba(255,255,255,.14);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Scale */
  --fs-xs:   .8125rem;
  --fs-sm:   .9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.4rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  2.9rem;
  --fs-hero: clamp(2.6rem, 6vw, 4.4rem);

  /* Spacing */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;

  /* Radii + shadow + measure */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16,36,35,.06), 0 2px 8px rgba(16,36,35,.05);
  --shadow:    0 6px 18px rgba(16,36,35,.08), 0 2px 6px rgba(16,36,35,.05);
  --shadow-lg: 0 24px 50px rgba(16,36,35,.16);
  --measure:   70ch;
  --container: 1180px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--brass); color: var(--ink); }

/* ------------------------------------------------------------------ type */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.1; font-weight: 600; letter-spacing: -.02em; text-wrap: balance; }
h1 { font-size: var(--fs-hero); font-weight: 700; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p { max-width: var(--measure); }
p + p { margin-top: 1rem; }
strong { color: var(--ink); font-weight: 700; }
.lead { font-size: var(--fs-md); color: var(--muted); max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; background: var(--brass);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--brass-soft); }

/* ------------------------------------------------------------------ layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.4rem; }
.section { padding-block: var(--space-7); }
.section.tight { padding-block: var(--space-6); }
.section.alt { background: var(--white); }
.section.tint { background: var(--mint); }
.section.dark { background: var(--petrol-800); color: #DCE7E5; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.dark p { color: #B9CAC8; }
.section.ink { background: var(--ink); color: #C9D6D4; }

.section-head { max-width: 64ch; margin-bottom: var(--space-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center p { margin-inline: auto; }

.grid { display: grid; gap: var(--space-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ------------------------------------------------------------------ buttons */
.btn {
  --btn-bg: var(--petrol);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .85rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-brass     { --btn-bg: var(--brass);   --btn-fg: #1a1206; }
.btn-brass:hover { --btn-bg: #d59f38; }
.btn-teal      { --btn-bg: var(--teal);    --btn-fg: #06201d; }
.btn-teal:hover{ --btn-bg: #15b8ab; }
.btn-outline   { --btn-bg: transparent;    --btn-fg: var(--petrol); border-color: var(--petrol); }
.btn-outline:hover { --btn-bg: var(--petrol); --btn-fg: var(--white); }
.btn-ghost-light { --btn-bg: transparent; --btn-fg: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { --btn-bg: rgba(255,255,255,.1); }
.btn-wa        { --btn-bg: var(--wa); --btn-fg: #052e12; }
.btn-wa:hover  { --btn-bg: var(--wa-700); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: var(--fs-base); }
.btn-block { display: flex; width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,248,247,.86);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--petrol), var(--petrol-800));
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; color: var(--ink); }
.brand-tag { font-size: .72rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; font-weight: 600; }

.nav { display: flex; align-items: center; gap: .35rem; margin-left: auto; }
.nav a {
  position: relative;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-sm);
  padding: .5rem .8rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--petrol); background: var(--mint); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--petrol); }
.nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .25rem;
  height: 2px; background: var(--brass); border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: .55rem; }
.header-cta .call-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  color: var(--petrol); padding: .55rem .9rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--petrol); text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.header-cta .call-btn:hover { background: var(--petrol); color: var(--white); text-decoration: none; }
.header-cta .call-btn svg { width: 1.05em; height: 1.05em; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; flex: none;
  border: 1.5px solid var(--line); background: var(--white);
  border-radius: 12px; cursor: pointer;
  position: relative; margin-left: auto;
}
.nav-toggle span {
  position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease), width .3s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -7px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 7px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(20,168,156,.30), transparent 55%),
    radial-gradient(90% 80% at 10% 110%, rgba(200,147,46,.16), transparent 60%),
    linear-gradient(160deg, var(--petrol-800), var(--petrol) 60%, var(--petrol-700));
  color: #DCE7E5;
  padding-block: clamp(3.5rem, 9vw, 7rem);
}
.hero::after {
  /* fine vent-slat texture, very subtle */
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 9px);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-5); align-items: center; }
.hero-copy h1 { color: var(--white); }
.hero-copy h1 .accent { color: var(--brass-soft); }
.hero-copy .lead { color: #C2D3D1; font-size: var(--fs-md); max-width: 52ch; }
.hero .eyebrow { color: var(--brass-soft); }
.hero .eyebrow::before { background: var(--brass-soft); }
.hero-cta { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-pills { display: flex; flex-wrap: wrap; gap: .5rem .7rem; margin-top: var(--space-3); }
.hero-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .02em;
  color: #DCE7E5; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  padding: .4rem .75rem; border-radius: var(--radius-pill);
}
.hero-pill svg { width: 14px; height: 14px; color: var(--teal); }

/* hero illustration card */
.hero-art {
  position: relative;
  background: rgba(8,30,28,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(2px);
}
.hero-art .ticket {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: .9rem; margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(255,255,255,.2);
  font-family: var(--font-display); font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase;
  color: var(--brass-soft);
}
.hero-art .ticket .stamp {
  border: 1.5px solid var(--brass-soft); color: var(--brass-soft);
  padding: .15rem .5rem; border-radius: 6px; transform: rotate(-3deg);
}
.hero-art svg.skyline { width: 100%; height: auto; }

/* ------------------------------------------------------------------ trust strip */
.trust {
  background: var(--ink); color: #C9D6D4;
  padding-block: var(--space-3);
  border-bottom: 3px solid var(--brass);
}
.trust .container { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; align-items: center; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: .6rem; font-size: var(--fs-sm); font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--teal); flex: none; }
.trust small { display: block; color: var(--muted-dark); font-weight: 500; font-size: .8rem; }

/* ------------------------------------------------------------------ cards / services */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #C5D4D2; }

.svc {
  position: relative;
  display: flex; flex-direction: column; gap: .8rem;
  overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.svc:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 52px; height: 52px; flex: none;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--mint); color: var(--petrol);
  border: 1px solid var(--line);
}
.svc-ico svg { width: 27px; height: 27px; }
.svc h3 { font-size: var(--fs-lg); }
.svc p { font-size: var(--fs-sm); color: var(--muted); }
.svc-link {
  margin-top: auto;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  color: var(--teal-700);
  display: inline-flex; align-items: center; gap: .35rem;
}
.svc-link svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.svc:hover .svc-link svg { transform: translateX(3px); }

/* numbered service-ticket card (used on services page sections + process) */
.ticket-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ticket-card .tnum {
  font-family: var(--font-display);
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .14em;
  color: var(--brass-700);
}

/* ------------------------------------------------------------------ process */
.steps { counter-reset: step; display: grid; gap: var(--space-3); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.step-num {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  color: var(--brass);
  background: rgba(200,147,46,.1);
  border: 1.5px solid rgba(200,147,46,.4);
  border-radius: 50%;
}
.section.dark .step-num { color: var(--brass-soft); background: rgba(231,199,122,.12); border-color: rgba(231,199,122,.4); }
.step h3 { font-size: var(--fs-md); }
.step p { font-size: var(--fs-sm); color: var(--muted); }
.section.dark .step p { color: #B9CAC8; }

/* ------------------------------------------------------------------ why / values */
.feature { display: grid; gap: .55rem; }
.feature .f-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--petrol); color: var(--brass-soft);
  margin-bottom: .3rem;
}
.feature .f-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--fs-md); }
.feature p { font-size: var(--fs-sm); color: var(--muted); }

/* split feature layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
.split-art {
  background: linear-gradient(155deg, var(--petrol), var(--petrol-800));
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.checklist { display: grid; gap: .65rem; margin-top: var(--space-3); }
.checklist li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; font-size: var(--fs-sm); color: var(--text); }
.checklist svg { width: 20px; height: 20px; color: var(--teal-700); flex: none; margin-top: .15rem; }

/* ------------------------------------------------------------------ areas */
.area-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1rem; border-radius: var(--radius-pill);
  background: var(--white); border: 1px solid var(--line);
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.chip:hover { border-color: var(--brass); color: var(--petrol); transform: translateY(-2px); }
.chip svg { width: 16px; height: 16px; color: var(--brass); }

/* ------------------------------------------------------------------ FAQ */
.faq-list { display: grid; gap: .8rem; max-width: 60rem; margin-inline: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item.open { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: none; border: 0;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-md);
  color: var(--ink);
}
.faq-q .toggle {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint); color: var(--petrol);
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.faq-q .toggle svg { width: 16px; height: 16px; }
.faq-item.open .toggle { transform: rotate(45deg); background: var(--brass); color: #1a1206; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a-inner { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: var(--fs-sm); }
.faq-a-inner p + p { margin-top: .7rem; }

/* ------------------------------------------------------------------ CTA band */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--petrol-800), var(--petrol));
  color: #DCE7E5;
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,147,46,.35), transparent 70%);
}
.cta-band h2 { color: var(--white); max-width: 18ch; }
.cta-band p { color: #C2D3D1; max-width: 50ch; }
.cta-band .cta-row { margin-top: var(--space-3); }

/* ------------------------------------------------------------------ contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--space-4); box-shadow: var(--shadow-sm);
}
.contact-methods { display: grid; gap: 1rem; margin-top: var(--space-2); }
.contact-method { display: grid; grid-template-columns: 44px 1fr; gap: .9rem; align-items: center; }
.contact-method .m-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--mint); color: var(--petrol); }
.contact-method .m-ico svg { width: 22px; height: 22px; }
.contact-method h4 { font-size: var(--fs-sm); color: var(--muted); font-weight: 600; font-family: var(--font-body); letter-spacing: .03em; text-transform: uppercase; }
.contact-method a, .contact-method p { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: var(--fs-md); text-decoration: none; }
.contact-method a:hover { color: var(--teal-700); }

/* form */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xs); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem;
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 4px rgba(20,168,156,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: var(--fs-xs); color: var(--muted); }

/* hours table */
.hours { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours th, .hours td { text-align: left; padding: .55rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-family: var(--font-display); font-weight: 600; color: var(--muted); }
.hours td { text-align: right; color: var(--ink); font-weight: 600; }
.hours tr:last-child td, .hours tr:last-child th { border-bottom: 0; }
.hours .today { color: var(--teal-700); }

/* ------------------------------------------------------------------ page hero (inner) */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 90% -20%, rgba(20,168,156,.22), transparent 55%),
    linear-gradient(160deg, var(--petrol-800), var(--petrol));
  color: #DCE7E5;
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: #C2D3D1; font-size: var(--fs-md); max-width: 56ch; }
.page-hero .eyebrow { color: var(--brass-soft); }
.page-hero .eyebrow::before { background: var(--brass-soft); }

/* breadcrumb */
.breadcrumbs { font-size: var(--fs-xs); color: var(--muted-dark); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; list-style: none; padding: 0; }
.breadcrumbs a { color: var(--brass-soft); font-weight: 600; }
.breadcrumbs span[aria-current] { color: #DCE7E5; }

/* ------------------------------------------------------------------ footer */
.site-footer { background: var(--ink); color: #A9BBB9; padding-block: var(--space-6) var(--space-4); border-top: 3px solid var(--brass); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: var(--space-4); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: #92A6A4; font-size: var(--fs-sm); max-width: 38ch; }
.footer-col h4 { color: var(--white); font-size: var(--fs-sm); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: #B9CAC8; font-size: var(--fs-sm); text-decoration: none; }
.footer-col a:hover { color: var(--brass-soft); text-decoration: none; }
.footer-affil {
  margin-top: 1.2rem; padding: 1rem; border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  font-size: var(--fs-xs); color: #92A6A4; line-height: 1.5;
}
.footer-affil strong { color: var(--brass-soft); }
.footer-affil a { color: var(--teal); font-weight: 600; }
.footer-contact li { display: grid; gap: .15rem; font-size: var(--fs-sm); }
.footer-contact li span { color: #92A6A4; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-contact a { color: #DCE7E5; font-weight: 600; }
.footer-bottom { margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; font-size: var(--fs-xs); color: #7E9290; }
.footer-bottom a { color: #92A6A4; }

/* ------------------------------------------------------------------ utilities */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }
.measure { max-width: var(--measure); }
.cluster { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.stack > * + * { margin-top: 1rem; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--space-4); }
.kicker-num { font-family: var(--font-display); font-weight: 700; color: var(--brass); font-size: var(--fs-2xl); line-height: 1; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: var(--fs-2xl); line-height: 1; }
.stat .label { font-size: var(--fs-sm); color: var(--muted); margin-top: .4rem; }
.section.dark .stat .num, .section.ink .stat .num { color: var(--brass-soft); }
.section.dark .stat .label, .section.ink .stat .label { color: #B9CAC8; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ------------------------------------------------------------------ responsive */
@media (max-width: 980px) {
  :root { --space-7: 5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--space-4); }
}

@media (max-width: 820px) {
  .nav, .header-cta .wa-quick { display: none; }
  .nav-toggle { display: block; }
  /* mobile nav panel */
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .6rem 1.4rem 1.2rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    margin-left: 0;
  }
  .nav.open { display: flex; transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem .5rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: var(--fs-md); }
  .nav a:last-child { border-bottom: 0; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--mint); }
  .header-cta { margin-left: auto; gap: .4rem; }
  .header-cta .call-btn { padding: .5rem .75rem; }
  .header-cta .call-btn span { display: inline; }
}

@media (max-width: 720px) {
  :root { --fs-2xl: 1.9rem; --fs-3xl: 2.3rem; }
  .section { padding-block: var(--space-6); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero .container { gap: var(--space-4); grid-template-columns: 1fr; }
  .cta-band .cta-row .btn { flex: 1 1 auto; }
  .hero-art { order: -1; }
}

@media (max-width: 420px) {
  .brand-tag { display: none; }
  .header-cta .wa-quick span { display: none; }
}

/* ------------------------------------------------------------------ motion prefs */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
