/* =====================================================================
   DAHLIA SOUNDS — brand landing + secondary pages
   Design system extracted from Figma "DS- Landingpage test"
   ===================================================================== */

/* ----- Fonts -------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* ----- Design tokens --------------------------------------------------*/
:root {
  /* Brand colour */
  --pink:          #f3e3e6;
  --ink:           #042d16;
  --ink-90:        rgba(4, 45, 22, 0.90);
  --ink-75:        rgba(4, 45, 22, 0.75);
  --ink-55:        rgba(4, 45, 22, 0.55);
  --ink-35:        rgba(4, 45, 22, 0.35);
  --body:          #4f4f4f;
  --muted:         #8a8a8a;
  --cream:         #f6f1ec;
  --cream-2:       #faf7f2;
  --footer:        #1f261a;

  --blue:          #0673ef;
  --blue-strong:   #006ae3;
  --blue-electric: #0066ff;

  /* Service colour families */
  --coral-a: #ff4058;
  --coral-b: #fe8766;
  --green-a: #23c765;
  --green-b: #1c6d3e;
  --blue-a:  #0e6ce4;
  --blue-b:  #1b356f;

  --grad-coral: linear-gradient(118deg, var(--coral-a) 12%, var(--coral-b) 82%);
  --grad-green: linear-gradient(150deg, var(--green-a) 0%, var(--green-b) 92%);
  --grad-blue:  linear-gradient(150deg, var(--blue-a) 0%, var(--blue-b) 92%);

  /* Film-grain texture — mirrors the Figma NOISE effect on gradient fills */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");

  /* Type */
  --font-display: 'Sora', 'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1232px;
  --pad: clamp(20px, 6.8vw, 84px);
  --nav-h: 96px;
}

/* ----- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--pink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--ink); line-height: 1.08; }

/* ----- Helpers --------------------------------------------------------*/
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.eyebrow--light { color: rgba(250, 247, 242, 0.85); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ----- Wordmark -----------------------------------------------------*/
.wordmark {
  font-family: var(--font-display);
  text-transform: uppercase;
  display: inline-flex;
  gap: 0.02em; /* DAHLIA + SOUNDS sit flush, matching Figma */
  line-height: 1;
  white-space: nowrap;
}
.wordmark b { font-weight: 700; letter-spacing: -0.02em; }
.wordmark span { font-weight: 300; letter-spacing: -0.06em; }

/* ----- Buttons -----------------------------------------------------*/
.btn {
  --btn-bg: var(--blue-electric);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 15px 28px;
  border: 0;
  border-radius: 0;
  background: var(--btn-bg);
  color: var(--cream-2);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(6, 102, 255, 0.65); }
.btn:active { transform: translateY(0); }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--blue);
}
.link-more svg { width: 10px; height: 10px; transition: transform 0.18s ease; }
.link-more:hover svg { transform: translateX(4px); }

/* ====================================================================
   NAV
   ===================================================================*/
.site-nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-nav .wordmark { font-size: 24px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 2px;
  opacity: 0.72;
  transition: opacity 0.22s linear, color 0.22s linear;
}
/* linear underline wipe */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s linear;
}
.nav-links a:hover,
.nav-links a:focus-visible { opacity: 1; }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; }

/* logo + (on mobile) the menu icon, grouped on the left */
.nav-left { display: flex; align-items: center; gap: 10px; }

/* groups links + language switch on the right side of the bar */
.nav-right { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); }

/* language switcher — small dropdown, ES/EN */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
  opacity: 0.82;
  cursor: pointer;
  transition: opacity 0.22s linear;
}
.lang-switch__btn svg { width: 8px; height: 8px; transition: transform 0.22s ease; }
.lang-switch__btn:hover,
.lang-switch__btn:focus-visible,
.lang-switch.is-open .lang-switch__btn { opacity: 1; }
.lang-switch.is-open .lang-switch__btn svg { transform: rotate(180deg); }
.lang-switch__menu {
  list-style: none;
  margin: 0;
  padding: 4px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: var(--footer);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 30;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s linear, transform 0.2s linear;
}
.lang-switch.is-open .lang-switch__menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-switch__menu a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.15s linear, background 0.15s linear;
}
.lang-switch__menu a:hover,
.lang-switch__menu a:focus-visible { opacity: 1; background: rgba(255, 255, 255, 0.08); }
.lang-switch__menu a[aria-current="true"] { opacity: 1; font-weight: 700; }

/* Nav themes */
.theme-light .site-nav,
.site-nav.is-light { color: var(--cream); }
.theme-light .nav-links a,
.site-nav.is-light .nav-links a { color: rgba(245, 240, 235, 0.9); }
.theme-light .nav-links a:hover,
.theme-light .nav-links a:focus-visible,
.theme-light .nav-links a[aria-current="page"],
.site-nav.is-light .nav-links a:hover,
.site-nav.is-light .nav-links a:focus-visible,
.site-nav.is-light .nav-links a[aria-current="page"] { color: var(--cream); }

.theme-dark .site-nav,
.site-nav.is-dark { color: var(--ink); }
.theme-dark .nav-links a,
.site-nav.is-dark .nav-links a { color: var(--ink-75); }
.theme-dark .nav-links a:hover,
.theme-dark .nav-links a:focus-visible,
.theme-dark .nav-links a[aria-current="page"],
.site-nav.is-dark .nav-links a:hover,
.site-nav.is-dark .nav-links a:focus-visible,
.site-nav.is-dark .nav-links a[aria-current="page"] { color: var(--ink); }

/* ====================================================================
   FOOTER
   ===================================================================*/
.site-footer {
  background: var(--footer);
  color: var(--cream);
  padding-block: 26px;
}
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  flex-wrap: wrap;
}
.site-footer .wordmark { font-size: 22px; color: var(--cream); }
.site-footer .foot-brand { display: flex; flex-direction: column; gap: 6px; }
.site-footer .foot-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fafafa;
}
.site-footer .foot-legal {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fafafa;
}

/* ====================================================================
   GLYPHS  (concentric "target" brand mark)
   ===================================================================*/
.glyph { color: var(--ink); flex: none; }
.glyph circle { fill: none; stroke: currentColor; }
.glyph .dot { fill: currentColor; stroke: none; }
.glyph--onlight { color: var(--ink-90); }
.glyph--onfill  { color: var(--cream); }

/* ====================================================================
   FILM GRAIN  — overlay on every gradient surface (Figma NOISE effect)
   ===================================================================*/
.svc-hero,
.callout,
.svc-card__panel,
.stand__panel { position: relative; isolation: isolate; }

.svc-hero > *,
.callout > *,
.svc-card__panel > *,
.stand__panel > * { position: relative; z-index: 1; }

.svc-hero::after,
.callout::after,
.svc-card__panel::after,
.stand__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 170px 170px;
  mix-blend-mode: overlay;
  opacity: 0.2;
}
.callout::after,
.svc-card__panel::after,
.stand__panel::after { border-radius: inherit; }

/* ====================================================================
   LANDING — HERO
   ===================================================================*/
.hero {
  position: relative;
  width: 100%;
  /* fixed above-the-fold band */
  height: 640px;
  max-height: 92svh;
  display: flex;
  align-items: stretch;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(-78deg, #cfbdbc 0%, #c8b1ae 100%);
}
.hero__media img {
  width: 100%;
  height: 100%;
  /* fill the band; whatever is cropped at each breakpoint is cropped
     symmetrically from the centre */
  object-fit: cover;
  object-position: center center;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 20, 0.30) 0%, rgba(20, 12, 20, 0.08) 42%, rgba(20, 12, 20, 0.46) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 40px) var(--pad) 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__brand { display: flex; flex-direction: column; gap: 14px; margin-block: auto; }
.hero__wordmark {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(34px, 8.4vw, 72px);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
}
.hero__wordmark b { font-weight: 700; letter-spacing: -0.02em; }
.hero__wordmark span { font-weight: 300; letter-spacing: -0.05em; }
.hero__kicker {
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.5vw, 18px);
  color: #fafafa;
}
.hero__tagline {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  padding-top: 14px;
  font-size: 18px;
  max-width: 760px;
  color: #fafafa;
}

/* ====================================================================
   LANDING — INTRO
   ===================================================================*/
.intro { padding-top: 128px; padding-bottom: 0; }
.intro + .services { padding-top: 64px; }
.intro__text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
}

/* ====================================================================
   LANDING — SERVICES
   ===================================================================*/
.services__head { margin-bottom: clamp(40px, 6vw, 72px); }
.services__head h2 {
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-90);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.svc-card__panel {
  aspect-ratio: 325 / 460;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}
.svc-card__panel .glyph { width: 42%; height: auto; }
.svc-card--coral .svc-card__panel { background: var(--grad-coral); }
.svc-card--green .svc-card__panel { background: var(--grad-green); }
.svc-card--blue  .svc-card__panel { background: var(--grad-blue); }
.svc-card__body { padding-top: 30px; }
.svc-card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-90);
}
.svc-card__label {
  margin-top: 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--muted);
}
.svc-card__desc { margin-top: 10px; font-weight: 500; font-size: 16px; color: var(--body); }
.svc-card .link-more { margin-top: 22px; }

/* ====================================================================
   CLICKABLE CARDS — Our Services + About "What we stand for"
   Whole card links to its secondary page; shared hover treatment.
   ===================================================================*/
.svc-card,
.stand { position: relative; }

/* stretched-link: the whole card is the click target */
.svc-card__link::after,
.stand__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.stand .link-more { margin-top: 18px; }

.svc-card__panel,
.stand__panel {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s ease,
    filter 0.45s ease;
}
.svc-card__panel::after,
.stand__panel::after { transition: opacity 0.45s ease; }
.svc-card__panel .glyph,
.stand__panel .glyph { transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.svc-card__body h3,
.stand__value,
.link-more svg { transition: color 0.25s ease, transform 0.25s ease; }

.svc-card:hover .svc-card__panel,
.svc-card:focus-within .svc-card__panel,
.stand:hover .stand__panel,
.stand:focus-within .stand__panel {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px -22px rgba(4, 45, 22, 0.45);
  filter: saturate(1.08) brightness(1.04);
}
.svc-card:hover .svc-card__panel::after,
.svc-card:focus-within .svc-card__panel::after,
.stand:hover .stand__panel::after,
.stand:focus-within .stand__panel::after { opacity: 0.32; }
.svc-card:hover .svc-card__panel .glyph,
.svc-card:focus-within .svc-card__panel .glyph,
.stand:hover .stand__panel .glyph,
.stand:focus-within .stand__panel .glyph { transform: scale(1.09); }
.svc-card:hover .svc-card__body h3,
.svc-card:focus-within .svc-card__body h3,
.stand:hover .stand__value,
.stand:focus-within .stand__value { color: var(--blue-strong); }
.svc-card:hover .link-more svg,
.svc-card:focus-within .link-more svg,
.stand:hover .link-more svg,
.stand:focus-within .link-more svg { transform: translateX(4px); }

/* ====================================================================
   LANDING — MANIFESTO band (image / video still)
   ===================================================================*/
.manifesto {
  position: relative;
  display: flex;
  /* text sits low, over the calm dark area of the shot — not centered
     in the band — per the brand-concept reference */
  align-items: flex-end;
  min-height: clamp(560px, 64vw, 820px);
  color: var(--cream-2);
  overflow: hidden;
  isolation: isolate;
}
.manifesto__media { position: absolute; inset: 0; z-index: -2; }
.manifesto__media img,
.manifesto__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.manifesto::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10, 8, 12, 0.58) 0%, rgba(10, 8, 12, 0.34) 45%, rgba(10, 8, 12, 0.6) 100%);
}
.manifesto .container {
  width: 100%;
  padding-bottom: clamp(64px, 11vw, 120px);
  display: flex;
  justify-content: flex-end;
}
.manifesto__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  align-items: flex-start;
  max-width: min(620px, 58%);
}
.manifesto__list p {
  font-size: 18px;
  line-height: 1.5;
}
.manifesto__list b { font-weight: 700; font-size: 1.12em; }

@media (max-width: 760px) {
  .manifesto .container { justify-content: center; padding-bottom: clamp(48px, 15vw, 88px); }
  .manifesto__list { align-items: center; text-align: center; max-width: 100%; }
}

/* ====================================================================
   LANDING — quick contact
   ===================================================================*/
.quick-contact h2 {
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--blue-strong);
  margin-bottom: 16px;
}
.quick-contact__desc {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  margin-bottom: 48px;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 44px;
}
.field-grid--single { grid-template-columns: 1fr; }

/* ====================================================================
   FORM FIELDS  (underline style from Figma)
   ===================================================================*/
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--blue);
}
.field input,
.field select,
.field textarea {
  border: 0;
  border-bottom: 1px solid var(--ink-35);
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.18s ease;
}
.field textarea { resize: vertical; min-height: 60px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(79, 79, 79, 0.45); }
.field select:invalid { color: rgba(79, 79, 79, 0.45); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--blue-electric); }
.form-actions { margin-top: 40px; }
.field-status { margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--body); min-height: 1.2em; }
.field-status.is-error { color: var(--coral-a); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ====================================================================
   SERVICE PAGES — hero
   ===================================================================*/
.svc-hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  /* every secondary-page hero keeps the same height regardless of glyph */
  min-height: clamp(520px, 54vw, 660px);
}
.svc-hero--coral { background: linear-gradient(34deg, var(--coral-a) 18%, var(--coral-b) 74%); }
.svc-hero--green { background: linear-gradient(200deg, var(--green-a) 6%, var(--green-b) 82%); }
.svc-hero--blue  { background: linear-gradient(210deg, var(--blue-a) 4%, var(--blue-b) 82%); }
.svc-hero .container {
  width: 100%;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: clamp(48px, 8vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}
.svc-hero__text { max-width: 720px; }
.svc-hero__eyebrow {
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--cream-2);
}
.svc-hero h1 {
  margin-top: 18px;
  font-weight: 600;
  font-size: clamp(46px, 8vw, 76px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.svc-hero__lead {
  margin-top: 26px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: var(--cream-2);
}
.svc-hero__glyph {
  width: clamp(120px, 16vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* tall stacked glyph (Booking) is capped so it never grows the hero */
.svc-hero__glyph .glyph {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(240px, 34vw, 380px);
}

/* Service page body sections */
.prose-h {
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 34px);
  letter-spacing: -0.02em;
  color: var(--ink-90);
}
.lead {
  margin-top: 22px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  max-width: 1064px;
}
.feature-grid {
  margin-top: clamp(48px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 52px);
}
.feature .glyph { width: 60px; height: 60px; }
.feature h3 {
  margin-top: 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink-90);
}
.feature p { margin-top: 10px; font-weight: 500; font-size: 15px; line-height: 1.6; color: var(--body); }

.steps { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 40px; }
.step { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 32px; align-items: start; }
.step__badge { position: relative; width: 96px; height: 96px; display: grid; align-items: start; justify-items: center; }
.step__badge span {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  color: var(--ink);
}
.step__body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-90);
}
.step__body p { margin-top: 8px; font-weight: 500; font-size: 15px; line-height: 1.6; color: var(--body); }

.callout {
  margin-top: clamp(56px, 8vw, 96px);
  border-radius: 4px;
  padding: clamp(40px, 5vw, 56px);
  color: var(--cream);
}
.callout--coral { background: linear-gradient(20deg, var(--coral-a) 18%, var(--coral-b) 76%); }
.callout--green { background: var(--grad-green); }
.callout--blue  { background: var(--grad-blue); }
.callout h2 {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 28px);
  letter-spacing: -0.02em;
  color: var(--cream);
}
.callout ul {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 40px;
}
.callout ul.one-col { grid-template-columns: 1fr; }
.callout li { display: grid; grid-template-columns: 28px 1fr; font-weight: 500; color: var(--cream-2); }
.callout li::before { content: "→"; font-weight: 700; color: var(--cream); }

/* ====================================================================
   ABOUT
   ===================================================================*/
.about-hero .container { padding-top: calc(var(--nav-h) + 60px); }
.about-hero h1 {
  margin-top: 22px;
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--blue-electric);
  max-width: 12ch;
}
.about-hero__sub {
  margin-top: 26px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.about-copy { margin-top: clamp(48px, 7vw, 90px); margin-bottom: clamp(40px, 8vw, 72px); display: grid; gap: 26px; max-width: 900px; }
.about-copy p:first-child { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--body); }
.about-copy p + p { font-size: 15px; line-height: 1.7; color: var(--body); }

.stand-grid {
  margin-top: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.stand__panel {
  aspect-ratio: 325 / 343;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
}
.stand__panel .glyph { width: 38%; height: auto; }
.stand--coral .stand__panel { background: var(--grad-coral); }
.stand--green .stand__panel { background: var(--grad-green); }
.stand--blue  .stand__panel { background: var(--grad-blue); }
.stand__label {
  margin-top: 24px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.stand__value { margin-top: 6px; font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); }
.stand__desc { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--body); }
/* hover treatment is shared with .svc-card — see "CLICKABLE CARDS" block */

.desks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1100px; }
.desk h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-90);
}
.desk p { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--body); max-width: 490px; }

.rule { height: 1px; background: var(--ink-35); border: 0; margin-block: clamp(40px, 6vw, 64px); }
.closing-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.closing-line a {
  color: var(--blue-electric);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.18s ease;
}
.closing-line a:hover { opacity: 0.75; }

/* ====================================================================
   CONTACT
   ===================================================================*/
.contact-hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: clamp(64px, 9vw, 120px); }
.contact-hero h1 {
  margin-top: 18px;
  font-weight: 600;
  font-size: clamp(42px, 8.5vw, 64px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--blue-strong);
}
.contact-hero__sub { margin-top: 20px; font-size: clamp(16px, 2vw, 18px); line-height: 1.55; color: var(--body); max-width: 640px; }
.contact-form { margin-top: clamp(48px, 7vw, 80px); }
.contact-details {
  margin-top: clamp(48px, 7vw, 72px);
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--ink-90);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.contact-details dt {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-details dd { margin: 0; }
.contact-details .cd-strong { margin-top: 12px; font-weight: 700; font-size: 16px; color: var(--ink-90); }
.contact-details .cd-note { margin-top: 6px; font-weight: 500; font-size: 14px; color: var(--body); }

/* ====================================================================
   THANKS
   ===================================================================*/
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.thanks h1 { font-size: clamp(36px, 6vw, 60px); letter-spacing: -0.02em; text-transform: uppercase; color: var(--blue-strong); }
.thanks p { margin-top: 18px; font-size: 18px; color: var(--body); }
.thanks .btn { margin-top: 32px; }

/* ====================================================================
   RESPONSIVE
   ===================================================================*/
@media (max-width: 900px) {
  .svc-grid,
  .feature-grid,
  .stand-grid,
  .contact-details { grid-template-columns: 1fr; }

  /* single-column cards: fixed comfortable height (not a tall aspect ratio
     that balloons on wide tablets); glyph clamped so the stacked "Booking"
     mark can never spill past the gradient */
  .svc-card__panel,
  .stand__panel {
    aspect-ratio: auto;
    height: clamp(300px, 72vw, 440px);
    overflow: hidden;
  }
  .svc-card__panel .glyph,
  .stand__panel .glyph {
    width: auto;
    height: auto;
    max-width: 44%;
    max-height: 60%;
  }

  .svc-hero .container { grid-template-columns: 1fr; }
  .svc-hero__glyph { order: -1; width: 120px; }
  .callout ul { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  :root { --nav-h: 76px; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 18px; height: 2px;
    background: currentColor;
    position: relative;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px var(--pad) 24px;
    background: var(--footer);
    color: var(--cream);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .nav-links a { color: var(--cream) !important; width: 100%; padding: 12px 0; font-size: 15px; opacity: 0.9; }
  .nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] { opacity: 1; }
  .nav-links a::after { width: 24px; right: auto; }
  .site-nav.is-open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .field-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 64px 1fr; gap: 20px; }
  .step__badge { width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
