/* ==========================================================================
   Dubai Homeworks — Home & Property Maintenance, Dubai UAE
   Design system: petrol/brass palette · Fraunces + Manrope + JetBrains Mono
   "Work-order / spec-sheet" vernacular. Mobile-first. No framework.
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* Palette — Dubai Gulf petrol + brass on cool limestone */
  --ink:        #0C2A33;   /* near-black petrol, body & heading text */
  --petrol:     #0E4D5C;   /* primary brand */
  --petrol-700: #0A3D49;   /* hover */
  --petrol-800: #073040;   /* pressed / deep panel */
  --petrol-900: #05222B;   /* hero & footer ground */
  --brass:      #C2995A;   /* accent — muted Dubai gold */
  --brass-600:  #AE8540;   /* darker brass */
  --brass-200:  #E7D8B0;   /* soft tint */
  --paper:      #FBFBF9;   /* page background — warm white */
  --mist:       #EAF0F1;   /* cool alt section */
  --mist-2:     #DCE6E7;   /* deeper divider */
  --line:       #D7E1E2;   /* hairline borders */
  --slate:      #51656B;   /* secondary text */
  --slate-2:    #7A8B90;   /* muted captions */
  --wa:         #25D366;   /* WhatsApp green (buttons only) */
  --wa-600:     #1FB958;

  /* Type */
  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Fluid type scale */
  --t-xs:   0.78rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   1.3rem;
  --t-2xl:  clamp(1.5rem, 1.2rem + 1.1vw, 2.05rem);
  --t-3xl:  clamp(2rem, 1.4rem + 2.4vw, 3rem);
  --t-hero: clamp(2.6rem, 1.6rem + 4.4vw, 4.6rem);

  /* Spacing scale */
  --s-1: 0.5rem;
  --s-2: 0.75rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4.5rem;
  --s-8: 6.5rem;

  /* Shape & motion */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(7, 48, 64, 0.06), 0 2px 6px rgba(7, 48, 64, 0.05);
  --shadow-md: 0 6px 18px rgba(7, 48, 64, 0.10), 0 2px 6px rgba(7, 48, 64, 0.06);
  --shadow-lg: 0 22px 50px rgba(5, 34, 43, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1180px;
}

/* ---------- 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; }
}
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Type helpers ------------------------------------------------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--petrol-900);
}
h1 { font-size: var(--t-hero); }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-2xl); letter-spacing: -0.01em; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: var(--t-lg); color: var(--ink); }
p { color: var(--slate); }
.lead { font-size: var(--t-lg); color: var(--slate); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--bare::before { display: none; }
.eyebrow--light { color: var(--brass-200); }
.eyebrow--light::before { background: var(--brass-200); }

.mono { font-family: var(--font-mono); }
.balance { text-wrap: balance; }

/* ---------- Layout ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3.2rem, 7vw, var(--s-8)); }
.section--tight { padding-block: clamp(2.4rem, 5vw, 4rem); }
.section--alt { background: var(--mist); }
.section--dark { background: var(--petrol-900); color: #DCE6E7; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #AFC1C5; }
.section--dark .eyebrow { color: var(--brass); }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 0.85rem; }
.section-head .lead { font-size: var(--t-lg); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }

/* Ticket strip — the spec-sheet signature divider */
.ticket {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.ticket::before, .ticket::after {
  content: "";
  height: 1px;
  background: var(--mist-2);
  flex: 1;
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  --btn-bg: var(--petrol);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-base);
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: 0 8px 20px rgba(14, 77, 92, 0.22); }
.btn--primary:hover { background: var(--petrol-700); box-shadow: 0 12px 26px rgba(14, 77, 92, 0.3); }

.btn--ghost {
  background: transparent;
  color: var(--petrol);
  border-color: var(--mist-2);
}
.btn--ghost:hover { background: var(--petrol); color: #fff; border-color: var(--petrol); }

.btn--light {
  background: #fff;
  color: var(--petrol-900);
}
.btn--light:hover { background: var(--brass); color: var(--petrol-900); }

.btn--brass { background: var(--brass); color: var(--petrol-900); }
.btn--brass:hover { background: var(--brass-600); color: #fff; }

.btn--whatsapp { background: var(--wa); color: #062B14; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25); }
.btn--whatsapp:hover { background: var(--wa-600); color: #fff; }

.btn--lg { padding: 1.1em 1.8em; font-size: var(--t-lg); }
.btn--block { display: flex; width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  color: var(--petrol);
  border-bottom: 2px solid var(--brass);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.text-link:hover { color: var(--brass-600); gap: 0.7em; }
.text-link--light { color: #fff; border-color: var(--brass-200); }
.text-link--light:hover { color: var(--brass-200); }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 249, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--petrol);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--petrol-900);
  letter-spacing: -0.01em;
}
.brand-name b span { color: var(--brass-600); }
.brand-name small {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-top: 4px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-list { display: flex; align-items: center; gap: 0.3rem; }
.nav-list a {
  position: relative;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--ink);
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0.85rem; right: 0.85rem; bottom: 0.3rem;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-list a:hover { color: var(--petrol); }
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: var(--petrol); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1.5px solid var(--mist-2);
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--petrol);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.header-phone:hover { border-color: var(--brass); background: var(--mist); }
.header-phone svg { width: 1rem; height: 1rem; color: var(--brass-600); }
.header-phone small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; color: var(--slate-2); text-transform: uppercase; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 10px;
  border: 1.5px solid var(--mist-2);
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--petrol);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

/* ---------- Hero --------------------------------------------------------- */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero::before {
  /* faint grid / blueprint texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--mist) 1px, transparent 1px),
    linear-gradient(90deg, var(--mist) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.5;
  mask-image: radial-gradient(120% 80% at 80% 10%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 80% 10%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 em { font-style: italic; color: var(--brass-600); font-weight: 600; }
.hero-sub { font-size: var(--t-lg); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px dashed var(--mist-2);
}
.hero-trust li {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust svg { width: 16px; height: 16px; color: var(--brass-600); flex: none; }

/* Hero art panel — the "work ticket" */
.hero-art { position: relative; }
.ticket-card {
  position: relative;
  background: var(--petrol-900);
  color: #DCE6E7;
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ticket-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 70% 30%, rgba(194,153,90,0.35), transparent 65%);
  pointer-events: none;
}
.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-200);
  padding-bottom: 1rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px dashed rgba(231,216,176,0.3);
}
.ticket-top .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,0.18);
  margin-right: 0.5rem; vertical-align: middle;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.45} }

.house-svg { width: 100%; height: auto; margin: 0.4rem 0 1.2rem; }
.ticket-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.ticket-list li {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  color: #C7D6D9;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.ticket-list li::before {
  content: "";
  width: 14px; height: 14px;
  flex: none;
  border-radius: 4px;
  border: 1.5px solid var(--brass);
  background: linear-gradient(135deg, var(--brass) 0 45%, transparent 45%);
}
.ticket-foot {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(231,216,176,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ticket-foot .stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.ticket-foot .stat-lbl {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-200);
}
.ticket-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--brass);
  color: var(--petrol-900);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--t-xs);
  letter-spacing: 0.08em;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* ---------- Promise stats ----------------------------------------------- */
.promise { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--mist-2); border: 1px solid var(--mist-2); border-radius: var(--r-lg); overflow: hidden; }
.promise .stat { background: var(--paper); padding: clamp(1.2rem, 2.5vw, 1.9rem); }
.promise .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--petrol);
  line-height: 1;
  display: block;
}
.promise .stat-num span { color: var(--brass-600); font-size: 0.5em; vertical-align: super; }
.promise .stat-lbl {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---------- Services grid ----------------------------------------------- */
.services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem 1.6rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brass);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-idx {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--mist-2);
  font-weight: 600;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  background: var(--mist);
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
  color: var(--petrol);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon { background: var(--petrol); color: var(--brass-200); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.service-card p { font-size: var(--t-sm); margin-bottom: 1rem; }
.service-card .includes {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.service-card .includes span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--mist);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}
.service-card .text-link { font-size: var(--t-sm); }

/* ---------- Feature / why ----------------------------------------------- */
.features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--petrol-900);
  color: var(--brass-200);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature p { font-size: var(--t-sm); }

/* ---------- Process ----------------------------------------------------- */
.process { counter-reset: step; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); position: relative; }
.step {
  position: relative;
  padding: 1.8rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.step-num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  color: var(--brass-600);
  font-weight: 700;
  display: block;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: var(--t-sm); }
.step-arrow { color: var(--brass); }

/* ---------- Areas ------------------------------------------------------- */
.areas-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.area-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 600; font-size: var(--t-sm);
  color: #DCE6E7;
}
.area-card svg { width: 18px; height: 18px; color: var(--brass); flex: none; }

/* ---------- FAQ --------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 880px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--brass); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--petrol-900);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--mist-2);
  display: grid; place-items: center;
  color: var(--brass-600);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item[open] .faq-q-icon { transform: rotate(45deg); background: var(--brass); color: #fff; border-color: var(--brass); }
.faq-a { padding: 0 1.4rem 1.4rem; color: var(--slate); }
.faq-a p + p { margin-top: 0.7rem; }

/* ---------- CTA band ---------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--petrol-900);
  border-radius: var(--r-xl);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(194,153,90,0.22), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(14,77,92,0.6), transparent 50%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 18ch; margin: 0.8rem auto 1rem; }
.cta-band p { color: #BCCFD2; max-width: 52ch; margin: 0 auto 1.8rem; font-size: var(--t-lg); }
.cta-band .hero-cta { justify-content: center; }
.cta-band .ticket { color: var(--brass-200); justify-content: center; }
.cta-band .ticket::before, .cta-band .ticket::after { background: rgba(231,216,176,0.3); }

/* ---------- Split / story ----------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.media-panel {
  background: var(--mist);
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border: 1px solid var(--line);
}
.media-panel svg { width: 100%; height: auto; }

ul.tick-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.4rem; }
.tick-list li {
  display: flex; gap: 0.8rem; align-items: flex-start;
  color: var(--ink); font-weight: 500;
}
.tick-list li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--petrol);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7A05A' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 12 10 17 19 7'/></svg>");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* ---------- Values ------------------------------------------------------ */
.values-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.value {
  padding: 1.8rem;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.value .step-num { color: var(--brass); }
.value h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.value p { font-size: var(--t-sm); }

/* ---------- Contact ----------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
}
.info-icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--mist); color: var(--petrol);
  display: grid; place-items: center;
}
.info-icon svg { width: 22px; height: 22px; }
.info-card h4 { margin-bottom: 0.15rem; }
.info-card p, .info-card a { font-size: var(--t-sm); color: var(--slate); }
.info-card a { font-weight: 700; color: var(--petrol); }
.info-card a:hover { color: var(--brass-600); }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--mist-2);
  border-radius: var(--r-sm);
  background: var(--paper);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--petrol); box-shadow: 0 0 0 3px rgba(14,77,92,0.12);
}
.form-note { font-size: var(--t-xs); color: var(--slate-2); margin-top: 0.6rem; }
.form-alt { text-align: center; margin-top: 1.2rem; font-size: var(--t-sm); color: var(--slate); }

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--petrol-900); color: #AFC1C5; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-name b { color: #fff; }
.footer-brand p { color: #9DB2B6; font-size: var(--t-sm); margin-top: 1rem; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: var(--t-sm); color: #BCCFD2; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--brass-200); }
.footer-affil {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(231,216,176,0.35);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: #C7D6D9;
}
.footer-affil a { color: var(--brass-200); font-weight: 700; border-bottom: 1px solid rgba(231,216,176,0.5); }
.footer-affil a:hover { color: #fff; }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.06em;
  color: #7A9095;
}
.footer-bottom a:hover { color: var(--brass-200); }

/* ---------- Page hero (inner pages) ------------------------------------- */
.page-hero {
  position: relative;
  background: var(--petrol-900);
  color: #DCE6E7;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(110% 90% at 85% 0%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(110% 90% at 85% 0%, #000 20%, transparent 70%);
}
.page-hero-inner { position: relative; padding-block: clamp(2.8rem, 6vw, 4.8rem); }
.page-hero h1 { color: #fff; margin: 1rem 0; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--brass-200); }
.page-hero p { color: #BCCFD2; font-size: var(--t-lg); max-width: 56ch; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-200);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.breadcrumb a { color: #9DB2B6; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--brass); }

/* ---------- Service detail (services.html) ----------------------------- */
.service-block {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: 0; }
.service-block:nth-child(even) .service-block-media { order: 2; }
.service-block-media {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
}
.service-block-media svg { width: 70%; max-height: 200px; color: var(--petrol); }
.service-block .eyebrow { margin-bottom: 0.9rem; }
.service-block h2 { font-size: var(--t-2xl); margin-bottom: 0.7rem; }
.service-block > div > p { margin-bottom: 1.2rem; }
.service-block .includes-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.2rem; margin-bottom: 1.3rem;
}
.service-block .includes-grid li {
  font-size: var(--t-sm); color: var(--ink); display: flex; gap: 0.6rem; align-items: flex-start;
}
.service-block .includes-grid li::before {
  content: "+"; color: var(--brass-600); font-weight: 700; flex: none;
}

/* ---------- Reveal animation -------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .ticket-top .dot { animation: none; }
}

/* ---------- Utilities --------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1rem; }
.cluster { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.hide-sm { }
.mobile-cta { display: none; }
.eyebrow--center { justify-content: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-media { order: 0; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .header-phone { display: none; }
  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem clamp(1.1rem, 4vw, 2.2rem) 1.6rem;
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    width: 100%;
  }
  .nav-list a {
    padding: 0.95rem 0.6rem;
    font-size: var(--t-base);
    border-bottom: 1px solid var(--mist);
    border-radius: 0;
  }
  .nav-list a::after { display: none; }
  .header-cta .btn { display: none; }
  .nav .mobile-cta { display: flex; margin-top: 1rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 460px; }
  .promise { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .promise { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-block .includes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-name small { display: none; }
  .hero-cta .btn { width: 100%; }
  .cta-band .hero-cta .btn { width: auto; flex: 1; min-width: 0; }
}

/* Body lock when mobile nav open */
body.nav-locked { overflow: hidden; }
