/* =========================================================
   Ashworth & Hale Solicitors
   Editorial / boutique law firm aesthetic
   Palette: deep navy + warm gold accent on cream-white
   ========================================================= */

:root {
  --navy-950: #060e1f;
  --navy-900: #0b1a33;
  --navy-800: #11254a;
  --navy-700: #1a325f;
  --navy-600: #234072;
  --navy-100: #e7ecf3;

  --gold-500: #c8a96a;
  --gold-400: #d6bc83;
  --gold-300: #e4d2a7;
  --gold-100: #f5ecd6;

  --ink-900: #0c1322;
  --ink-700: #2a3140;
  --ink-500: #5b6273;
  --ink-400: #8089a0;
  --ink-300: #b9c0cf;

  --paper: #fbfaf6;
  --paper-2: #f4f1e9;
  --paper-3: #ece7d8;
  --white: #ffffff;

  --line: rgba(11, 26, 51, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  --serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;

  --shadow-sm: 0 4px 16px rgba(11, 26, 51, 0.06);
  --shadow-md: 0 18px 48px rgba(11, 26, 51, 0.10);
  --shadow-lg: 0 30px 80px rgba(11, 26, 51, 0.14);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
  --header-h: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p, blockquote, figure { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--navy-900); color: var(--gold-300); }

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

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--navy-900); color: var(--paper);
  padding: 12px 18px; border-radius: var(--radius-sm);
  text-decoration: none; z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Portfolio disclosure banner ---------- */
.portfolio-banner {
  background: var(--navy-950);
  color: rgba(231, 236, 243, .85);
  font-size: 13px;
  border-bottom: 1px solid rgba(200, 169, 106, .2);
  position: relative;
  z-index: 101;
}
.portfolio-banner[hidden] { display: none; }
.portfolio-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.portfolio-banner strong { color: var(--gold-400); font-weight: 500; letter-spacing: 0.04em; }
.portfolio-banner a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(200, 169, 106, .5);
}
.portfolio-banner a:hover { text-decoration-color: var(--gold-400); }
.portfolio-banner-close {
  background: transparent; border: 0;
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  color: rgba(231, 236, 243, .65);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.portfolio-banner-close:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
}
.portfolio-banner-close svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}
@media (max-width: 760px) {
  .portfolio-banner { font-size: 12px; }
  .portfolio-banner-inner { padding: 8px 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease);
}
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--navy-900); color: var(--paper);
  border-color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-500); color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(200, 169, 106, .35);
}

.btn-ghost {
  background: transparent; color: var(--navy-900);
  border-color: rgba(11, 26, 51, .25);
}
.btn-ghost:hover {
  background: var(--navy-900); color: var(--paper);
  border-color: var(--navy-900);
}

.btn-outline {
  background: transparent; color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline:hover {
  background: var(--navy-900); color: var(--paper);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--paper);
  transition: color .35s var(--ease);
}
.site-header.scrolled .logo,
.scrolled-pre-hero .logo { color: var(--navy-900); }

.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 3px;
  border: 1px solid currentColor; border-radius: 2px;
  opacity: 0.35;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 19px; font-weight: 500;
  letter-spacing: 0.005em;
}
.logo-sub {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.7; margin-top: 4px;
}

.nav-list {
  display: flex; gap: 36px; align-items: center;
}
.nav a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-header.scrolled .nav a { color: var(--navy-900); }

.header-actions {
  display: flex; align-items: center; gap: 18px;
}

.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  color: var(--paper);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 4px;
  transition: color .25s var(--ease);
}
.header-phone svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--gold-400);
  stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease);
}
.header-phone:hover { color: var(--gold-400); }
.header-phone:hover svg { transform: rotate(-12deg); }
.site-header.scrolled .header-phone { color: var(--navy-900); }
.site-header.scrolled .header-phone svg { stroke: var(--gold-500); }
.site-header.scrolled .header-phone:hover { color: var(--gold-500); }

.header-cta {
  padding: 12px 22px;
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .35);
}
.header-cta:hover {
  background: var(--gold-500); color: var(--navy-900);
  border-color: var(--gold-500);
  transform: translateY(-1px);
}
.site-header.scrolled .header-cta {
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.site-header.scrolled .header-cta:hover {
  background: var(--navy-900); color: var(--paper);
  border-color: var(--navy-900);
}

/* Menu toggle */
.menu-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  padding: 0;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--paper);
  transition: all .35s var(--ease);
}
.site-header.scrolled .menu-toggle span { background: var(--navy-900); }
.menu-toggle[aria-expanded="true"] span { background: var(--navy-900); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: var(--paper);
  padding: 24px clamp(20px, 4vw, 56px) 40px;
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: all .35s var(--ease);
}
.mobile-nav[data-open="true"] {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.mobile-phone {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  margin-bottom: 8px;
  background: var(--navy-900);
  color: var(--paper);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  letter-spacing: 0.005em;
  transition: background .25s var(--ease);
}
.mobile-phone:hover { background: var(--navy-800); }
.mobile-phone svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--gold-400);
  stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.mobile-phone span {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.mobile-phone small {
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-cta { margin-top: 24px; width: 100%; justify-content: center; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(200, 169, 106, .14), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(35, 64, 114, .55), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-800) 100%);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

/* subtle moving grain & decorative seal */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 0, transparent 95%, rgba(255,255,255,.04) 100%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: 100% 80px, 4px 4px;
  pointer-events: none;
  z-index: -1;
  opacity: .35;
}
.hero::after {
  content: "";
  position: absolute;
  right: -240px; top: 50%;
  width: 720px; height: 720px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    conic-gradient(from 210deg at 50% 50%,
      rgba(200,169,106,.10),
      rgba(200,169,106,0) 25%,
      rgba(200,169,106,.10) 50%,
      rgba(200,169,106,0) 75%,
      rgba(200,169,106,.10) 100%);
  filter: blur(2px);
  z-index: -1;
  animation: slowSpin 60s linear infinite;
  pointer-events: none;
}
@keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  opacity: .35;
  pointer-events: none;
  z-index: -1;
}

.hero-inner {
  position: relative;
  display: flex; flex-direction: column;
  max-width: 1100px;
  width: 100%;
  min-width: 0;
}
.hero-inner > * { min-width: 0; max-width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 36px;
  max-width: 100%;
}
.eyebrow-line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--gold-500);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 6.2vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 32px;
  font-variation-settings: "opsz" 96;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.hero-title-break { display: none; }
@media (min-width: 760px) { .hero-title-break { display: inline; } }

.hero-lede {
  max-width: 640px;
  font-size: clamp(1.05rem, 1.5vw, 1.225rem);
  line-height: 1.55;
  color: rgba(231, 236, 243, .82);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-actions .btn-primary {
  background: var(--gold-500); color: var(--navy-900);
  border-color: var(--gold-500);
}
.hero-actions .btn-primary:hover {
  background: var(--gold-400); border-color: var(--gold-400);
}
.hero-actions .btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .25);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, .4);
}

.hero-marks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: 760px;
  width: 100%;
}
.hero-marks li {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-right: 24px;
  min-width: 0;
}
.hero-marks li + li { border-left: 1px solid rgba(255, 255, 255, .08); padding-left: 24px; }
.hero-marks span {
  font-family: var(--serif);
  font-size: 22px; font-weight: 500;
  color: var(--gold-400);
  letter-spacing: 0.01em;
}
.hero-marks small {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(231, 236, 243, .55);
}

.hero-scroll {
  position: absolute;
  bottom: 32px; right: clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold-400) 50%, transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
.hero-scroll small {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(231, 236, 243, .55);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .6; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* =========================================================
   STRIP
   ========================================================= */
.strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 64px 0;
  gap: 24px;
}
.strip-item {
  display: flex; flex-direction: column;
  gap: 10px;
  padding-right: 24px;
  position: relative;
}
.strip-item + .strip-item::before {
  content: "";
  position: absolute; left: -12px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 56px;
  background: var(--line);
}
.strip-num {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.01em;
}
.strip-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500);
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section {
  padding: clamp(80px, 11vw, 140px) 0;
}
.section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
}
.section-tag.light { color: var(--gold-400); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy-900);
}
.section-title.light { color: var(--paper); }

.section-lede {
  margin-top: 22px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--ink-500);
}

/* =========================================================
   EXPERTISE
   ========================================================= */
.section-expertise {
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  position: relative;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.practice {
  display: flex; flex-direction: column;
  background: var(--paper);
  padding: 44px 36px 36px;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background .4s var(--ease);
}
.practice:hover { background: var(--white); }
.practice:hover .practice-cta { color: var(--navy-900); }
.practice:hover .practice-cta svg { transform: translateX(4px); }
.practice:hover h3 { color: var(--navy-700); }

.practice-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-500);
  transition: color .35s var(--ease);
}
.practice-cta svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease);
}
.practice-num {
  font-family: var(--serif);
  font-size: 14px; font-weight: 500;
  color: var(--gold-500);
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}
.practice h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.practice p {
  color: var(--ink-500);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.practice ul {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  flex-grow: 1;
}
.practice ul li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 0.88rem;
  color: var(--ink-700);
  letter-spacing: 0.01em;
}
.practice ul li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--gold-500);
}

/* =========================================================
   APPROACH
   ========================================================= */
.section-approach {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(200, 169, 106, .12), transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-approach::before {
  content: "";
  position: absolute;
  left: -200px; bottom: -200px;
  width: 600px; height: 600px;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(35, 64, 114, .6),
      transparent 60%);
  pointer-events: none;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.approach-text .section-title { margin-bottom: 24px; }
.approach-lede {
  color: rgba(231, 236, 243, .78);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 540px;
}
.approach-points { display: flex; flex-direction: column; gap: 4px; }
.approach-points li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  align-items: start;
}
.approach-points li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.point-num {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 0.02em;
}
.approach-points h4 {
  font-family: var(--sans);
  font-size: 1.05rem; font-weight: 500;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: 0.005em;
}
.approach-points p {
  color: rgba(231, 236, 243, .65);
  font-size: 0.94rem;
  line-height: 1.6;
}

.approach-card {
  position: relative;
  padding: 60px 48px;
  isolation: isolate;
}
.approach-card-bg {
  position: absolute; inset: 0;
  border: 1px solid rgba(200, 169, 106, .2);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(200, 169, 106, .07), rgba(200, 169, 106, 0) 60%);
  z-index: -1;
}
.approach-card-bg::before {
  content: ""; position: absolute;
  top: -1px; left: -1px;
  width: 64px; height: 64px;
  border-top: 1px solid var(--gold-500);
  border-left: 1px solid var(--gold-500);
}
.approach-card-bg::after {
  content: ""; position: absolute;
  bottom: -1px; right: -1px;
  width: 64px; height: 64px;
  border-bottom: 1px solid var(--gold-500);
  border-right: 1px solid var(--gold-500);
}
.quote-mark {
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.6;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.approach-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  color: var(--paper);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 36px;
}
.approach-card cite {
  display: flex; flex-direction: column; gap: 4px;
  font-style: normal;
}
.approach-card cite strong {
  color: var(--gold-400);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.approach-card cite span {
  color: rgba(231, 236, 243, .55);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   PARTNERS
   ========================================================= */
.section-partners {
  background: var(--paper);
  position: relative;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}
.partner {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.partner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.partner-portrait {
  position: relative;
  aspect-ratio: 5 / 6;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200, 169, 106, .18), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.partner-pattern {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .9;
}
.partner-monogram {
  position: relative;
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold-400);
  letter-spacing: 0.02em;
  z-index: 1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.partner-portrait::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: .6;
}
.partner-body {
  padding: 28px 28px 32px;
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.partner-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.partner-role {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
}
.partner-bio {
  color: var(--ink-500);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.partner-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.partner-meta li {
  font-size: 0.82rem;
  color: var(--ink-700);
  letter-spacing: 0.01em;
}

.partner-team {
  background: var(--navy-900);
  color: var(--paper);
  border-color: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.partner-team::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 106, .18), transparent 60%);
}
.partner-team-inner {
  padding: 40px 36px;
  display: flex; flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.partner-team-num {
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.partner-team-label {
  color: rgba(231, 236, 243, .8);
  font-size: 0.95rem;
  line-height: 1.55;
}
.partner-team-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--paper);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  transition: color .25s var(--ease);
}
.partner-team-link svg {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .35s var(--ease);
}
.partner-team-link:hover { color: var(--gold-400); }
.partner-team-link:hover svg { transform: translateX(4px); }

/* =========================================================
   PRICING
   ========================================================= */
.section-pricing {
  background: var(--paper-2);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.price {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.price:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 106, .35);
}
.price-flag {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--navy-900);
  color: var(--gold-300);
  padding: 6px 14px 7px;
  border-radius: 0 0 4px 4px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.price-featured {
  border-color: var(--navy-900);
  background:
    linear-gradient(180deg, #fefdf8 0%, var(--white) 100%);
}
.price-head { margin-bottom: 28px; }
.price-head h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  margin-bottom: 8px;
}
.price-head p {
  color: var(--ink-500);
  font-size: 0.9rem;
  line-height: 1.55;
}

.price-amount {
  display: flex; align-items: baseline; gap: 10px;
  padding: 24px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.price-from {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-400);
}
.price-from-after { letter-spacing: 0.04em; text-transform: none; font-size: 12px; }
.price-value {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 3rem);
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-pound {
  font-size: 0.65em;
  vertical-align: 0.15em;
  color: var(--gold-500);
  margin-right: 2px;
}

.price-features {
  display: flex; flex-direction: column;
  margin-bottom: 32px;
  flex-grow: 1;
}
.price-features li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 16px; height: 9px;
  border-left: 1.5px solid var(--gold-500);
  border-bottom: 1.5px solid var(--gold-500);
  transform: rotate(-45deg);
}

.price .btn { justify-content: center; }
.price .btn-outline:hover { background: var(--navy-900); color: var(--paper); }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--ink-500);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* =========================================================
   VOICES (Testimonials)
   ========================================================= */
.section-voices {
  background: var(--paper);
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.voice {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
  position: relative;
}
.voice:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.voice-stars { display: flex; gap: 2px; }
.voice-stars svg {
  width: 16px; height: 16px;
  fill: var(--gold-500);
}
.voice blockquote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-900);
  letter-spacing: -0.005em;
  font-weight: 400;
}
.voice figcaption {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.voice-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em;
}
.voice figcaption strong {
  display: block;
  color: var(--navy-900);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.voice figcaption small {
  color: var(--ink-500);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* =========================================================
   ENQUIRE
   ========================================================= */
.section-enquire {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(200, 169, 106, .14), transparent 50%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section-enquire::before {
  content: "";
  position: absolute;
  right: -150px; top: 100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 64, 114, .5), transparent 60%);
  pointer-events: none;
}
.enquire-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  position: relative;
}

.enquire-intro .section-title { margin-bottom: 24px; }
.enquire-lede {
  color: rgba(231, 236, 243, .78);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}

.enquire-contacts {
  display: flex; flex-direction: column; gap: 4px;
}
.enquire-contacts li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  align-items: center;
}
.enquire-contacts li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.enquire-contacts svg {
  width: 22px; height: 22px;
  fill: none; stroke: var(--gold-400);
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.enquire-contacts small {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(231, 236, 243, .5);
  margin-bottom: 4px;
}
.enquire-contacts a, .enquire-contacts span {
  color: var(--paper);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: color .25s var(--ease);
}
.enquire-contacts a:hover { color: var(--gold-400); }

/* Form */
.enquire-form {
  background: var(--paper);
  color: var(--ink-700);
  padding: clamp(32px, 4vw, 48px);
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.enquire-form::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(200, 169, 106, .2);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: -1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
  margin-bottom: 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-full { grid-column: 1 / -1; }

.field-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy-900);
}
.field-label em {
  color: var(--gold-500); font-style: normal; margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0 12px;
  font-size: 1rem;
  background: transparent;
  color: var(--ink-900);
  border: none;
  border-bottom: 1px solid rgba(11, 26, 51, .25);
  border-radius: 0;
  transition: border-color .25s var(--ease);
  font-family: var(--sans);
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--navy-900);
}
.field textarea { resize: vertical; min-height: 100px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-400); }

.select-wrap { position: relative; }
.select-wrap select { padding-right: 28px; cursor: pointer; }
.select-wrap svg {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  fill: none; stroke: var(--navy-900); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  pointer-events: none;
}

.field-error {
  font-size: 12px;
  color: #b3261e;
  min-height: 0;
  transition: min-height .2s var(--ease);
}
.field-error:not(:empty) { min-height: 16px; }

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-bottom-color: #b3261e;
}

.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  margin-top: 4px;
}
.field-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.checkbox-mark {
  width: 22px; height: 22px;
  border: 1px solid rgba(11, 26, 51, .3);
  border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
  margin-top: 1px;
  flex-shrink: 0;
}
.checkbox-mark svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--paper);
  stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transform: scale(0.6);
  transition: all .25s var(--ease);
}
.field-checkbox input:checked ~ .checkbox-mark {
  background: var(--navy-900);
  border-color: var(--navy-900);
}
.field-checkbox input:checked ~ .checkbox-mark svg {
  opacity: 1; transform: scale(1);
}
.field-checkbox span:last-child {
  font-size: 0.86rem;
  color: var(--ink-500);
  line-height: 1.55;
}
.field-checkbox span:last-child em { color: var(--gold-500); font-style: normal; }
.field-checkbox a {
  color: var(--navy-900);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px 28px;
}

.form-demo-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px;
  padding: 12px 16px;
  background: #fffbe6;
  border: 1px solid #f5e7b8;
  border-radius: 6px;
  font-size: 12px;
  color: #735a18;
  line-height: 1.5;
}
.form-demo-note svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-demo-note strong { font-weight: 600; }

.form-success {
  text-align: center;
  padding: 24px 12px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: fadeUp .6s var(--ease) both;
}
.form-success svg {
  width: 56px; height: 56px;
  fill: none; stroke: var(--gold-500);
  stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy-900);
  font-weight: 500;
}
.form-success p {
  color: var(--ink-500);
  font-size: 0.95rem;
}
.form-success a { color: var(--navy-900); font-weight: 500; }
.form.submitted > :not(.form-success) { display: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-950);
  color: rgba(231, 236, 243, .65);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
}
.logo-footer { color: var(--paper); margin-bottom: 24px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  color: var(--gold-400);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(231, 236, 243, .7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color .25s var(--ease);
}
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(231, 236, 243, .7);
}
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
}
.footer-base-inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-base small {
  font-size: 0.78rem;
  color: rgba(231, 236, 243, .45);
  letter-spacing: 0.02em;
}

/* =========================================================
   COOKIE NOTICE
   ========================================================= */
.cookie-notice {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--navy-950);
  color: rgba(231, 236, 243, .9);
  border: 1px solid rgba(200, 169, 106, .25);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  animation: cookieIn .5s var(--ease) both;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px 16px 22px;
}
.cookie-notice p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  flex-grow: 1;
}
.cookie-notice strong { color: var(--gold-400); font-weight: 500; }
.cookie-notice a { color: var(--paper); text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice a:hover { color: var(--gold-400); }
.cookie-accept {
  flex-shrink: 0;
  padding: 10px 18px;
  background: var(--gold-500);
  color: var(--navy-900);
  border: 0;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background .25s var(--ease);
}
.cookie-accept:hover { background: var(--gold-400); }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 540px) {
  .cookie-notice-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-accept { width: 100%; padding: 12px 18px; }
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
/* Reveal animations only run when JS is enabled.
   Without the .js class on <html>, content is fully visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: 0ms;
}
.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero::after, .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* Focus-visible — gold outline that fits the brand */
:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-bottom-color: var(--gold-500);
  box-shadow: 0 1px 0 0 var(--gold-500);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav, .header-actions { display: none; }
  .menu-toggle { display: inline-flex; }

  .approach-grid { grid-template-columns: 1fr; gap: 56px; }
  .enquire-grid { grid-template-columns: 1fr; gap: 56px; }

  .hero-marks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .hero-marks li:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 900px) {
  .practice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voices-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }

  .strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; padding: 48px 0; }
  .strip-item:nth-child(3)::before { display: none; }
  .strip-item { padding-right: 0; }

  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; min-height: 92vh; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-marks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 28px;
  }
  .hero-marks li { padding-right: 12px; min-width: 0; }
  .hero-marks li + li { padding-left: 12px; }
  .hero-marks li:nth-child(odd) { border-left: 0; padding-left: 0; }
  .hero-scroll { display: none; }

  .practice-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; gap: 24px; }

  .practice { padding: 36px 28px 32px; }
  .price { padding: 36px 28px 32px; }
  .voice { padding: 32px 28px 28px; }
  .partner-portrait { aspect-ratio: 16 / 9; }
  .partner-monogram { font-size: 56px; }
  .partner-body { padding: 24px 24px 28px; }

  .approach-card { padding: 44px 32px; }
  .approach-points li { grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; }

  .form-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .footer-base-inner { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .logo-mark { width: 38px; height: 38px; }
  .logo-name { font-size: 17px; }
  .logo-sub { font-size: 9px; letter-spacing: 0.18em; }

  .btn { padding: 14px 22px; font-size: 13px; }
  .header-cta { padding: 10px 18px; }
}
