/* ==========================================================================
   MIRAI — Global stylesheet
   Palette: navy / ivory / sand / blush / restrained gold
   Type: Cormorant Garamond (display) + Instrument Sans (text)
   Signature device: the arch (from the MIRAI mark) used on image frames
   ========================================================================== */

:root {
  --navy: #1C2A47;
  --navy-deep: #141F36;
  --navy-soft: #2B3B5E;
  --ivory: #F8F4EE;
  --sand: #EDE3D6;
  --blush: #EFD8D1;
  --gold: #A88B5E;
  --gold-soft: #CDB78F;
  --ink: #1E2740;
  --muted: #5B6478;
  --line: #DDD3C5;
  --white: #FFFFFF;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-text: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 10vw, 128px);
  --radius: 2px;
  --arch: 999px 999px 0 0;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: var(--ivory); padding: 10px 16px; text-decoration: none;
}
.skip-link:focus { top: 16px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0 0 .5em;
  color: var(--navy);
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.75rem); line-height: 1.15; }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; max-width: 68ch; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 56ch; }
.label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}
.rule { width: 48px; height: 1px; background: var(--gold); border: 0; margin: 1.5rem 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; }
.section--ivory { background: var(--ivory); }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: #D9DEE8; }
.section--navy h2, .section--navy h3 { color: var(--ivory); }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 48px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 { margin: 0; }
.section-head p { margin: 1rem 0 0; }
.text-link {
  font-weight: 500; font-size: .95rem; color: var(--navy);
  text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  white-space: nowrap;
}
.text-link:hover { color: var(--gold); }
.section--navy .text-link { color: var(--ivory); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px;
  font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  text-decoration: none; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--navy); color: var(--ivory); }
.btn--primary:hover { background: var(--navy-soft); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn--outline:hover { background: var(--navy); color: var(--ivory); }
.btn--light { background: var(--ivory); color: var(--navy); }
.btn--light:hover { background: var(--white); }
.btn--outline-light { border-color: rgba(248,244,238,.5); color: var(--ivory); }
.btn--outline-light:hover { border-color: var(--ivory); background: rgba(248,244,238,.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand svg { width: 34px; height: 34px; }
.brand__word { font-family: var(--font-text); font-weight: 500; font-size: 1.35rem; letter-spacing: .14em; }

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; align-items: center; gap: 28px; }
.nav__link {
  display: inline-block; padding: 28px 0; font-size: .95rem; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid transparent;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--navy); border-bottom-color: var(--gold); }
.nav__item--mega { position: static; }
.nav__item--mega > .nav__link::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 8px; vertical-align: 3px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg);
}
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px -24px rgba(28,42,71,.25);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.nav__item--mega:hover .mega, .nav__item--mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega__inner { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; padding: 40px var(--gutter); }
.mega__intro h3 { font-size: 1.6rem; }
.mega__intro p { color: var(--muted); font-size: .95rem; }
.mega__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 24px; }
.mega__link { display: block; padding: 14px 0; text-decoration: none; border-top: 1px solid var(--line); }
.mega__link strong { display: block; font-weight: 500; color: var(--navy); }
.mega__link span { display: block; font-size: .85rem; color: var(--muted); line-height: 1.4; margin-top: 4px; }
.mega__link:hover strong { color: var(--gold); }

/* ---------- Hero (home) ---------- */
.hero { position: relative; background: var(--ivory); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 80px); align-items: end;
  padding-top: clamp(56px, 8vw, 104px);
}
.hero__copy { padding-bottom: clamp(56px, 8vw, 112px); }
.hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.25rem); line-height: 1.02; margin-bottom: .45em; }
.hero h1 span { display: block; }
.hero__arch {
  position: relative; align-self: stretch; min-height: 520px;
  border-radius: var(--arch); overflow: hidden;
  background: linear-gradient(180deg, #D9C7B4 0%, #B9A48D 45%, #2B3B5E 100%);
}
.hero__arch .media { position: absolute; inset: 0; }
.hero__tagline {
  position: absolute; left: 32px; bottom: 32px; right: 32px;
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1.3; color: var(--ivory);
  text-shadow: 0 1px 12px rgba(20,31,54,.35);
}

/* Media placeholder: background image with a composed fallback.
   Drop real photos into /images using the filenames referenced in the HTML. */
.media {
  background-color: var(--sand);
  background-size: cover; background-position: center;
}
.media--fallback-navy { background-color: var(--navy-soft); }
.media--hero { background-position: 38% center; }
.positioning { font-size: .8rem; letter-spacing: .02em; }
.positioning span { color: var(--line); margin: 0 .35em; }

/* ---------- Service strip ---------- */
.strip { background: var(--white); border-bottom: 1px solid var(--line); }
.strip__list { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip__item {
  display: flex; gap: 16px; align-items: flex-start; padding: 32px 28px;
  text-decoration: none; border-left: 1px solid var(--line);
}
.strip__item:first-child { border-left: 0; padding-left: 0; }
.strip__item svg { flex: none; width: 30px; height: 30px; color: var(--navy); }
.strip__item strong { display: block; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.strip__item span { font-size: .875rem; color: var(--muted); line-height: 1.5; }
.strip__item:hover strong { color: var(--gold); }

/* ---------- Split (about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 112px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--arch); overflow: hidden; }
.split__media .media { position: absolute; inset: 0; background-image: linear-gradient(160deg, #E7D9C8, #BFA88E); }
.quote-panel {
  position: absolute; left: 0; bottom: 0; max-width: 78%;
  background: rgba(248,244,238,.94); padding: 28px 32px;
  font-family: var(--font-display); font-size: 1.6rem; line-height: 1.2; color: var(--navy);
}

/* ---------- Service cards ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service {
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 32px 32px; text-decoration: none;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--white); transition: background .25s var(--ease);
}
.service svg { width: 32px; height: 32px; color: var(--gold); }
.service h3 { margin: 8px 0 0; }
.service p { font-size: .95rem; color: var(--muted); margin: 0; flex: 1; }
.service__more { font-size: .9rem; font-weight: 500; color: var(--navy); }
.service:hover { background: var(--ivory); }
.service:hover .service__more { color: var(--gold); }
.section--ivory .service { background: var(--ivory); }
.service--cta { background: var(--navy) !important; }
.service--cta h3 { color: var(--ivory); }
.service--cta p { color: #C8CFDC; }
.service--cta .service__more { color: var(--gold-soft); }
.service--cta:hover { background: var(--navy-soft) !important; }
.section--ivory .service:hover { background: var(--white); }

/* ---------- Structures (business setup) ---------- */
.structures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(248,244,238,.18); border: 1px solid rgba(248,244,238,.18); }
.structure { background: var(--navy); padding: 32px; text-decoration: none; color: #C8CFDC; }
.structure h3 { margin-bottom: .4em; }
.structure p { font-size: .95rem; margin: 0; }
.structure:hover { background: var(--navy-soft); }

/* ---------- Journey (true sequence: numbered) ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.journey__step {
  position: relative; padding: 28px 24px 32px 0; border-top: 1px solid var(--line);
  counter-increment: step;
}
.journey__step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--gold);
  margin-bottom: 16px;
}
.journey__step::after {
  content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--navy);
}
.journey__step h3 { font-size: 1.35rem; margin-bottom: .35em; }
.journey__step p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---------- Industries ---------- */
.industries { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry { text-decoration: none; }
.industry__img { aspect-ratio: 3 / 4; border-radius: var(--arch); overflow: hidden; position: relative; }
.industry__img .media { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.industry:hover .media { transform: scale(1.04); }
.industry h3 { font-size: 1.3rem; margin: 16px 0 0; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.value h3 { font-size: 1.6rem; padding-top: 20px; border-top: 1px solid var(--gold); }
.value p { font-size: .95rem; color: var(--muted); margin: 0; }
.section--navy .value p { color: #C8CFDC; }

/* ---------- Testimonials (empty until real reviews exist) ---------- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: 1.5rem; line-height: 1.35; color: var(--navy); }
.testimonial figcaption { margin-top: 16px; font-size: .9rem; color: var(--muted); }

/* ---------- Insights ---------- */
.insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.insight { display: flex; flex-direction: column; text-decoration: none; }
.insight__img { aspect-ratio: 16 / 10; position: relative; overflow: hidden; margin-bottom: 20px; }
.insight__img .media { position: absolute; inset: 0; }
.insight__cat { font-size: .85rem; font-weight: 500; color: var(--gold); margin-bottom: 8px; }
.insight h3 { font-size: 1.5rem; margin-bottom: .4em; }
.insight p { font-size: .95rem; color: var(--muted); margin: 0; }
.insight:hover h3 { color: var(--navy-soft); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; text-decoration-thickness: 1px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter {
  padding: 8px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; text-decoration: none; color: var(--ink);
}
.filter[aria-current="true"], .filter:hover { background: var(--navy); border-color: var(--navy); color: var(--ivory); }
.empty-note { padding: 40px; border: 1px dashed var(--line); color: var(--muted); text-align: center; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--navy); color: #C8CFDC; overflow: hidden; }
.cta-band::before {
  /* arch motif, echoing the logo */
  content: ""; position: absolute; right: -120px; top: 40px; width: 520px; height: 640px;
  border: 1px solid rgba(205,183,143,.25); border-radius: var(--arch);
}
.cta-band::after {
  content: ""; position: absolute; right: -40px; top: 120px; width: 360px; height: 560px;
  border: 1px solid rgba(205,183,143,.15); border-radius: var(--arch);
}
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding-block: clamp(72px, 9vw, 112px); }
.cta-band h2 { color: var(--ivory); margin-bottom: .35em; }
.cta-band p { margin: 0; }
.cta-band .btn-row { justify-content: flex-end; margin: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--ivory); border-bottom: 1px solid var(--line); }
.page-hero__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 6vw, 96px); align-items: end; padding-top: clamp(40px, 6vw, 72px); }
.page-hero__copy { padding-bottom: clamp(48px, 7vw, 88px); }
.page-hero__arch { position: relative; height: 100%; min-height: 360px; border-radius: var(--arch); overflow: hidden; }
.page-hero__arch .media { position: absolute; inset: 0; }
.page-hero--plain .page-hero__inner { grid-template-columns: 1fr; }
.page-hero--plain .page-hero__copy { padding-bottom: clamp(48px, 6vw, 72px); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .875rem; color: var(--muted); margin-bottom: 28px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }

/* ---------- Service page content ---------- */
.overview { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 7vw, 112px); }
.fit-list { border-top: 1px solid var(--line); }
.fit-list li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.fit-list strong { display: block; font-weight: 500; color: var(--navy); }
.fit-list span { font-size: .92rem; color: var(--muted); }

.groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.group { background: var(--white); padding: clamp(28px, 4vw, 44px); scroll-margin-top: 100px; }
.group__head { display: flex; gap: 16px; align-items: center; margin-bottom: 12px; }
.group__head svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.group__head h3 { margin: 0; }
.group > p { font-size: .95rem; color: var(--muted); }
.ticks li { position: relative; padding: 9px 0 9px 26px; border-top: 1px solid var(--line); font-size: .97rem; }
.ticks li:first-child { border-top: 0; }
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: 17px; width: 10px; height: 5px;
  border-left: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(-45deg);
}
.notice {
  margin-top: 32px; padding: 20px 24px; border-left: 2px solid var(--gold); background: var(--ivory);
  font-size: .92rem; color: var(--muted);
}
.notice p { margin: 0; max-width: none; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; counter-reset: step; }
.process__step { counter-increment: step; padding-top: 20px; border-top: 1px solid rgba(248,244,238,.25); }
.process__step::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); margin-bottom: 12px; }
.process__step h3 { font-size: 1.35rem; }
.process__step p { font-size: .93rem; color: #C8CFDC; margin: 0; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.related a { display: block; padding: 24px 24px 24px 0; text-decoration: none; border-bottom: 1px solid var(--line); }
.related strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--navy); }
.related span { font-size: .9rem; color: var(--muted); }
.related a:hover strong { color: var(--gold); }

/* ---------- Business setup: option cards + compare table ---------- */
.options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.option { background: var(--white); padding: 36px 32px; scroll-margin-top: 100px; }
.option h3 { margin-bottom: .35em; }
.option > p { font-size: .95rem; color: var(--muted); }
.option--primary { background: var(--ivory); }
.option .ticks li { font-size: .92rem; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .95rem; background: var(--white); }
.compare th, .compare td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; color: var(--navy); background: var(--ivory); }
.compare tbody th { font-weight: 500; color: var(--navy); width: 22%; }
.compare tbody tr:last-child > * { border-bottom: 0; }
.table-note { font-size: .85rem; color: var(--muted); margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); max-width: 880px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 48px 24px 0; position: relative;
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1.25; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 16px; height: 1px; background: var(--navy);
  transition: transform .25s var(--ease);
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq .faq__a { padding: 0 48px 24px 0; color: var(--muted); }
.faq-groups { display: grid; grid-template-columns: 1fr 2.4fr; gap: 48px; }
.faq-groups + .faq-groups { margin-top: 64px; }

/* ---------- Forms ---------- */
.enquiry { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 7vw, 112px); }
.contact-lines { border-top: 1px solid var(--line); margin-top: 32px; }
.contact-lines li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-lines span { display: block; font-size: .85rem; color: var(--muted); }
.contact-lines a { font-weight: 500; text-decoration: none; color: var(--navy); }
.contact-lines a:hover { color: var(--gold); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 500; color: var(--navy); }
.field label .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,42,71,.08); }
.field input:user-invalid, .field select:user-invalid { border-color: #A4413A; }
.form__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: space-between; }
.form__foot p { font-size: .85rem; color: var(--muted); margin: 0; max-width: 46ch; }
.form__foot a { color: var(--navy); }
.section--ivory .field input, .section--ivory .field select, .section--ivory .field textarea { background: var(--white); }

.map-slot { margin-top: 32px; aspect-ratio: 16 / 9; background: var(--sand); display: grid; place-items: center; color: var(--muted); font-size: .9rem; text-align: center; padding: 20px; }
.map-slot iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Prose (legal, article) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 2rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.45rem; margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose .placeholder { background: var(--blush); padding: 2px 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #AEB6C6; font-size: .93rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding: 80px 0 56px; }
.site-footer .brand { color: var(--ivory); }
.footer-about p { margin-top: 20px; max-width: 34ch; }
.footer-col h2 { font-family: var(--font-text); font-size: .95rem; font-weight: 500; color: var(--ivory); margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(248,244,238,.2); border-radius: 50%; }
.socials a:hover { border-color: var(--gold-soft); color: var(--ivory); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 24px 0 32px; border-top: 1px solid rgba(248,244,238,.12); font-size: .85rem; }
.footer-bottom ul { display: flex; gap: 24px; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--ivory); }
.footer-tagline { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-soft); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 20px 0 16px; border-radius: 999px;
  background: var(--navy); color: var(--ivory); text-decoration: none; font-size: .92rem; font-weight: 500;
  box-shadow: 0 10px 30px -10px rgba(20,31,54,.5);
}
.wa-float svg { width: 22px; height: 22px; }
.wa-float:hover { background: var(--navy-soft); }

/* ---------- Thank you ---------- */
.thanks { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.thanks .rule { margin: 1.5rem auto; }
.thanks p { margin-left: auto; margin-right: auto; }
.thanks .btn-row { justify-content: center; }

/* ---------- Page-load moment (hero only) ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes open-arch { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
.hero__copy > * { animation: rise .9s var(--ease) both; }
.hero__copy > :nth-child(2) { animation-delay: .08s; }
.hero__copy > :nth-child(3) { animation-delay: .16s; }
.hero__copy > :nth-child(4) { animation-delay: .24s; }
.hero__arch { animation: open-arch 1.3s var(--ease) both .1s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .nav__list { gap: 20px; }
  .mega__grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  /* Mobile navigation (CSS-only toggle) */
  .nav-burger {
    display: grid; place-items: center; width: 44px; height: 44px; cursor: pointer; position: relative; z-index: 2;
  }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after {
    content: ""; display: block; width: 22px; height: 1.5px; background: var(--navy); position: relative; transition: transform .25s var(--ease), background .2s;
  }
  .nav-burger span::before { position: absolute; top: -7px; }
  .nav-burger span::after { position: absolute; top: 7px; }
  .nav-toggle:checked ~ .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .nav-burger span::before { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span::after { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--gold); outline-offset: 2px; }

  .nav {
    position: fixed; inset: 80px 0 0 0; background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 40px; overflow-y: auto;
    visibility: hidden; opacity: 0; transition: opacity .2s var(--ease), visibility .2s;
  }
  .nav-toggle:checked ~ .nav { visibility: visible; opacity: 1; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link[aria-current="page"] { border-bottom-color: var(--line); color: var(--gold); }
  .nav__item--mega > .nav__link::after { display: none; }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; }
  .mega__inner { display: block; padding: 0 0 8px 16px; }
  .mega__intro { display: none; }
  .mega__grid { grid-template-columns: 1fr; gap: 0; }
  .mega__link { padding: 12px 0; }
  .mega__link span { display: none; }
  .nav .btn { margin-top: 24px; }

  .hero__inner, .page-hero__inner { grid-template-columns: 1fr; }
  .hero__copy { padding-bottom: 0; }
  .hero__arch { min-height: 380px; max-width: 520px; width: 100%; }
  .page-hero__copy { padding-bottom: 0; }
  .page-hero__arch { min-height: 260px; max-width: 420px; }
  .page-hero--plain .page-hero__copy { padding-bottom: 48px; }
  .strip__list { grid-template-columns: repeat(2, 1fr); }
  .strip__item { padding: 24px 20px 24px 0; border-left: 0; border-top: 1px solid var(--line); }
  .strip__item:nth-child(-n+2) { border-top: 0; }
  .split, .overview, .enquiry, .faq-groups { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .split__media { max-width: 460px; }
  .structures, .options { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .insights, .related { grid-template-columns: repeat(2, 1fr); }
  .groups { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band .btn-row { justify-content: flex-start; }
  .section-head { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .header-inner { min-height: 68px; }
  .nav { inset: 68px 0 0 0; }
  .strip__list, .structures, .options, .journey, .values, .insights, .related, .process, .form { grid-template-columns: 1fr; }
  .strip__item:nth-child(2) { border-top: 1px solid var(--line); }
  .industries { gap: 14px; }
  .industry h3 { font-size: 1.1rem; }
  .footer-top { grid-template-columns: 1fr; padding-top: 56px; }
  .btn-row .btn { flex: 1 1 100%; }
  .wa-float span { display: none; }
  .wa-float { padding: 0; width: 52px; justify-content: center; }
  .quote-panel { font-size: 1.3rem; padding: 20px; max-width: 90%; }
}

@media print {
  .site-header, .wa-float, .cta-band, .site-footer { display: none; }
}
