/* ============================================================
   CLARKE SOLUTIONS, INC.
   Bespoke business consultancy — evergreen prosperity + champagne gold.
   ============================================================ */

:root {
  --bg:        oklch(0.986 0.004 248);
  --surface:   oklch(1 0 0);
  --surface-2: oklch(0.966 0.006 248);
  --ink:       oklch(0.265 0.018 262);
  --ink-soft:  oklch(0.43 0.020 258);
  --muted:     oklch(0.55 0.018 256);
  --line:      oklch(0.905 0.010 250);
  --line-soft: oklch(0.945 0.008 250);

  /* logo palette — blue C, green S, lime arrow */
  --blue:        oklch(0.515 0.135 252);
  --blue-deep:   oklch(0.350 0.120 264);
  --blue-bright: oklch(0.660 0.130 246);
  --green:       oklch(0.585 0.145 151);
  --green-deep:  oklch(0.460 0.115 158);
  --green-bright:oklch(0.720 0.165 140);
  --lime:        oklch(0.815 0.180 128);
  --cream:       oklch(0.975 0.006 230);
  --cream-soft:  oklch(0.850 0.022 215);

  --grad:      linear-gradient(115deg, var(--blue-deep), var(--blue) 38%, var(--green) 80%, var(--green-bright));
  --grad-soft: linear-gradient(115deg, var(--blue), var(--green));

  /* legacy accent name kept, remapped to brand blue */
  --gold:       var(--blue-bright);
  --gold-deep:  var(--blue);

  --display: 'Libre Caslon Display', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 1px 2px oklch(0.255 0.05 163 / 0.06), 0 6px 18px -10px oklch(0.255 0.05 163 / 0.18);
  --shadow-md: 0 24px 60px -32px oklch(0.255 0.05 163 / 0.42);
  --wrap: 1180px;

  --z-nav: 50; --z-progress: 60; --z-toast: 70;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.62; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--green); color: var(--cream); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: 0; }
h1 em, h2 em { font-style: italic; color: var(--green); }
.hero h1 em { color: var(--lime); }
.band h2 em, .contact-grid em { font-style: italic; }

.eyebrow, .kicker {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep);
}
.kicker { color: var(--green); margin-bottom: 1rem; display: inline-block; }
.lead { color: var(--ink-soft); font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 1.7; max-width: 60ch; text-wrap: pretty; }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 3.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--green);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-gold { background: var(--grad-soft); color: #fff; box-shadow: 0 10px 30px -12px oklch(0.5 0.13 252 / 0.55); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px oklch(0.5 0.13 252 / 0.72); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn-ghost-light { background: oklch(1 0 0 / 0.06); border-color: oklch(1 0 0 / 0.3); color: var(--cream); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: oklch(1 0 0 / 0.14); border-color: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- progress + nav ---------- */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); z-index: var(--z-progress); }

.nav { position: fixed; inset: 0 0 auto 0; z-index: var(--z-nav); transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: oklch(0.982 0.004 165 / 0.82); backdrop-filter: blur(16px) saturate(1.3); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
/* The real CS monogram, transparent PNG. It has to read on the transparent nav
   over the dark hero, on the light scrolled nav, and on the dark footer — so no
   chip, no background, no border. Height drives it; width follows the artwork. */
.brand-mark { display: block; width: auto; height: 40px; background: none; border: 0; border-radius: 0; box-shadow: none; }
.brand-name { font-family: var(--display); font-size: 1.2rem; color: #fff; transition: color 0.4s var(--ease); }
.brand-inc { color: var(--cream-soft); font-size: 0.85em; transition: color 0.4s var(--ease); }
.nav.scrolled .brand-name { color: var(--ink); }
.nav.scrolled .brand-inc { color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { padding: 0.6rem 1.2rem; border-radius: 999px; background: var(--green); color: var(--cream) !important; font-weight: 600; transition: background 0.25s, transform 0.25s !important; }
.nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; color: var(--cream); padding: 7rem 0 4rem; }
.hero-bg { position: absolute; inset: -12% 0; will-change: transform; background:
  linear-gradient(135deg, var(--green-deep), var(--green) 60%, oklch(0.3 0.055 150)),
  url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1700&q=70");
  background-size: cover; background-position: center; background-blend-mode: multiply; }
.hero-veil { position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 80% 10%, transparent, oklch(0.2 0.045 160 / 0.7)),
  linear-gradient(180deg, oklch(0.22 0.05 162 / 0.35), oklch(0.22 0.05 162 / 0.6));
}
.hero-veil::after { content: ""; position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(oklch(1 0 0 / 0.04) 1px, transparent 1px); background-size: 3px 3px; }
.hero-inner { position: relative; max-width: 940px; }
.hero .eyebrow { color: var(--lime); margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); line-height: 1.04; margin-bottom: 1.6rem; text-wrap: balance; text-shadow: 0 10px 40px oklch(0.18 0.04 160 / 0.5); }
.hero-sub { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--cream-soft); max-width: 58ch; line-height: 1.65; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.8rem; }
.hero-note { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.95rem; color: var(--cream-soft); }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 oklch(0.78 0.095 84 / 0.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(0.78 0.095 84 / 0.6); } 70% { box-shadow: 0 0 0 12px oklch(0.78 0.095 84 / 0); } 100% { box-shadow: 0 0 0 0 oklch(0.78 0.095 84 / 0); } }

/* ---------- values strip ---------- */
.values { background: var(--surface); border-bottom: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value { padding: clamp(2rem, 4vw, 3rem) 1.6rem clamp(2rem, 4vw, 3rem) 0; border-right: 1px solid var(--line-soft); }
.value:last-child { border-right: 0; }
.value:not(:first-child) { padding-left: 1.6rem; }
.value-no { font-family: var(--display); font-size: 1.4rem; color: var(--green); display: block; margin-bottom: 0.5rem; }
.value p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- services ---------- */
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.svc-tabs { display: flex; flex-wrap: wrap; gap: 2px; padding: 8px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.svc-tabs button {
  flex: 1 1 auto; min-width: 140px; background: transparent; border: 0; cursor: pointer;
  padding: 0.85rem 1rem; border-radius: 11px; font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  color: var(--ink-soft); transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.svc-tabs button:hover { color: var(--green); }
.svc-tabs button[aria-selected="true"] { background: var(--green); color: var(--cream); box-shadow: var(--shadow-sm); }
.svc-panel { padding: clamp(1.4rem, 3vw, 2.4rem); }
.svc-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; max-width: 70ch; }
.svc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 1rem; }
.svc-item { position: relative; padding: 1.3rem 1.3rem 1.3rem 1.5rem; background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: 13px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.svc-item::before { content: ""; position: absolute; left: 0; top: 1.4rem; bottom: 1.4rem; width: 3px; border-radius: 3px; background: linear-gradient(var(--gold-deep), var(--gold)); opacity: 0; transition: opacity 0.3s; }
.svc-item:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow-md); }
.svc-item:hover::before { opacity: 1; }
.svc-item h4 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.35rem; }
.svc-item p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.svc-anim { animation: fade 0.45s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- approach ---------- */
.approach { background: var(--surface); }
.approach-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.approach-copy h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 1.1rem; }
.steps { list-style: none; margin-top: 2.2rem; display: grid; gap: 1.4rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; }
.steps li span { font-family: var(--display); font-size: 1.1rem; color: var(--gold-deep); width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface-2); }
.steps h4 { font-size: 1.08rem; margin-bottom: 0.2rem; }
.steps p { font-size: 0.94rem; color: var(--ink-soft); }
.approach-card { position: sticky; top: 100px; }
.approach-card-inner { background: linear-gradient(160deg, var(--green), var(--green-deep)); color: var(--cream); border-radius: 18px; padding: 2.2rem; box-shadow: var(--shadow-md); border: 1px solid oklch(0.78 0.095 84 / 0.25); }
.ac-quote { font-family: var(--display); font-style: italic; font-size: 1.5rem; line-height: 1.35; margin-bottom: 1rem; }
.ac-by { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.6rem; }

/* ---------- industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.ind { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 2rem 1.7rem; transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.ind-mark { color: var(--gold-deep); font-size: 1.2rem; display: block; margin-bottom: 1rem; }
.ind h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ind p { font-size: 0.93rem; color: var(--ink-soft); }

/* ---------- anything band ---------- */
.band { position: relative; overflow: hidden; color: var(--cream); text-align: center; padding: clamp(4rem, 9vw, 6.5rem) 0; }
.band-bg { position: absolute; inset: -12% 0; will-change: transform; background:
  linear-gradient(120deg, var(--green-deep), var(--green)),
  url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1700&q=70");
  background-size: cover; background-position: center; background-blend-mode: multiply; }
.band-veil { position: absolute; inset: 0; background: linear-gradient(180deg, oklch(0.22 0.05 162 / 0.55), oklch(0.22 0.05 162 / 0.7)); }
.band-inner { position: relative; max-width: 720px; margin-inline: auto; }
.band-inner h2 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.band-inner p { color: var(--cream-soft); font-size: 1.1rem; line-height: 1.6; margin-bottom: 2rem; }

/* ---------- book an appointment ---------- */
.book { background: var(--bg); border-top: 1px solid var(--line); }
.book-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }

.book-rail { position: sticky; top: 100px; background: linear-gradient(160deg, var(--green), var(--green-deep)); color: var(--cream); border-radius: 18px; padding: 2rem 1.9rem; box-shadow: var(--shadow-md); border: 1px solid oklch(0.78 0.095 84 / 0.25); }
.book-rail-kick { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.book-summary { list-style: none; display: grid; gap: 0.1rem; }
.book-summary li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid oklch(1 0 0 / 0.14); }
.book-summary li:last-child { border-bottom: 0; }
.book-summary span { font-size: 0.86rem; color: var(--cream-soft); }
.book-summary b { font-weight: 600; text-align: right; color: var(--cream); }
.book-rail-note { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.86rem; color: var(--cream-soft); margin-top: 1.3rem; }
.book-rail-promise { font-family: var(--display); font-style: italic; font-size: 1.18rem; line-height: 1.4; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid oklch(1 0 0 / 0.14); color: var(--cream); }

.book-form { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: var(--shadow-sm); }
.bf-block { border: 0; padding: 0; margin-bottom: 1.7rem; }
.bf-block legend { font-family: var(--sans); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green); margin-bottom: 0.9rem; }
.bf-field { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.book-form .form-row { margin-bottom: 0; }
.book-form .form-row + .form-row, .book-form .form-row + .bf-field { margin-top: 1rem; }
.bf-field input, .bf-field select, .bf-field textarea {
  width: 100%; margin-top: 0.4rem; font-family: var(--sans); font-size: 1rem; color: var(--ink); font-weight: 400;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bf-field input::placeholder, .bf-field textarea::placeholder { color: var(--muted); }
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px oklch(0.345 0.06 164 / 0.14); }
.bf-field input.invalid, .bf-field select.invalid { border-color: oklch(0.6 0.18 25); box-shadow: 0 0 0 3px oklch(0.6 0.18 25 / 0.12); }
.bf-field textarea { resize: vertical; }

.bf-slots-label { display: block; margin-bottom: 0.4rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-row.slots { padding-top: 0.4rem; }
.chip {
  font-family: var(--sans); font-weight: 600; font-size: 0.88rem; color: var(--ink-soft); cursor: pointer;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 1.05rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.chip:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.chip.is-on { background: var(--green); border-color: var(--green); color: var(--cream); box-shadow: var(--shadow-sm); }
.chip:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.slots-empty { font-size: 0.86rem; color: var(--muted); align-self: center; }
.book-invalid { color: oklch(0.6 0.18 25) !important; }

.book-ics { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.9rem; font-size: 0.9rem; font-weight: 700; color: var(--gold-deep); border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 1.1rem; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.book-ics:hover { background: var(--green); color: var(--cream); border-color: var(--green); }

/* ---------- contact ---------- */
.contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.methods { display: grid; gap: 1rem; }
.method { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.2rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
a.method:hover { transform: translateY(-2px); border-color: var(--green); box-shadow: var(--shadow-sm); }
.method-ic { flex: none; width: 46px; height: 46px; border-radius: 11px; background: var(--green); color: var(--cream); display: grid; place-items: center; }
.method-ic svg { width: 22px; height: 22px; }
.method-body { display: flex; flex-direction: column; line-height: 1.3; }
.method-body b { font-size: 1.02rem; color: var(--ink); }
.method-body em { font-style: normal; font-size: 0.9rem; color: var(--muted); }
.method-copy { margin-left: auto; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.7rem; cursor: pointer; transition: background 0.2s, color 0.2s; }
.method-copy:hover { background: var(--green); color: var(--cream); border-color: var(--green); }
.method-qr { cursor: default; }

.qr-wrap { display: flex; align-items: center; gap: 1.2rem; padding: 1.1rem 1.2rem; background: var(--green); color: var(--cream); border-radius: 14px; }
.qr { width: 116px; height: 116px; flex: none; background: #fff; border-radius: 10px; padding: 8px; display: grid; place-items: center; }
.qr svg { width: 100%; height: 100%; }
.qr-cap { font-size: 0.86rem; color: var(--cream-soft); }

.form { background: var(--surface-2); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: var(--shadow-sm); }
.form h3 { font-family: var(--display); font-weight: 400; font-size: 1.5rem; margin-bottom: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 1rem; }
.form input, .form select, .form textarea {
  width: 100%; margin-top: 0.4rem; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 0.8rem 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s; font-weight: 400;
}
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px oklch(0.345 0.06 164 / 0.14); }
.form input.invalid { border-color: oklch(0.6 0.18 25); box-shadow: 0 0 0 3px oklch(0.6 0.18 25 / 0.12); }
.form textarea { resize: vertical; }
.form-note { min-height: 1.3em; margin-top: 0.4rem; font-size: 0.92rem; font-weight: 600; color: var(--green); }

/* ---------- footer ---------- */
.footer { background: var(--green-deep); color: var(--cream-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid oklch(1 0 0 / 0.12); }
.footer-brand { display: flex; gap: 1rem; align-items: center; max-width: 420px; }
.footer-brand .brand-mark { background: none; border: 0; }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-inc { color: var(--cream-soft); }
.footer-brand p { font-size: 0.92rem; margin-top: 0.3rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; align-content: start; }
.footer-links a { color: var(--cream-soft); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding-top: 1.6rem; font-size: 0.84rem; color: oklch(0.78 0.02 130); }

/* ---------- toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 160%); opacity: 0; visibility: hidden; pointer-events: none; z-index: var(--z-toast); background: var(--green-deep); color: var(--cream); padding: 0.8rem 1.3rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-md); border: 1px solid oklch(0.78 0.095 84 / 0.35); transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), visibility 0.45s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .values .reveal, .js .ind-grid .reveal, .js .steps .reveal { transition-delay: var(--d, 0s); }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: oklch(0.982 0.004 165 / 0.98); backdrop-filter: blur(18px); padding: 1rem 1.25rem 1.5rem; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform 0.45s var(--ease); visibility: hidden; }
  .nav.open .nav-links { transform: none; visibility: visible; }
  .nav-links a { padding: 0.85rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { text-align: center; margin-top: 0.7rem; }
  .nav-toggle { display: flex; }
  .nav.open .nav-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.open .nav-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--line-soft); padding: 1.6rem !important; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .book-rail { position: static; order: 2; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .qr-wrap { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .pulse { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* Outbound link inside a services panel — Creo, the web partner. Underlined
   rather than colour-only, so it still reads as a link to anyone who cannot
   separate the gold from the body ink. */
.svc-link { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.25s; }
.svc-link:hover { color: var(--gold-deep); }
.svc-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
