:root {
  --charcoal-950: #171b1c;
  --charcoal-900: #202526;
  --charcoal-850: #282d2e;
  --charcoal-800: #303536;
  --charcoal-700: #3b4142;
  --teal-700: #316466;
  --teal-600: #3f7779;
  --teal-500: #4c8989;
  --teal-300: #8eb5b4;
  --paper: #f5f4ef;
  --paper-2: #ebeae3;
  --white: #ffffff;
  --ink: #202526;
  --muted: #687171;
  --line: rgba(32, 37, 38, 0.16);
  --surface: #ffffff;
  --surface-alt: #eeede7;
  --header: rgba(245, 244, 239, 0.82);
  --hero-grid: rgba(32, 37, 38, 0.08);
  --shadow: 0 28px 80px rgba(20, 28, 29, 0.12);
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html[data-theme="dark"] {
  --paper: #171b1c;
  --paper-2: #202526;
  --ink: #f4f3ed;
  --muted: #aeb7b6;
  --line: rgba(255, 255, 255, 0.12);
  --surface: #202526;
  --surface-alt: #282d2e;
  --header: rgba(23, 27, 28, 0.82);
  --hero-grid: rgba(255, 255, 255, 0.055);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .4s ease, color .4s ease;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--teal-600); color: white; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; position: relative; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 9999; background: var(--teal-600); color: white; padding: 10px 14px; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

/* Welcome animation */
.welcome-screen { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; background: var(--charcoal-950); color: white; overflow: hidden; transition: opacity .7s ease, visibility .7s ease; }
.welcome-screen.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.welcome-noise { position: absolute; inset: 0; opacity: .13; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"); }
.welcome-screen::before, .welcome-screen::after { content: ""; position: absolute; width: 46vw; height: 46vw; border: 1px solid rgba(76, 137, 137, .18); border-radius: 50%; }
.welcome-screen::before { left: -16vw; top: -24vw; }
.welcome-screen::after { right: -18vw; bottom: -26vw; }
.welcome-inner { position: relative; text-align: center; padding: 24px; z-index: 2; }
.welcome-mark { position: relative; width: 124px; height: 124px; margin: 0 auto 26px; display: grid; place-items: center; opacity: 0; transform: scale(.72) rotate(-6deg); animation: welcomeLogo 1s var(--ease) .15s forwards; }
.welcome-mark img { width: 92px; height: 92px; object-fit: contain; background: white; border-radius: 50%; padding: 9px; position: relative; z-index: 2; box-shadow: 0 14px 40px rgba(0,0,0,.28); }
.orbit { position: absolute; inset: 0; border: 1px solid rgba(142,181,180,.5); border-radius: 50%; }
.orbit-a { animation: spin 8s linear infinite; border-top-color: transparent; }
.orbit-b { inset: 12px; border-color: rgba(255,255,255,.2); border-bottom-color: var(--teal-500); animation: spinReverse 6s linear infinite; }
.welcome-eyebrow { margin: 0 0 4px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--teal-300); opacity: 0; animation: welcomeUp .7s var(--ease) .65s forwards; }
.welcome-inner h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(40px, 7vw, 78px); line-height: 1; letter-spacing: -.04em; opacity: 0; animation: welcomeUp .8s var(--ease) .75s forwards; }
.welcome-inner h1 span { color: var(--teal-300); font-weight: 600; }
.welcome-rule { width: min(420px, 75vw); height: 1px; margin: 28px auto 22px; background: rgba(255,255,255,.12); overflow: hidden; }
.welcome-rule span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--teal-300), transparent); transform: translateX(-100%); animation: drawLine 1.4s var(--ease) 1.05s forwards; }
.welcome-copy { color: rgba(255,255,255,.65); font-size: 14px; letter-spacing: .04em; opacity: 0; animation: welcomeUp .7s var(--ease) 1.15s forwards; }
.welcome-skip { margin-top: 28px; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); background: transparent; color: white; padding: 8px 0; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; opacity: 0; animation: welcomeUp .7s var(--ease) 1.4s forwards; }
.welcome-skip:hover { color: var(--teal-300); border-color: var(--teal-300); }
@keyframes welcomeLogo { to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes welcomeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drawLine { to { transform: translateX(100%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; border-bottom: 1px solid transparent; transition: background .35s ease, border-color .35s ease, transform .35s ease; }
.site-header.scrolled { background: var(--header); backdrop-filter: blur(18px); border-color: var(--line); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 45px; height: 45px; padding: 5px; background: white; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-family: "Playfair Display", Georgia, serif; font-size: 19px; letter-spacing: -.02em; }
.brand-copy small { color: var(--teal-500); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .25em; margin-top: 5px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; font-size: 13px; font-weight: 600; color: var(--muted); transition: color .25s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; background: var(--teal-500); transition: right .3s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; background: transparent; padding: 9px 12px; cursor: pointer; font-size: 12px; transition: border .25s, background .25s; }
.theme-toggle:hover { background: var(--surface); border-color: var(--teal-500); }
.theme-icon { font-size: 16px; line-height: 1; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 54px; padding: 0 24px; border-radius: 4px; border: 1px solid transparent; font-size: 13px; font-weight: 700; letter-spacing: .02em; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s, background .25s, color .25s, border-color .25s; }
.button:hover { transform: translateY(-3px); }
.button-solid { background: var(--teal-600); color: white; box-shadow: 0 15px 34px rgba(49,100,102,.23); }
.button-solid:hover { background: var(--teal-500); box-shadow: 0 18px 38px rgba(49,100,102,.35); }
.button-outline { border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--teal-500); color: var(--teal-500); }
.button-small { min-height: 43px; padding: 0 17px; font-size: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 1px; background: var(--ink); transition: .3s; }
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 86px 0 auto; background: var(--paper); border-bottom: 1px solid var(--line); padding: 26px 24px 32px; transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .4s var(--ease); }
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: "Playfair Display", Georgia, serif; font-size: 26px; }

/* Hero */
.hero { min-height: 100vh; padding-top: 86px; position: relative; overflow: hidden; background-image: linear-gradient(var(--hero-grid) 1px, transparent 1px), linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px); background-size: 72px 72px; }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; right: -230px; top: -190px; border-radius: 50%; background: radial-gradient(circle, rgba(63,119,121,.18), transparent 68%); pointer-events: none; }
.hero-grid { min-height: calc(100vh - 134px); display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(56px, 8vw, 110px); padding-top: 58px; padding-bottom: 60px; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--teal-500); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.hero-copy h1 { margin: 24px 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(50px, 6.4vw, 86px); line-height: .98; letter-spacing: -.055em; max-width: 760px; }
.hero-copy h1 em { display: block; color: var(--teal-500); font-weight: 600; }
.hero-lead { max-width: 635px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.text-link { font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--line); padding: 10px 0; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform .25s; }
.text-link:hover span { transform: translateY(4px); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px; margin-top: 54px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-proof div { padding-right: 18px; }
.hero-proof div + div { border-left: 1px solid var(--line); padding-left: 20px; }
.hero-proof strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 20px; }
.hero-proof span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; margin-top: 4px; }

.hero-visual { position: relative; min-height: 610px; display: grid; place-items: center; }
.visual-frame { width: min(100%, 510px); min-height: 570px; background: var(--surface); border: 1px solid var(--line); border-radius: 160px 18px 18px 18px; padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.visual-frame::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(76,137,137,.1), transparent 48%); pointer-events: none; }
.visual-topline, .visual-footer { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; }
.visual-topline { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.status-pill { border: 1px solid var(--line); padding: 7px 10px; border-radius: 999px; display: flex; align-items: center; gap: 7px; }
.status-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(76,137,137,.12); }
.compass-wrap { position: relative; width: 390px; height: 390px; max-width: 100%; margin: 44px auto 22px; display: grid; place-items: center; }
.compass-ring { position: absolute; border-radius: 50%; border: 1px solid var(--line); }
.ring-one { inset: 14px; border-style: dashed; animation: spin 32s linear infinite; }
.ring-two { inset: 62px; border-color: rgba(76,137,137,.42); animation: spinReverse 22s linear infinite; }
.compass-axis { position: absolute; background: var(--line); }
.axis-x { width: 100%; height: 1px; }
.axis-y { width: 1px; height: 100%; }
.compass-core { width: 178px; height: 178px; border-radius: 50%; background: white; padding: 22px; box-shadow: 0 20px 48px rgba(0,0,0,.18); position: relative; z-index: 2; }
.compass-core::after { content: ""; position: absolute; inset: -11px; border-radius: inherit; border: 1px solid var(--teal-500); opacity: .6; }
.compass-core img { width: 100%; height: 100%; object-fit: contain; }
.float-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.12); padding: 9px 12px; border-radius: 3px; animation: float 5s ease-in-out infinite; }
.float-note b { color: var(--teal-500); font-size: 10px; }
.float-note span { font-size: 11px; font-weight: 700; }
.note-one { left: 0; top: 63px; }
.note-two { right: -8px; top: 196px; animation-delay: -1.5s; }
.note-three { left: 36px; bottom: 34px; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-8px); } }
.visual-footer { display: block; }
.visual-footer p { display: flex; justify-content: space-between; margin: 0 0 10px; font-size: 11px; color: var(--muted); }
.visual-footer strong { color: var(--ink); }
.progress-track { height: 7px; border-radius: 10px; background: var(--surface-alt); overflow: hidden; }
.progress-track span { display: block; height: 100%; width: 88%; background: linear-gradient(90deg, var(--teal-700), var(--teal-300)); border-radius: inherit; animation: progressIn 1.5s var(--ease) 2.2s both; transform-origin: left; }
@keyframes progressIn { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.side-stamp { position: absolute; right: -12px; bottom: 18px; width: 122px; height: 122px; border-radius: 50%; background: var(--teal-600); color: white; display: grid; place-items: center; align-content: center; box-shadow: 0 18px 46px rgba(49,100,102,.35); border: 7px solid var(--paper); transform: rotate(8deg); }
.side-stamp span { font-family: "Playfair Display", Georgia, serif; font-size: 29px; line-height: 1; }
.side-stamp small { font-size: 8px; line-height: 1.3; text-align: center; text-transform: uppercase; letter-spacing: .12em; margin-top: 7px; }
.hero-marquee { height: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; background: var(--paper); }
.marquee-track { flex: none; display: flex; align-items: center; gap: 24px; min-width: max-content; animation: marquee 32s linear infinite; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; }
.marquee-track i { color: var(--teal-500); font-size: 7px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.trust-strip { border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 102px; display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); align-items: center; }
.trust-grid > * { padding: 0 18px; }
.trust-grid > * + * { border-left: 1px solid var(--line); }
.trust-grid p { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; padding-left: 0; }
.trust-grid div { display: flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 700; }
.trust-grid span { color: var(--teal-500); font-size: 9px; }

/* Shared headings */
.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-kicker { display: block; color: var(--teal-500); text-transform: uppercase; letter-spacing: .2em; font-size: 10px; font-weight: 700; margin-bottom: 16px; }
.section-heading h2, .process-intro h2, .about-copy h2, .testimonial-sidebar h2, .contact-copy h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(40px, 5vw, 64px); line-height: 1.04; letter-spacing: -.045em; margin: 0; }
.section-heading p { color: var(--muted); font-size: 15px; margin: 0; }

/* Services */
.services { background: var(--paper-2); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 390px; padding: 32px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: transform .35s var(--ease), box-shadow .35s, background .35s; overflow: hidden; }
.service-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--teal-500); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-8px); z-index: 2; box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured { background: var(--charcoal-900); color: white; }
.service-card.featured p, .service-card.featured li { color: rgba(255,255,255,.66); }
.service-number { color: var(--teal-500); font-size: 10px; letter-spacing: .16em; }
.service-icon { width: 46px; height: 46px; margin: 34px 0 28px; }
.service-icon svg { width: 100%; height: 100%; fill: none; stroke: var(--teal-500); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 25px; margin: 0 0 14px; }
.service-card p { color: var(--muted); font-size: 13px; margin: 0 0 18px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 22px; color: var(--muted); font-size: 11px; }
.service-card li { margin: 5px 0; }
.service-card li::before { content: "—"; color: var(--teal-500); margin-right: 7px; }
.service-card > a { position: absolute; left: 32px; bottom: 28px; font-size: 11px; font-weight: 700; color: var(--teal-500); }
.service-card > a span { margin-left: 8px; }

/* Process */
.process { background: var(--charcoal-900); color: white; overflow: hidden; }
.process::before { content: "SP"; position: absolute; right: -20px; top: 10px; font-family: "Playfair Display", Georgia, serif; font-size: 300px; line-height: 1; color: rgba(255,255,255,.025); }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro p { color: rgba(255,255,255,.64); margin: 26px 0 32px; max-width: 500px; }
.process-intro .button-outline { color: white; border-color: rgba(255,255,255,.2); }
.process-steps { border-top: 1px solid rgba(255,255,255,.14); }
.process-step { display: grid; grid-template-columns: 58px 1fr 42px; gap: 24px; align-items: start; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.step-index { color: var(--teal-300); font-size: 10px; }
.process-step h3 { font-family: "Playfair Display", Georgia, serif; font-size: 28px; margin: 0 0 7px; }
.process-step p { color: rgba(255,255,255,.6); font-size: 13px; margin: 0; max-width: 470px; }
.step-arrow { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: grid; place-items: center; color: var(--teal-300); }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }
.about-visual { min-height: 610px; position: relative; background: var(--surface-alt); border-radius: 180px 16px 16px 16px; display: grid; place-items: center; overflow: hidden; }
.about-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--hero-grid) 1px, transparent 1px), linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px); background-size: 48px 48px; }
.about-image-card { width: 72%; min-height: 360px; background: var(--charcoal-900); color: white; padding: 48px; position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); }
.quote-mark { position: absolute; top: 10px; left: 28px; color: var(--teal-500); font-family: Georgia, serif; font-size: 110px; line-height: 1; }
.about-image-card p { font-family: "Playfair Display", Georgia, serif; font-size: 29px; line-height: 1.25; margin: 0 0 20px; }
.about-image-card span { color: rgba(255,255,255,.55); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.about-badge { position: absolute; z-index: 3; right: 28px; bottom: 34px; width: 150px; height: 150px; border-radius: 50%; background: var(--teal-600); color: white; display: grid; place-items: center; align-content: center; border: 8px solid var(--paper); }
.about-badge strong { font-family: "Playfair Display", Georgia, serif; font-size: 36px; line-height: 1; }
.about-badge small { font-size: 8px; text-transform: uppercase; letter-spacing: .13em; margin-top: 8px; }
.about-copy > p { color: var(--muted); font-size: 16px; margin: 26px 0 34px; }
.about-points { border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.about-points span { color: var(--teal-500); font-size: 10px; }
.about-points p { color: var(--muted); margin: 0; font-size: 13px; }
.about-points strong { color: var(--ink); display: block; margin-bottom: 4px; font-size: 14px; }

/* Metrics */
.metrics { padding: 0; background: var(--teal-700); color: white; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { min-height: 190px; padding: 38px 30px; display: flex; flex-direction: column; justify-content: space-between; border-left: 1px solid rgba(255,255,255,.15); }
.metric:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.metric strong { font-family: "Playfair Display", Georgia, serif; font-size: 46px; line-height: 1; }
.metric p { margin: 0; color: rgba(255,255,255,.7); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; max-width: 170px; }

/* Testimonials */
.testimonials { background: var(--paper-2); }
.testimonial-shell { display: grid; grid-template-columns: .72fr 1.28fr; border: 1px solid var(--line); min-height: 480px; background: var(--surface); }
.testimonial-sidebar { padding: 54px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.testimonial-sidebar h2 { font-size: clamp(38px, 4vw, 54px); }
.slider-controls { margin-top: auto; display: flex; gap: 10px; }
.slider-controls button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; transition: .25s; }
.slider-controls button:hover { background: var(--teal-600); color: white; border-color: var(--teal-600); }
.testimonial-stage { position: relative; overflow: hidden; }
.testimonial { position: absolute; inset: 0; padding: 58px 68px; opacity: 0; transform: translateX(35px); transition: opacity .5s ease, transform .6s var(--ease); pointer-events: none; display: flex; flex-direction: column; }
.testimonial.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.testimonial-no { color: var(--teal-500); font-size: 10px; letter-spacing: .14em; }
.testimonial blockquote { font-family: "Playfair Display", Georgia, serif; font-size: clamp(26px, 3.1vw, 39px); line-height: 1.32; letter-spacing: -.02em; margin: 48px 0 36px; }
.testimonial-person { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.testimonial-person > span { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-600); color: white; display: grid; place-items: center; font-size: 10px; }
.testimonial-person p { margin: 0; display: flex; flex-direction: column; }
.testimonial-person strong { font-size: 12px; }
.testimonial-person small { color: var(--muted); font-size: 10px; margin-top: 3px; }

/* Contact */
.contact { background: var(--charcoal-900); color: white; }
.contact-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy p { color: rgba(255,255,255,.63); max-width: 470px; margin: 26px 0 40px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; max-width: 470px; }
.contact-link { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; min-height: 68px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); color: white; transition: transform .25s var(--ease), border-color .25s, background .25s; }
.contact-link:hover { transform: translateX(5px); border-color: rgba(92,174,171,.65); background: rgba(92,174,171,.1); }
.contact-link-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(92,174,171,.14); color: var(--teal-300); }
.contact-link-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-link-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; text-transform: none; letter-spacing: 0; }
.contact-link-copy small { color: rgba(255,255,255,.46); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.contact-link-copy strong { color: var(--teal-300); font-size: 13px; font-weight: 600; overflow-wrap: anywhere; }
.contact-link-arrow { color: rgba(255,255,255,.45); font-size: 15px; text-transform: none; letter-spacing: 0; transition: color .25s, transform .25s; }
.contact-link:hover .contact-link-arrow { color: var(--teal-300); transform: translate(2px,-2px); }
.contact-assurance { margin-top: 3px; color: rgba(255,255,255,.42); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.contact-form { background: white; color: var(--charcoal-900); padding: 38px; border-radius: 4px; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 18px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 8px; border: 1px solid #d8dbd8; background: #f8f8f5; color: #202526; padding: 13px 14px; border-radius: 2px; outline: none; text-transform: none; letter-spacing: 0; font-size: 13px; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(76,137,137,.12); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .invalid { border-color: #a83d3d; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 4px; }
.consent { display: flex !important; align-items: center; gap: 8px; margin: 0 !important; font-size: 9px !important; color: #596160; text-transform: none !important; letter-spacing: 0 !important; font-weight: 500 !important; }
.consent input { width: 15px; height: 15px; margin: 0; accent-color: var(--teal-600); }
.form-note { margin: 18px 0 0; color: #7a8382; font-size: 9px; }

/* Footer */
.site-footer { background: var(--charcoal-950); color: white; }
.footer-top { min-height: 190px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.11); }
.footer-brand .brand-mark { width: 56px; height: 56px; }
.footer-brand .brand-copy strong { font-size: 22px; }
.footer-top > p { color: rgba(255,255,255,.52); font-size: 12px; max-width: 460px; }
.footer-up { width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; display: grid; place-items: center; transition: .25s; }
.footer-up:hover { background: var(--teal-600); border-color: var(--teal-600); transform: translateY(-4px); }
.footer-bottom { min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: rgba(255,255,255,.4); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom > span:last-child { text-align: right; }
.footer-bottom a:hover { color: var(--teal-300); }
.footer-socials { display: inline-flex; align-items: center; gap: 9px; }
.social-icon { width: 30px; height: 30px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: rgba(255,255,255,.72); transition: .25s; }
.social-icon svg { width: 15px; height: 15px; fill: currentColor; }
.social-icon:hover { color: white; background: var(--teal-600); border-color: var(--teal-600); transform: translateY(-2px); }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 1500; max-width: 370px; background: white; color: #202526; border-left: 4px solid var(--teal-600); box-shadow: 0 20px 60px rgba(0,0,0,.25); padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; transform: translateY(130%); opacity: 0; transition: .45s var(--ease); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast > span { color: var(--teal-600); font-weight: 700; }
.toast p { margin: 0; display: flex; flex-direction: column; }
.toast strong { font-size: 12px; }
.toast small { color: #6c7473; font-size: 10px; margin-top: 3px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 105px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 580px; }
  .visual-frame { width: min(100%, 620px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout, .about-grid, .contact-shell { gap: 60px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .trust-grid p { grid-column: 1 / -1; padding: 0 18px 12px 0; }
  .trust-grid > * + * { border-left: 0; }
  .trust-grid div { border-top: 1px solid var(--line); padding-block: 16px; }
}

@media (max-width: 820px) {
  .section { padding: 88px 0; }
  .container { width: min(100% - 30px, 1180px); }
  .theme-label, .nav-actions .button-small { display: none; }
  .nav-wrap { height: 74px; }
  .mobile-menu { top: 74px; }
  .brand-copy strong { font-size: 17px; }
  .hero { padding-top: 74px; }
  .hero-grid { min-height: auto; padding-top: 78px; }
  .hero-copy h1 { font-size: clamp(46px, 12vw, 70px); }
  .hero-actions { flex-wrap: wrap; }
  .hero-proof { grid-template-columns: 1fr; gap: 16px; }
  .hero-proof div + div { border-left: 0; padding-left: 0; }
  .hero-proof div { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .hero-visual { min-height: 510px; }
  .visual-frame { min-height: 500px; border-radius: 110px 16px 16px; padding: 22px; }
  .compass-wrap { width: 330px; height: 330px; margin-top: 35px; }
  .side-stamp { width: 105px; height: 105px; right: 2px; }
  .section-heading, .process-layout, .about-grid, .testimonial-shell, .contact-shell { grid-template-columns: 1fr; gap: 42px; }
  .section-heading { margin-bottom: 40px; }
  .section-heading p { max-width: 620px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; }
  .process-intro, .contact-copy { position: static; }
  .about-visual { min-height: 520px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3), .metric:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
  .testimonial-shell { min-height: 720px; }
  .testimonial-sidebar { border-right: 0; border-bottom: 1px solid var(--line); min-height: 270px; padding: 38px; }
  .testimonial-stage { min-height: 390px; }
  .testimonial { padding: 38px; }
  .contact-form { padding: 28px; }
  .footer-top { grid-template-columns: 1fr auto; gap: 26px; padding: 40px 0; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { grid-template-columns: 1fr; padding: 24px 0; gap: 14px; }
  .footer-bottom > span:last-child { text-align: left; }
}

@media (max-width: 560px) {
  .welcome-mark { width: 105px; height: 105px; }
  .welcome-mark img { width: 78px; height: 78px; }
  .welcome-inner h1 span { display: block; }
  .hero-grid { padding-top: 58px; }
  .hero-copy h1 { font-size: 48px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-visual { min-height: 440px; }
  .visual-frame { min-height: 430px; padding: 18px; }
  .visual-topline > span:first-child { display: none; }
  .compass-wrap { width: 285px; height: 285px; margin-top: 30px; }
  .compass-core { width: 132px; height: 132px; padding: 16px; }
  .note-two { right: -7px; top: 138px; }
  .note-one { top: 47px; }
  .note-three { left: 16px; bottom: 24px; }
  .side-stamp { width: 84px; height: 84px; border-width: 5px; bottom: 3px; }
  .side-stamp span { font-size: 23px; }
  .side-stamp small { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { grid-column: auto; }
  .section-heading h2, .process-intro h2, .about-copy h2, .testimonial-sidebar h2, .contact-copy h2 { font-size: 41px; }
  .process-step { grid-template-columns: 38px 1fr; }
  .step-arrow { display: none; }
  .about-visual { min-height: 450px; border-radius: 120px 12px 12px; }
  .about-image-card { width: 82%; min-height: 310px; padding: 36px 28px; }
  .about-image-card p { font-size: 24px; }
  .about-badge { width: 118px; height: 118px; right: 12px; bottom: 20px; }
  .about-badge strong { font-size: 28px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric { min-height: 150px; border-right: 1px solid rgba(255,255,255,.15); border-top: 1px solid rgba(255,255,255,.15); }
  .metric:first-child { border-top: 0; }
  .testimonial-shell { min-height: 760px; }
  .testimonial-sidebar, .testimonial { padding: 28px; }
  .testimonial blockquote { margin-top: 28px; font-size: 25px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-link { grid-template-columns: 38px 1fr auto; padding-inline: 11px; }
  .contact-link-icon { width: 38px; height: 38px; }
  .contact-link-copy strong { font-size: 12px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-bottom nav { flex-wrap: wrap; gap: 12px 20px; }
  .toast { left: 14px; right: 14px; bottom: 14px; }
}

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


/* Netlify form protection */
.netlify-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.consent a { color: var(--teal-600); text-decoration: underline; text-underline-offset: 2px; }

/* Legal and confirmation pages */
.legal-page { min-height: 100vh; background: var(--paper); color: var(--ink); }
.legal-header { position: static; background: var(--surface); border-bottom: 1px solid var(--line); }
.legal-header .nav-wrap { min-height: 86px; }
.legal-main { padding: 82px 0 110px; }
.legal-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; }
.legal-kicker { display: block; color: var(--teal-600); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.legal-main h1 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(44px, 7vw, 72px); line-height: 1.03; letter-spacing: -.045em; margin: 0 0 18px; }
.legal-intro { max-width: 760px; color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0 0 44px; }
.legal-updated { display: inline-flex; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 42px; }
.legal-section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-section h2 { font-family: "Playfair Display", Georgia, serif; font-size: 28px; margin: 0 0 12px; }
.legal-section p, .legal-section li { color: var(--muted); font-size: 14px; line-height: 1.8; }
.legal-section ul { margin: 12px 0 0; padding-left: 22px; }
.legal-section a { color: var(--teal-600); text-decoration: underline; text-underline-offset: 3px; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.legal-note { margin-top: 34px; padding: 18px 20px; border-left: 3px solid var(--teal-600); background: var(--surface); color: var(--muted); font-size: 13px; line-height: 1.7; }
.thank-you-card { padding: clamp(32px, 6vw, 68px); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.thank-you-card h1 { max-width: 720px; }
.thank-you-icon { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--teal-600); color: #fff; font-size: 28px; margin-bottom: 26px; }
@media (max-width: 640px) {
  .legal-main { padding: 55px 0 80px; }
  .legal-shell { width: min(100% - 28px, 900px); }
  .legal-header .brand-copy { display: inline-flex; }
}


/* Full-stack enquiry feedback and generic WhatsApp contact */
.form-status { min-height: 24px; margin: 14px 0 0; font-size: 13px; line-height: 1.55; }
.form-status.success { color: var(--teal-300); }
html[data-theme="light"] .form-status.success { color: var(--teal-700); }
.form-status.error { color: #d96868; }
.contact-form button[disabled] { opacity: .65; cursor: wait; }
.whatsapp-float { position: fixed; left: 22px; bottom: 22px; z-index: 1150; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #1f8f55; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .04em; box-shadow: 0 16px 38px rgba(12, 78, 44, .3); transition: transform .25s ease, box-shadow .25s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(12, 78, 44, .38); }
@media (max-width: 560px) { .whatsapp-float { left: 14px; bottom: 14px; width: 54px; height: 54px; } }
