/* ============================================================
   Sim Dhaliwal — V11 (visual polish)
   Warm clinical trust · OKLCH-tinted ivory · brass accent
   Talkshop structure · Sim voice · Hanken + Fraunces
   ============================================================ */

:root {
  /* OKLCH palette (warm hue ~78, never pure black/white) */
  --paper:      oklch(0.975 0.012 78);
  --paper-2:    oklch(0.948 0.014 78);
  --paper-3:    oklch(0.922 0.016 76);
  --surface:    oklch(0.993 0.008 82);
  --ink:        oklch(0.24 0.014 58);
  --ink-soft:   oklch(0.48 0.018 62);
  --ink-faint:  oklch(0.62 0.014 65);
  --hair:       oklch(0.88 0.018 78);
  --hair-2:     oklch(0.84 0.02 76);
  --brass:      oklch(0.58 0.095 72);
  --brass-soft: oklch(0.72 0.08 74);
  --brass-deep: oklch(0.48 0.09 68);
  --plum:       oklch(0.38 0.06 350);
  --blush:      oklch(0.93 0.025 25);
  --sage:       oklch(0.92 0.022 130);
  --sky:        oklch(0.93 0.02 230);
  --sand:       oklch(0.94 0.03 85);

  --mesh-gold:  oklch(0.84 0.09 82);
  --mesh-sand:  oklch(0.88 0.07 85);
  --mesh-sage:  oklch(0.82 0.04 130);
  --mesh-sky:   oklch(0.86 0.035 230);

  --font-display: 'Hanken Grotesk', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;

  --shadow-sm: 0 1px 2px oklch(0.24 0.014 58 / .04), 0 8px 24px oklch(0.24 0.014 58 / .06);
  --shadow:    0 24px 56px -28px oklch(0.24 0.014 58 / .22);
  --shadow-lg: 0 40px 80px -36px oklch(0.24 0.014 58 / .28);

  --r:    6px;
  --r-md: 12px;
  --r-lg: 20px;
  --pill: 999px;
  --wrap: 1160px;

  --ease-out: cubic-bezier(.25, 1, .5, 1);
  --ease-quart: cubic-bezier(.165, .84, .44, 1);

  /* Fluid type scale (≥1.25 ratio) */
  --text-sm: clamp(0.84rem, 0.8rem + 0.15vw, 0.92rem);
  --text-base: clamp(0.94rem, 0.9rem + 0.2vw, 1.05rem);
  --text-lg: clamp(1.12rem, 1.05rem + 0.35vw, 1.28rem);
  --text-xl: clamp(1.45rem, 1.25rem + 0.9vw, 2rem);
  --text-2xl: clamp(1.85rem, 1.5rem + 1.4vw, 2.75rem);
  --text-3xl: clamp(2.35rem, 1.85rem + 2.2vw, 3.75rem);
  --text-hero: clamp(2.1rem, 1.6rem + 2.4vw, 3.25rem);
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(22px, 4vw, 56px);
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 14px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: var(--pill); z-index: 300;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 14px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { font-size: var(--text-hero); font-weight: 700; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-lg); font-weight: 600; }
em { font-style: italic; }
h2 em, h3 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
}
p { text-wrap: pretty; max-width: 68ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 16px;
}
.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px oklch(0.58 0.095 72 / .16);
  flex-shrink: 0;
}
.section-label--light { color: oklch(0.98 0.01 82 / .9); }
.section-label--light::before { background: var(--brass-soft); box-shadow: 0 0 0 4px oklch(0.72 0.08 74 / .22); }
.section-label.center { justify-content: center; }
.section-intro {
  max-width: 52ch;
  margin: 18px auto 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: var(--text-base);
}
.section-head { margin-bottom: clamp(40px, 6vw, 64px); text-align: center; }
.section-head--left { text-align: left; }
.section-head--left .section-intro { margin-inline: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: transform .35s var(--ease-quart), background .35s, color .35s, border-color .35s, box-shadow .35s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--brass);
  color: var(--surface);
  box-shadow: 0 1px 0 oklch(0.38 0.08 68 / .25);
}
.btn-primary:hover {
  background: var(--brass-deep);
  box-shadow: 0 8px 24px oklch(0.48 0.09 68 / .28);
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: oklch(0.98 0.01 82 / .45);
}
.btn-outline:hover {
  background: oklch(0.98 0.01 82 / .08);
  border-color: oklch(0.98 0.01 82 / .75);
}
.btn-sm { padding: 10px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
.reveal[data-d="5"] { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: oklch(0.993 0.008 82 / .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.88 0.018 78 / .6);
  transition: background .35s, box-shadow .35s;
}
.site-header.scrolled {
  background: oklch(0.993 0.008 82 / .97);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--hair), 0 4px 12px oklch(0.24 0.014 58 / .08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -.02em;
}
.brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.main-nav ul {
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  align-items: center;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .25s;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-quart);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-utils {
  display: flex;
  align-items: center;
  gap: 18px;
}
.util-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.util-link:hover { color: var(--brass); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ============================================================
   CONSULTATION HERO
   ============================================================ */
.consult-hero {
  position: relative;
  min-height: clamp(460px, 68vh, 820px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.consult-hero__bg {
  position: absolute;
  inset: 0;
}
.consult-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 50%;
  transform: scale(1.02);
  animation: heroKen 22s var(--ease-out) infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .consult-hero__bg img { animation: none; transform: none; }
}

.consult-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.20 0.02 55 / .9) 0%, oklch(0.22 0.02 55 / .72) 32%, oklch(0.28 0.03 60 / .35) 56%, transparent 78%),
    linear-gradient(to top, oklch(0.16 0.02 55 / .55) 0%, transparent 50%);
}
.consult-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding-block: clamp(64px, 10vw, 110px);
}
.consult-lede {
  margin: 20px 0 32px;
  font-size: var(--text-lg);
  line-height: 1.62;
  color: oklch(0.96 0.012 82 / .9);
  max-width: 48ch;
}

/* ============================================================
   BRAND BAND
   ============================================================ */
.brand-band {
  position: relative;
  padding: clamp(64px, 9vw, 104px) 0;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--hair);
}
.brand-band__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, var(--mesh-gold), transparent 60%),
    radial-gradient(ellipse 40% 70% at 0% 0%, var(--mesh-sage), transparent 58%),
    var(--paper);
  opacity: 0.7;
}
.brand-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.brand-band__title {
  font-size: var(--text-3xl);
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-top: 6px;
}
.brand-band__title span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 0.5em;
  color: var(--brass);
  margin-top: 0.18em;
  letter-spacing: -.01em;
}

/* credibility facts — hairline-divided, right aligned */
.brand-facts {
  display: grid;
  gap: 0;
  border-left: 1px solid var(--hair-2);
}
.brand-facts__item {
  padding: 12px 0 12px clamp(20px, 2.5vw, 32px);
}
.brand-facts__item + .brand-facts__item {
  border-top: 1px solid var(--hair);
}
.brand-facts dt {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.2;
}
.brand-facts dd {
  margin: 3px 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ============================================================
   ABOUT
   ============================================================ */
.section { padding: clamp(72px, 10vw, 112px) 0; }
.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-photo {
  position: relative;
  margin-left: clamp(0px, 3vw, 32px);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 8%;
  background: var(--sage);
  border-radius: var(--r-lg);
  z-index: 0;
}
.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.about-sub {
  font-weight: 500;
  font-size: var(--text-lg);
  color: var(--ink-soft);
  margin: 12px 0 22px;
  line-height: 1.45;
}
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-creds li {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 16px;
  background: var(--paper);
  border-radius: var(--pill);
  color: var(--ink-soft);
  border: 1px solid var(--hair);
}

/* ============================================================
   SERVICES (alternating rows, not identical cards)
   ============================================================ */
.services {
  background: var(--paper-2);
  padding-bottom: clamp(80px, 12vw, 120px);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 72px);
}
.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  padding-bottom: clamp(48px, 7vw, 72px);
  border-bottom: 1px solid var(--hair);
}
.service-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.service-row__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-style: italic;
  color: oklch(0.72 0.06 72 / .45);
  line-height: 1;
  padding-top: 0.15em;
}
.service-row__media {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-row__media img {
  width: 100%;
  aspect-ratio: 4 / 2.85;
  object-fit: cover;
  transition: transform .7s var(--ease-quart);
}
.service-row:hover .service-row__media img { transform: scale(1.03); }
.service-row__body h3 { margin-bottom: 12px; }
.service-row__body p {
  font-size: var(--text-base);
  color: var(--ink-soft);
  line-height: 1.68;
  max-width: 42ch;
}
.service-row--flip .service-row__media { order: 3; }
.service-row--flip .service-row__body { order: 2; }
.service-row--flip .service-row__num { order: 1; }

/* ============================================================
   AREAS
   ============================================================ */
.areas { background: var(--surface); }

.pill-panel {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pill-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 70% at 100% 0%, var(--mesh-gold), transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, var(--mesh-sage), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.pill-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill {
  display: inline-block;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--hair-2);
  border-radius: var(--pill);
  transition: background .3s var(--ease-quart), color .3s, border-color .3s, transform .3s var(--ease-quart), box-shadow .3s;
}
.pill:hover {
  background: var(--brass);
  color: var(--surface);
  border-color: var(--brass);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px oklch(0.48 0.09 68 / .22);
}

/* ============================================================
   RESOURCES (editorial list)
   ============================================================ */
.resources { background: var(--paper); }

.resource-list {
  border-top: 1px solid var(--hair);
  max-width: 880px;
  margin-inline: auto;
}
.resource-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  padding: clamp(26px, 4vw, 34px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--hair);
  border-radius: var(--r-md);
  transition: background .35s var(--ease-quart);
}
.resource-item:hover { background: var(--paper-2); }
.resource-item:hover .resource-link { color: var(--brass-deep); }
.resource-item:hover .resource-link svg { transform: translateX(3px); }
.resource-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 0.35em;
}
.resource-item__main h3 {
  margin-bottom: 8px;
  font-size: var(--text-lg);
}
.resource-item__main p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 52ch;
}
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brass);
  white-space: nowrap;
  padding-top: 0.35em;
  transition: color .25s, gap .35s var(--ease-quart);
}
.resource-link svg { transition: transform .35s var(--ease-quart); }
.resource-link:hover { color: var(--brass-deep); gap: 9px; }
.resource-link:hover svg { transform: translateX(3px); }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--surface); }

.team-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 12px;
  transition: transform .4s var(--ease-quart);
}
.team-card:hover { transform: translateY(-6px); }
.team-card__photo {
  width: clamp(140px, 18vw, 180px);
  height: clamp(140px, 18vw, 180px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .4s;
}
.team-card:hover .team-card__photo {
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--brass-soft), var(--shadow);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name {
  font-weight: 600;
  font-size: 1rem;
}

/* Bio modal */
.bio-modal {
  border: 0;
  padding: 0;
  max-width: min(540px, 92vw);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.bio-modal::backdrop { background: oklch(0.24 0.014 58 / .55); }
.bio-modal__inner { padding: clamp(28px, 4vw, 36px); position: relative; }
.bio-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 12px;
}
.bio-close:hover { color: var(--brass); }
.bio-modal__head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.bio-modal__head img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.bio-role { font-size: 0.88rem; color: var(--ink-soft); margin-top: 4px; }
.bio-modal__body p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.72;
  margin-bottom: 14px;
}
.bio-modal__inner .btn { margin-top: 10px; }

/* ============================================================
   PHILOSOPHY QUOTE BAND
   ============================================================ */
.quote-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 11vw, 140px) 0;
}
.quote-band__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 75% at 10% 100%, oklch(0.45 0.07 72 / .4), transparent 55%),
    radial-gradient(ellipse 55% 70% at 92% 0%, oklch(0.4 0.06 350 / .32), transparent 55%);
  pointer-events: none;
}
.quote-band__inner {
  position: relative;
  z-index: 1;
  max-width: 940px;
  text-align: center;
}
.quote-band__mark {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.5;
  color: var(--brass-soft);
  opacity: 0.55;
  margin-bottom: 0.1em;
}
.quote-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0 auto;
}
.quote-band__text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--brass-soft);
}
.quote-band__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: clamp(32px, 4vw, 44px) auto 0;
  align-items: center;
}
.quote-band__name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.quote-band__role {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: oklch(0.94 0.014 78 / .68);
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(64px, 9vw, 104px) 0;
  text-align: center;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 12% 0%, oklch(0.45 0.07 72 / .38), transparent 55%),
    radial-gradient(ellipse 50% 75% at 88% 100%, oklch(0.4 0.06 350 / .32), transparent 55%);
  pointer-events: none;
}
.footer-cta__inner { position: relative; z-index: 1; }
.footer-cta h2 { color: var(--paper); margin-bottom: 16px; }
.footer-cta h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--brass-soft); }
.footer-cta p {
  max-width: 46ch;
  margin: 0 auto 32px;
  color: oklch(0.94 0.014 78 / .78);
  line-height: 1.68;
  font-size: var(--text-base);
}
.footer-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.contact-info p { color: var(--ink-soft); margin: 16px 0 28px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-list small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 3px;
}
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--brass); }
.ci {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  color: var(--brass);
  border: 1px solid var(--hair);
}

.contact-form {
  background: var(--paper);
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 13px 15px;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass-soft);
  box-shadow: 0 0 0 3px oklch(0.58 0.095 72 / .14);
}
.field textarea { resize: vertical; min-height: 108px; }
.form-note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  min-height: 1.4em;
}
.form-note.ok { color: var(--brass-deep); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper-3);
  border-top: 1px solid var(--hair);
  padding-top: clamp(48px, 7vw, 64px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding-bottom: 44px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  max-width: 30ch;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--ink);
}
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color .25s;
}
.footer-col a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid var(--hair);
  padding: 22px 0 30px;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .brand-band__inner { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); }
  .brand-facts { border-left: 0; }
  .brand-facts__item { padding-left: 0; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; margin-left: 0; }
  .service-row,
  .service-row--flip {
    grid-template-columns: auto 1fr;
  }
  .service-row__media,
  .service-row--flip .service-row__media { order: 2; grid-column: 1 / -1; }
  .service-row__body,
  .service-row--flip .service-row__body { order: 3; grid-column: 1 / -1; }
  .service-row__num,
  .service-row--flip .service-row__num { order: 1; }
  .resource-item { grid-template-columns: 1fr; gap: 10px; }
  .resource-link { padding-top: 0; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--surface);
    padding: 24px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .4s var(--ease-quart), opacity .4s;
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--hair);
  }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .util-link { display: none; }
  .header-utils .btn-sm { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cta__actions { flex-direction: column; align-items: stretch; }
  .footer-cta__actions .btn { width: 100%; }
}
