/* ==========================================================================
   Dubai Home Repair Experts — shared design system
   Concept: a premium "service dispatch" aesthetic.
   Palette: biscuit paper, evergreen-ink, petrol teal, honey marigold accent.
   Type: Space Grotesk (display), Hanken Grotesk (body), Space Mono (utility).
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  /* colour */
  --paper:        #F6F3EC;
  --paper-2:      #EFE9DC;
  --paper-3:      #E7E0CF;
  --ink:          #15211E;
  --ink-soft:     #4C5A55;
  --ink-faint:    #7C8A84;
  --petrol:       #0E3A40;
  --petrol-deep:  #0A2B30;
  --petrol-soft:  #15464D;
  --petrol-mist:  #DCE7E3;
  --honey:        #E89B2C;
  --honey-deep:   #BE7713;
  --honey-soft:   #FBE6C5;
  --wa:           #25D366;
  --wa-deep:      #1Da851;
  --line:         rgba(21, 33, 30, 0.12);
  --line-strong:  rgba(21, 33, 30, 0.22);
  --line-light:   rgba(255, 255, 255, 0.16);

  /* type families */
  --ff-display: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-body:    "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ff-mono:    "Space Mono", "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;

  /* type scale */
  --fs-display: clamp(2.5rem, 6vw, 4.4rem);
  --fs-h1:      clamp(2.1rem, 4.6vw, 3.1rem);
  --fs-h2:      clamp(1.6rem, 3.1vw, 2.25rem);
  --fs-h3:      clamp(1.18rem, 1.6vw, 1.32rem);
  --fs-lead:    clamp(1.06rem, 1.5vw, 1.24rem);
  --fs-body:    1rem;
  --fs-small:   0.9rem;
  --fs-mono:    0.78rem;

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

  /* layout */
  --container: 1180px;
  --container-narrow: 880px;
  --radius:    14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 30, 28, 0.06);
  --shadow:    0 14px 40px -18px rgba(10, 43, 48, 0.28);
  --shadow-lg: 0 30px 70px -28px rgba(10, 43, 48, 0.42);

  --header-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  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: var(--petrol); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; margin: 0; letter-spacing: -0.018em; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--honey); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.2rem, 7vw, var(--space-7)); }
.section--alt    { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--dark   { background: var(--petrol); color: #EAF1EF; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

.stack > * + * { margin-top: var(--space-2); }
.stack-lg > * + * { margin-top: var(--space-4); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Mono utility label (eyebrow / ticket data) ------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--ff-mono);
  font-size: var(--fs-mono);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--honey);
  display: inline-block;
}
.section--dark .eyebrow { color: var(--honey); }
.eyebrow--plain::before { display: none; }

/* ---------- Headline & lead --------------------------------------------- */
.h-display { font-size: var(--fs-display); font-weight: 700; line-height: 1.04; }
.h1 { font-size: var(--fs-h1); font-weight: 700; }
.h2 { font-size: var(--fs-h2); font-weight: 700; }
.h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.01em; }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.6; }
.section--dark .lead { color: #C9D8D4; }
.accent { color: var(--honey-deep); }
.section--dark .accent { color: var(--honey); }

.section-head { max-width: 64ch; margin-bottom: clamp(1.8rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: 0.85rem; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  --bg: var(--petrol);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95em 1.4em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--primary { background: var(--honey); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(232, 155, 44, 0.8); }
.btn--primary:hover { background: var(--honey-deep); color: #fff; }
.btn--dark   { background: var(--petrol); color: #fff; }
.btn--dark:hover  { background: var(--petrol-deep); color: #fff; }
.btn--ghost  { background: transparent; color: var(--petrol); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--petrol); color: #fff; border-color: var(--petrol); }
.btn--light  { background: #fff; color: var(--petrol); }
.btn--light:hover { background: var(--paper-2); color: var(--petrol-deep); }
.btn--wa     { background: var(--wa); color: #06280f; font-weight: 700; }
.btn--wa:hover { background: var(--wa-deep); color: #fff; }
.btn--lg     { font-size: 1.06rem; padding: 1.05em 1.7em; }
.btn--block  { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

/* ---------- Header / Nav ------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 243, 236, 0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* brand */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 11px;
  background: var(--petrol);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--ff-display); font-weight: 700; font-size: 1.04rem; letter-spacing: -0.01em; }
.brand-sub  { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }

/* nav */
.nav { margin-inline: auto; }
.nav-list { display: flex; align-items: center; gap: 0.35rem; }
.nav-link {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.55em 0.85em;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.18s, color 0.18s;
}
.nav-link:hover { background: var(--paper-2); text-decoration: none; color: var(--petrol-deep); }
.nav-link[aria-current="page"] { color: var(--petrol); box-shadow: inset 0 -2px 0 var(--honey); }

.header-cta { display: flex; align-items: center; gap: 0.6rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--ink); }
.header-phone:hover { text-decoration: none; }
.header-phone .ico { width: 16px; height: 16px; color: var(--honey-deep); }
.header-phone .num { font-family: var(--ff-mono); font-weight: 700; font-size: 0.92rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.18s;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(6px); position: relative; top: -2px; }

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.hero::before {
  /* subtle blueprint grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,58,64,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,58,64,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 30%, transparent 78%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy .h-display { margin-bottom: 1.1rem; }
.hero-copy .h-display .line2 { color: var(--petrol); }
.hero-copy .lead { max-width: 50ch; margin-bottom: 1.8rem; }
.hero-trust {
  margin-top: 1.6rem;
  display: flex; flex-wrap: wrap; gap: 1.2rem 1.8rem;
  font-family: var(--ff-mono); font-size: var(--fs-mono); letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.hero-trust .t-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--honey); box-shadow: 0 0 0 4px var(--honey-soft); }

/* the dispatch ticket — signature element */
.ticket {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  font-family: var(--ff-mono);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 14px;
  background-image: radial-gradient(circle at center, var(--paper) 4.5px, transparent 5px);
  background-size: 14px 22px; background-repeat: repeat-y;
}
.ticket::before { left: -1px; transform: translateX(-50%); }
.ticket::after  { right: -1px; transform: translateX(50%); }
.ticket-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px dashed var(--line-strong);
  padding-bottom: 0.9rem; margin-bottom: 1.1rem;
}
.ticket-id { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-faint); text-transform: uppercase; }
.ticket-id b { color: var(--ink); }
.status-pill {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--honey-soft); color: var(--honey-deep);
  padding: 0.4em 0.7em; border-radius: 999px;
}
.status-pill .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--honey); position: relative; }
.status-pill .pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--honey);
  animation: pulse 1.8s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }
.ticket-row {
  display: grid; grid-template-columns: 92px 1fr; gap: 0.4rem 0.8rem;
  padding: 0.55rem 0; border-bottom: 1px dashed var(--line);
  font-size: 0.84rem;
}
.ticket-row:last-of-type { border-bottom: 0; }
.ticket-row .k { color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem; align-self: center; }
.ticket-row .v { color: var(--ink); font-weight: 700; }
.ticket-row .v.big { font-size: 1.05rem; }
.ticket-foot {
  margin-top: 1.1rem; padding-top: 0.9rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  font-size: 0.74rem; color: var(--ink-faint);
}
.ticket-foot .brand-mini { color: var(--petrol); font-weight: 700; letter-spacing: 0.04em; }

/* ---------- Logos / affiliation strip ----------------------------------- */
.affil {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding-block: 1.4rem;
  font-family: var(--ff-mono); font-size: var(--fs-mono); letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.affil-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.4rem; justify-content: center; }
.affil b { color: var(--ink); }
.affil a { color: var(--petrol); font-weight: 700; }

/* ---------- Service cards ---------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.4rem); }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.grid--why      { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--3        { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2vw, 1.7rem);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: flex; flex-direction: column; gap: 0.7rem;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--petrol-mist); }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--petrol-mist); color: var(--petrol);
  margin-bottom: 0.4rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: var(--fs-h3); }
.card p { color: var(--ink-soft); font-size: 0.96rem; }
.card .card-link {
  margin-top: auto; padding-top: 0.5rem;
  font-family: var(--ff-mono); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--honey-deep);
}
.card .card-link svg { width: 14px; height: 14px; vertical-align: -2px; }

/* ---------- Process steps ---------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2.4vw, 1.8rem); counter-reset: step; }
.step {
  position: relative; padding: 1.6rem; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
}
.step .num {
  font-family: var(--ff-mono); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em;
  color: var(--honey-deep); display: inline-block; margin-bottom: 0.7rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }
.section--dark .step { background: var(--petrol-soft); border-color: var(--line-light); }
.section--dark .step p { color: #C9D8D4; }

/* ---------- Why / feature list ----------------------------------------- */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .f-ico {
  width: 44px; height: 44px; flex: none; border-radius: 11px;
  background: var(--honey-soft); color: var(--honey-deep);
  display: grid; place-items: center;
}
.feature .f-ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }
.section--dark .feature p { color: #C9D8D4; }
.section--dark .feature .f-ico { background: rgba(232,155,44,0.16); color: var(--honey); }

/* ---------- Service areas ---------------------------------------------- */
.areas-cloud { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-tag {
  font-family: var(--ff-body); font-weight: 600; font-size: 0.92rem;
  padding: 0.5em 1em; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.area-tag:hover { background: var(--petrol); color: #fff; border-color: var(--petrol); transform: translateY(-2px); text-decoration: none; }
.section--dark .area-tag { background: var(--petrol-soft); border-color: var(--line-light); color: #EAF1EF; }
.section--dark .area-tag:hover { background: var(--honey); color: var(--ink); border-color: var(--honey); }

/* ---------- FAQ accordion ---------------------------------------------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--petrol-mist); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 1rem; text-align: left;
  padding: 1.1rem 1.3rem; background: transparent; border: 0;
  font-family: var(--ff-display); font-weight: 600; font-size: 1.06rem; color: var(--ink);
}
.faq-q .q-ico {
  margin-left: auto; flex: none; width: 30px; height: 30px; border-radius: 8px;
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s;
  color: var(--petrol);
}
.faq-q .q-ico svg { width: 16px; height: 16px; }
.faq-item[open] .q-ico { transform: rotate(45deg); background: var(--honey); color: var(--ink); border-color: var(--honey); }
.faq-a { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); max-width: 72ch; }
.faq-a p + p { margin-top: 0.7rem; }

/* ---------- CTA band --------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--petrol);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,155,44,0.35), transparent 70%); pointer-events: none;
}
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: #C9D8D4; margin-top: 0.8rem; max-width: 48ch; }
.cta-band .btn-row { justify-content: flex-end; }
.cta-band .ticket-id-light { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--honey); text-transform: uppercase; margin-bottom: 0.8rem; }

/* ---------- Mini split (contact / about) ------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

/* info rows (contact) */
.info-list { display: flex; flex-direction: column; gap: 1.2rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row .ir-ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--petrol); color: #fff; display: grid; place-items: center; }
.info-row .ir-ico svg { width: 22px; height: 22px; }
.info-row .k { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.info-row .v { font-family: var(--ff-display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.info-row .v a { color: inherit; }

/* ---------- Form ------------------------------------------------------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.8em 0.9em; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--honey); background: #fff; box-shadow: 0 0 0 4px var(--honey-soft);
}
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.9rem; }
.form-msg { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 10px; background: var(--petrol-mist); color: var(--petrol-deep); font-weight: 600; display: none; }
.form-msg.show { display: block; }

/* ---------- Values list (about) ---------------------------------------- */
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2.5vw, 1.8rem); }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.value-card .v-num { font-family: var(--ff-mono); font-weight: 700; color: var(--honey-deep); font-size: 0.78rem; letter-spacing: 0.12em; }
.value-card h3 { margin: 0.6rem 0 0.4rem; }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Footer ----------------------------------------------------- */
.site-footer { background: var(--petrol-deep); color: #C9D8D4; padding-top: clamp(2.6rem, 5vw, 4rem); }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.6rem, 4vw, 2.8rem);
  padding-bottom: 2.6rem; border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-mark { margin-bottom: 1rem; }
.footer-brand p { color: #A8BBB6; max-width: 38ch; font-size: 0.95rem; margin-top: 0.4rem; }
.footer-col h4 {
  font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--honey); margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: #D6E2DE; text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: center; color: #D6E2DE; font-size: 0.95rem; }
.footer-contact .num { font-family: var(--ff-mono); font-weight: 700; color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.5rem; align-items: center; justify-content: space-between;
  padding: 1.4rem 0 2rem; font-size: 0.84rem; color: #8FA4A0;
}
.footer-bottom a { color: #B7C7C3; }
.footer-affil {
  background: rgba(255,255,255,0.04); border-top: 1px solid var(--line-light);
  padding: 1.1rem 0; text-align: center;
  font-family: var(--ff-mono); font-size: var(--fs-mono); letter-spacing: 0.05em; color: #A8BBB6;
}
.footer-affil a { color: var(--honey); font-weight: 700; }

/* ---------- Reveal animation ------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .status-pill .pulse::after { animation: none; }
}

/* ---------- Skip link --------------------------------------------------- */
.skip-link {
  position: absolute; left: 0.8rem; top: -60px; z-index: 100;
  background: var(--petrol); color: #fff; padding: 0.6em 1em; border-radius: 8px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.8rem; color: #fff; text-decoration: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: var(--paper);
    padding: 1.4rem clamp(1.1rem, 4vw, 2.2rem) 2rem;
    transform: translateY(-130%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0.3rem; }
  .nav-link { font-size: 1.1rem; padding: 0.85em 0.6em; border-radius: 10px; }
  .nav-link[aria-current="page"] { background: var(--paper-2); box-shadow: none; }
  .header-phone .lbl { display: none; }
  .nav-toggle[aria-expanded="true"] span { background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-2px) rotate(-45deg); }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-ticket-wrap { order: 2; }
  .split { grid-template-columns: 1fr; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 auto; }
  .header-cta .header-phone .lbl, .header-cta .header-phone .ico { display: none; }
  .ticket-row { grid-template-columns: 84px 1fr; }
}

/* page-specific niceties */
.page-hero { padding-block: clamp(2.6rem, 6vw, 4.4rem) clamp(2.2rem, 5vw, 3.4rem); position: relative; }
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(14,58,64,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14,58,64,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 15% 0%, #000 25%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 90% at 15% 0%, #000 25%, transparent 75%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.breadcrumb { font-family: var(--ff-mono); font-size: 0.76rem; letter-spacing: 0.05em; color: var(--ink-faint); margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb [aria-current="page"] { color: var(--petrol); font-weight: 700; }

/* services detail blocks */
.svc { display: grid; grid-template-columns: 0.5fr 1fr; gap: clamp(1.4rem, 4vw, 3rem); padding-block: clamp(1.8rem, 4vw, 2.8rem); border-top: 1px solid var(--line); align-items: start; }
.svc:first-of-type { border-top: 0; }
.svc-meta { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.svc-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--petrol); color: #fff; display: grid; place-items: center; }
.svc-icon svg { width: 32px; height: 32px; }
.svc-tag { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--honey-deep); font-weight: 700; }
.svc-body h2 { margin-bottom: 0.6rem; }
.svc-body p { color: var(--ink-soft); }
.svc-body h4 { font-family: var(--ff-display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); margin: 1.3rem 0 0.6rem; }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1.4rem; }
.svc-list li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-size: 0.95rem; }
.svc-list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; background: var(--honey); border-radius: 2px; transform: rotate(45deg); }
@media (max-width: 720px) {
  .svc { grid-template-columns: 1fr; }
  .svc-meta { position: static; flex-direction: row; align-items: center; }
  .svc-list { grid-template-columns: 1fr; }
}

/* stats row */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: clamp(1rem, 3vw, 2rem); }
.stat .n { font-family: var(--ff-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--honey); line-height: 1; }
.stat .l { font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem; }
.section--dark .stat .l { color: #C9D8D4; }
