/* Langham Clinic — traditional English country practice */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap");

:root {
  /* Hunting green & country brass — gentleman practitioner */
  --forest: #1a2e24;
  --forest-deep: #0f1c16;
  --forest-mid: #243d31;
  --forest-soft: #3d5c4a;
  --sage: #6d7f6a;
  --sage-light: #a8b5a0;
  --sage-mist: #e8ebe4;
  --gold: #9a7b4f;
  --gold-soft: #c4a574;
  --gold-pale: #f3ebe0;
  --brass: #8b6914;
  --burgundy: #5c2e2e;
  --linen: #f3efe6;
  --linen-deep: #e5ddd0;
  --paper: #faf6ef;
  --ink: #1a1a16;
  --ink-soft: #3a3a34;
  --muted: #6b675c;
  --white: #fffcf7;
  --border: rgba(26, 46, 36, 0.12);
  --border-strong: rgba(26, 46, 36, 0.2);
  --shadow-xs: 0 1px 2px rgba(15, 28, 22, 0.05);
  --shadow-sm: 0 3px 12px rgba(15, 28, 22, 0.07);
  --shadow: 0 10px 32px rgba(15, 28, 22, 0.1);
  --shadow-lg: 0 22px 48px rgba(15, 28, 22, 0.14);
  --shadow-glow: 0 8px 28px rgba(26, 46, 36, 0.2);
  --radius: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --font: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-display: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --max: 1100px;
  --header-h: 88px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--linen);
  line-height: 1.75;
  font-size: 1.02rem;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(154, 123, 79, 0.06), transparent 50%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

/* —— Layout —— */
.container {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.section--paper {
  background: var(--paper);
}

.section--white {
  background: var(--white);
}

.section--linen {
  background: var(--linen);
}

.section--forest {
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(184, 149, 108, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(45, 107, 96, 0.35), transparent 55%);
  pointer-events: none;
}

.section--gold-mist {
  background:
    linear-gradient(180deg, var(--gold-pale) 0%, var(--linen) 100%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-header--center .section-label::before,
.section-header--center .section-label::after {
  width: 28px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
  font-variant: common-ligatures;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
}

.section-header {
  margin-bottom: 3.25rem;
  max-width: 38rem;
}

.section-header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 40rem;
}

.section-header--center .section-label {
  justify-content: center;
}

.section-header--center .section-lead {
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow 0.3s, background 0.3s;
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background:
    linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-soft) 50%, var(--gold) 80%, transparent);
  opacity: 0.55;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 246, 239, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand:hover {
  color: inherit;
}

.brand-logo,
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow:
    0 4px 14px rgba(14, 47, 42, 0.2),
    0 0 0 1px rgba(184, 149, 108, 0.22);
  background: var(--forest);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.brand:hover .brand-logo {
  transform: scale(1.04);
  box-shadow:
    0 6px 18px rgba(14, 47, 42, 0.28),
    0 0 0 1px rgba(184, 149, 108, 0.35);
}

.footer-logo {
  width: 52px;
  height: 52px;
  margin-bottom: 1.15rem;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(212, 184, 150, 0.3);
}

/* legacy text mark fallback */
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest-mid) 0%, var(--forest) 100%);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(14, 47, 42, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--forest);
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.62rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.28rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-top: 0.28rem;
}

.brand-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: none;
  padding: 0;
  border-radius: 0;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 0;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav a:hover,
.nav a.is-active {
  color: var(--forest);
  background: transparent;
  box-shadow: none;
  border-bottom-color: var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.45rem 0.85rem;
  border-radius: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.25s, border-color 0.25s;
}

.nav-dropdown > button:hover,
.nav-dropdown.is-open > button,
.nav-dropdown.is-current > button {
  color: var(--forest);
  background: transparent;
  box-shadow: none;
  border-bottom-color: var(--gold);
}

.nav-dropdown > button svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}

.nav-dropdown.is-open > button svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  box-shadow: none !important;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1.15;
}

.header-phone span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}

.header-phone strong {
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  place-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.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(-6.5px) rotate(-45deg);
}

/* —— Buttons (classic, not pill) —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn:hover {
  transform: none;
  color: inherit;
}

.btn-primary {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--forest-mid);
  color: var(--paper);
  border-color: var(--forest-mid);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  background: var(--paper);
  color: var(--forest);
  border-color: var(--border-strong);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--forest);
  background: var(--gold-pale);
}

.btn-gold {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
  box-shadow: none;
}

.btn-gold:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 252, 247, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 252, 247, 0.08);
  color: var(--paper);
  border-color: var(--gold-soft);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--border-strong);
}

.btn-ghost-dark:hover {
  border-color: var(--gold);
  color: var(--forest);
  background: var(--gold-pale);
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 0.9rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* —— HERO (split) —— */
.hero {
  position: relative;
  background: var(--linen);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: min(78vh, 720px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--forest);
  border: 1px solid var(--border-strong);
  outline: 1px solid rgba(154, 123, 79, 0.25);
  outline-offset: 4px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.25rem);
  background:
    linear-gradient(165deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-mid) 100%);
  color: var(--paper);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 36, 32, 0.35) 0%, transparent 35%);
  pointer-events: none;
}

.hero-float {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  right: 1.75rem;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-float-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0.85rem 1.05rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-strong);
  flex: 1;
  min-width: 130px;
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-float-card span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(196, 165, 116, 0.45);
  border-bottom: 1px solid rgba(196, 165, 116, 0.45);
  padding: 0.5rem 0;
  border-radius: 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.65rem;
  color: var(--gold-soft);
  width: fit-content;
}

.hero-badge::before {
  content: "❧";
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 0.95rem;
  color: var(--gold-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.55rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  max-width: 15ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}

.hero-lead {
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(250, 246, 239, 0.78);
  max-width: 32rem;
  margin-bottom: 2rem;
  font-weight: 400;
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  white-space: nowrap;
}

.hero-proof-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-soft);
  flex-shrink: 0;
}

/* —— Trust marquee —— */
.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2.75rem;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--forest-soft);
  flex-shrink: 0;
}

/* —— Feature cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.card {
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s, border-color 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.card:hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.card:hover::before {
  opacity: 1;
}

.card-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-pale);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  transition: color 0.35s;
}

.card:hover .card-num {
  color: var(--gold-soft);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--sage-mist);
  color: var(--forest-soft);
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  transition: background 0.35s, color 0.35s;
}

.card:hover .card-icon {
  background: var(--forest);
  color: var(--gold-soft);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 550;
  color: var(--forest);
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
  line-height: 1.65;
  font-weight: 300;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 550;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--forest);
  letter-spacing: 0.01em;
  transition: gap 0.25s;
}

.card-link:hover {
  gap: 0.65rem;
  color: var(--gold);
}

/* —— Split layouts —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.split--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  background: var(--linen-deep);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.split:hover .split-media img {
  transform: scale(1.03);
}

.split-media-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
  z-index: 1;
}

.split-media-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 252, 248, 0.96);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 230px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.split-media-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.split-media-badge span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.split-body .section-title {
  margin-bottom: 1.2rem;
}

.split-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.75;
}

.split-body p:last-of-type {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 400;
}

.check-list .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sage-mist);
  color: var(--forest-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.check-list .check svg {
  width: 13px;
  height: 13px;
}

/* —— Who we treat —— */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.who-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.who-item:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--sage-light);
}

.who-item .who-icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.who-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 550;
  margin-bottom: 0.25rem;
}

.who-item span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
}

/* —— Testimonial —— */
.testimonial-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.75rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--forest-soft), var(--gold));
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.7;
  color: var(--gold-pale);
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  pointer-events: none;
  font-weight: 500;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  line-height: 1.5;
  color: var(--forest);
  font-style: italic;
  font-weight: 400;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-pale), var(--sage-light));
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.testimonial-meta strong {
  display: block;
  color: var(--forest);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-meta span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* —— Credentials —— */
.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cred {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.6rem 1.25rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(6px);
}

.cred:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 184, 150, 0.35);
  transform: none;
}

.cred strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 550;
  margin-bottom: 0.4rem;
  line-height: 1.3;
  color: var(--white);
}

.cred span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  font-weight: 300;
}

.creds-note {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* —— Page hero (inner) —— */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 5vw, 4.25rem);
  background: var(--forest);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 30%, rgba(184, 149, 108, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(45, 107, 96, 0.4), transparent 50%);
  pointer-events: none;
}

.page-hero--image {
  background-size: cover;
  background-position: center;
}

.page-hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 36, 32, 0.92) 0%, rgba(14, 47, 42, 0.78) 55%, rgba(14, 47, 42, 0.55) 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.35rem;
  font-weight: 400;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-soft);
}

.breadcrumb span[aria-hidden] {
  opacity: 0.4;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.page-hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  line-height: 1.7;
  font-weight: 300;
}

/* —— Prose —— */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 550;
  color: var(--forest);
  margin: 2.5rem 0 0.9rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-mid);
  margin: 1.85rem 0 0.6rem;
}

.prose p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
}

.prose > p:first-child strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
  color: var(--forest);
}

.prose ul,
.prose ol {
  margin: 0 0 1.35rem 1.2rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.5rem;
  padding-left: 0.3rem;
  line-height: 1.65;
}

.prose strong {
  color: var(--ink);
  font-weight: 550;
}

.letter-signoff {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.letter-signoff .name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--forest);
  margin-top: 0.85rem;
  font-weight: 550;
}

.letter-signoff .creds-line {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest-mid), var(--forest));
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 47, 42, 0.2);
}

.step h3 {
  font-size: 1.12rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
  font-weight: 550;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.step p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
  font-weight: 300;
  line-height: 1.65;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  align-items: start;
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 550;
  color: var(--forest);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-row {
  display: flex;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-of-type {
  border-bottom: none;
}

.contact-row:first-of-type {
  padding-top: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-mist);
  color: var(--forest-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-row strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-row a,
.contact-row p {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0;
}

.contact-row a:hover {
  color: var(--forest-soft);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--linen-deep);
  min-height: 380px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.map-fallback {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
  background: var(--paper);
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-weight: 400;
}

.map-fallback a {
  text-decoration: none;
  font-weight: 550;
}

.directions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  margin-top: 2.25rem;
}

.direction-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s;
}

.direction-card:hover {
  box-shadow: var(--shadow-sm);
}

.direction-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 1.1rem;
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.direction-card ol {
  margin-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.55;
}

.direction-card li {
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}

/* —— Links —— */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.link-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.85rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.link-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--forest-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.link-card:hover {
  transform: none;
  box-shadow: var(--shadow);
  border-color: transparent;
  color: inherit;
}

.link-card:hover::after {
  transform: scaleX(1);
}

.link-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--sage-mist), var(--gold-pale));
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  font-family: var(--font);
}

.link-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  font-weight: 550;
}

.link-card p {
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
  font-weight: 300;
  line-height: 1.55;
}

.link-card .go {
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--forest-soft);
}

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 30rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 1.85rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 149, 108, 0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.75rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-mark,
.footer-brand .footer-logo {
  margin-bottom: 1.15rem;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  max-width: 28ch;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 1.15rem;
  font-weight: 600;
}

.footer-col ul {
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-col address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* —— Highlight —— */
.highlight-box {
  background: linear-gradient(135deg, var(--sage-mist), var(--gold-pale));
  border: 1px solid rgba(45, 107, 96, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.5rem;
  margin: 1.75rem 0;
}

.highlight-box p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 400;
  line-height: 1.7;
}

.highlight-box strong {
  color: var(--forest);
}

/* —— Content layout —— */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.75rem;
  align-items: start;
}

.sidebar-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 1.25rem);
  background-image: linear-gradient(180deg, var(--gold-pale) 0%, var(--paper) 28%);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.65rem;
  font-weight: 550;
}

.sidebar-card > p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 300;
  line-height: 1.55;
}

.sidebar-card .btn {
  width: 100%;
}

.sidebar-meta {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

.sidebar-meta strong {
  display: block;
  color: var(--forest);
  margin-bottom: 0.25rem;
  font-weight: 550;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sidebar-meta a {
  text-decoration: none;
  font-weight: 550;
}

/* —— Pills —— */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.2s, background 0.2s;
}

.pill:hover {
  border-color: var(--sage);
  background: var(--sage-mist);
}

/* —— Decorative —— */
.deco-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 1.25rem;
}

/* —— Mobile nav —— */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--paper);
  padding: 0.85rem 0 1.35rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  background: none;
  font: inherit;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
}

.mobile-nav a.is-active {
  color: var(--forest);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

/* —— Utilities —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

/* —— Responsive —— */
@media (min-width: 960px) {
  .header-phone {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .creds,
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, transparent 40%, rgba(10, 36, 32, 0.5) 100%);
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .nav,
  .header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .split,
  .split--reverse .split-media {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-media {
    order: 0;
  }

  .contact-grid,
  .directions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  .section {
    padding: 3.75rem 0;
  }

  .card-grid,
  .creds,
  .who-grid,
  .links-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    padding: 1rem 0 1.5rem;
  }

  .hero-shell {
    border-radius: var(--radius-lg);
  }

  .hero-copy {
    padding: 2rem 1.5rem 2.25rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-float {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .hero-float-card {
    min-width: 0;
    padding: 0.7rem 0.85rem;
  }

  .hero-float-card strong {
    font-size: 1.1rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .testimonial-quote-mark {
    font-size: 5rem;
    left: 1rem;
    top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .split:hover .split-media img {
    transform: none;
  }
}

/* ===== Special visual upgrades ===== */

/* Scroll reveal — only when JS enables .js-ready */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Bento gallery */
.gallery-section {
  overflow: hidden;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.9rem;
}
.bento-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-sm);
  background: var(--linen-deep);
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.bento-item:hover img {
  transform: scale(1.06);
}
.bento-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(10, 36, 32, 0.75), transparent);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: translateY(4px);
  opacity: 0.95;
  transition: transform 0.35s;
}
.bento-item:hover figcaption {
  transform: translateY(0);
}
.bento-item--tall {
  grid-row: span 2;
}
.bento-item--wide {
  grid-column: span 2;
}
/* layout: tall left, wide top right, two small, wide bottom */
.bento-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.bento-item:nth-child(2) { grid-column: 2 / span 2; grid-row: 1; }
.bento-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.bento-item:nth-child(4) { grid-column: 4; grid-row: 2; }
.bento-item:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }

/* Photo cards */
.card--photo {
  padding: 0;
  overflow: hidden;
}
.card--photo::before {
  display: none;
}
.card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.card--photo:hover .card-photo img {
  transform: scale(1.05);
}
.card-photo .card-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  z-index: 1;
}
.card-body {
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card--photo h3 {
  margin-bottom: 0.55rem;
}
.card--photo .card-link {
  margin-top: 1.1rem;
}

/* Panorama full-bleed */
.panorama {
  position: relative;
  min-height: clamp(280px, 42vw, 420px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.panorama img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.panorama-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(to top, rgba(10, 36, 32, 0.82) 0%, rgba(10, 36, 32, 0.2) 70%, transparent);
  color: var(--white);
}
.panorama-quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  max-width: 28ch;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.95);
}
.panorama-attr {
  font-size: 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Who cards with images */
.who-grid--images {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}
.who-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.who-card:hover {
  transform: none;
  box-shadow: var(--shadow);
}
.who-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--linen-deep);
}
.who-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.who-card:hover .who-card-img img {
  transform: scale(1.06);
}
.who-card-body {
  padding: 1.15rem 1.2rem 1.3rem;
}
.who-card-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  font-weight: 550;
  margin-bottom: 0.2rem;
}
.who-card-body span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
}

/* Rich testimonial */
.testimonial--rich {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.testimonial-media {
  min-height: 100%;
  overflow: hidden;
}
.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.testimonial-content {
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial--rich .testimonial-quote-mark {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
}
.testimonial--rich blockquote {
  margin-top: 1.5rem;
}

/* Stacked media */
.split-media--stack {
  overflow: visible;
  box-shadow: none;
  background: transparent;
  aspect-ratio: auto;
}
.split-media--stack .stack-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.split-media--stack .stack-float {
  position: absolute;
  width: 48%;
  bottom: -1.5rem;
  right: -1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--paper);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  z-index: 2;
}
.split-media--stack .split-media-frame {
  display: none;
}

/* CTA with image */
.cta-band--image {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background: var(--forest-deep);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: saturate(0.85);
}
.cta-band--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 36, 32, 0.88), rgba(14, 47, 42, 0.82));
  pointer-events: none;
}
.cta-band--image .container {
  position: relative;
  z-index: 1;
}
.cta-band--image h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-band--image p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 30rem;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  font-weight: 300;
}

/* Inline page media */
.page-media-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}
.page-media-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  min-height: 200px;
  max-height: 280px;
}
.page-media-strip--triple {
  grid-template-columns: 1fr 1fr 1fr;
}
.page-media-strip--triple img {
  max-height: 220px;
  aspect-ratio: 1;
}

.figure-pull {
  margin: 1.75rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.figure-pull img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.figure-pull figcaption {
  padding: 0.85rem 1.15rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--border);
  font-weight: 400;
}

.about-visual {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.about-visual img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.about-visual img:first-child {
  aspect-ratio: 4 / 3;
}
.about-visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.about-visual-row img {
  aspect-ratio: 1;
}

@media (max-width: 1024px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .bento-item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
  .bento-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .bento-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-item:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-item:nth-child(5) { grid-column: 2; grid-row: 3; }
  .bento-item--wide { grid-column: auto; }
  .who-grid--images {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial--rich {
    grid-template-columns: 1fr;
  }
  .testimonial-media {
    max-height: 240px;
  }
  .testimonial-media img {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .bento-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }
  .bento-item--tall {
    grid-row: span 1;
  }
  .who-grid--images {
    grid-template-columns: 1fr;
  }
  .split-media--stack .stack-float {
    width: 42%;
    bottom: -0.75rem;
    right: 0.5rem;
    border-width: 3px;
  }
  .page-media-strip,
  .page-media-strip--triple {
    grid-template-columns: 1fr;
  }
  .page-media-strip img,
  .page-media-strip--triple img {
    max-height: 220px;
  }
}

/* —— Richard portrait —— */
.portrait-card {
  margin: -0.35rem -0.35rem 1.35rem;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow-sm);
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.portrait-card-meta {
  padding: 1rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: var(--white);
  text-align: center;
}
.portrait-card-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 550;
  color: var(--white);
  margin-bottom: 0.2rem;
  text-transform: none;
  letter-spacing: -0.01em;
}
.portrait-card-meta span {
  display: block;
  font-size: 0.82rem;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.portrait-card-meta .portrait-role {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
}

.sidebar-card--portrait {
  background-image: none;
  padding-top: 1.15rem;
}

.letter-signoff--with-photo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.signoff-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(14,47,42,0.15), 0 0 0 3px var(--paper), 0 0 0 4px var(--gold-soft);
}

.split-media--portrait {
  aspect-ratio: 1;
}
.split-media--portrait img {
  object-position: center 15%;
}

.card--photo .card-photo img[src*="richard"] {
  object-position: center 12%;
}

.page-hero--portrait {
  background:
    radial-gradient(ellipse 70% 80% at 85% 30%, rgba(184, 149, 108, 0.15), transparent 50%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(45, 107, 96, 0.4), transparent 50%),
    var(--forest);
  overflow: hidden;
}
.page-hero--portrait::before,
.page-hero--portrait::after {
  display: none;
}
.page-hero-portrait-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.page-hero-photo {
  justify-self: end;
  width: min(100%, 280px);
  position: relative;
}
.page-hero-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 0 4px rgba(212, 184, 150, 0.45),
    0 0 0 12px rgba(255,255,255,0.06);
}
.page-hero-photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 150, 0.25);
  pointer-events: none;
}
@media (max-width: 820px) {
  .page-hero-portrait-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero-photo {
    justify-self: center;
    order: -1;
    width: min(100%, 200px);
  }
  .page-hero--portrait .breadcrumb {
    justify-content: center;
  }
  .page-hero--portrait h1 {
    max-width: none;
  }
  .page-hero--portrait p {
    margin-inline: auto;
  }
}

/* ===== Heritage / old-fashioned refinements ===== */

.header-phone span {
  font-family: var(--font-ui);
  letter-spacing: 0.12em;
}
.header-phone strong {
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu-toggle {
  border-radius: 2px;
  border-color: var(--border-strong);
}

.trust-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.trust-bar-inner {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  gap: 0.75rem 2rem;
}
.trust-item svg {
  color: var(--gold);
}

.bento-item {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.bento-item figcaption {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.card-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-pale);
}
.card h3,
.card--photo h3 {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.card p,
.card--photo p {
  font-size: 0.95rem;
  line-height: 1.7;
}
.card-link {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.who-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
}
.who-card:hover {
  transform: none;
  border-color: var(--gold);
}
.who-card-body strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}
.who-card-body span {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.82rem;
}

.testimonial {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  height: 2px;
  background: var(--gold);
}
.testimonial-quote-mark {
  color: var(--gold-pale);
  font-style: italic;
}
.testimonial blockquote {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.split-media {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
}
.split-media-badge {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--paper);
}
.split-media-badge strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.cred {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.cred strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.contact-card,
.direction-card,
.sidebar-card,
.link-card,
.map-wrap,
.step {
  border-radius: var(--radius);
  border-color: var(--border-strong);
}

.step-num {
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-soft);
  font-family: var(--font-display);
  box-shadow: none;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

.prose {
  font-size: 1.02rem;
}
.prose h2 {
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.45rem;
}
.prose p {
  line-height: 1.85;
}

.highlight-box {
  background: var(--gold-pale);
  border: 1px solid rgba(154, 123, 79, 0.25);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  font-style: italic;
}

.pill {
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panorama-quote {
  font-style: italic;
  letter-spacing: 0.01em;
}
.panorama-attr {
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.page-hero h1 {
  font-weight: 500;
  letter-spacing: 0.01em;
}
.page-hero p {
  font-style: italic;
}

.portrait-card {
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
}
.portrait-card-meta strong {
  letter-spacing: 0.02em;
}
.portrait-card-meta span {
  font-family: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.portrait-card-meta .portrait-role {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.8rem;
  font-style: italic;
}

.letter-signoff .name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-col h4 {
  font-family: var(--font-ui);
  letter-spacing: 0.16em;
}
.footer-brand strong {
  letter-spacing: 0.02em;
}
.site-footer {
  border-top: 3px double rgba(196, 165, 116, 0.35);
}

/* Classic double-rule ornament under section titles when centered */
.section-header--center .section-title {
  position: relative;
  padding-bottom: 0.35rem;
}

/* Ornamental flourishes on CTA */
.cta-band h2,
.cta-band--image h2 {
  font-weight: 500;
  letter-spacing: 0.02em;
  font-style: italic;
}
.cta-band p,
.cta-band--image p {
  font-style: italic;
}

/* Stacked float image more traditional frame */
.split-media--stack .stack-float {
  border: 3px solid var(--paper);
  outline: 1px solid var(--border-strong);
  border-radius: var(--radius);
}

.check-list .check {
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
}

.brand-name {
  letter-spacing: 0.02em;
}
.brand-sub {
  font-family: var(--font-ui);
}

/* Slightly less aggressive modern hover zooms */
.bento-item:hover img,
.card--photo:hover .card-photo img,
.who-card:hover .who-card-img img,
.split:hover .split-media img {
  transform: scale(1.02);
}

@media (max-width: 640px) {
  .hero-shell {
    outline-offset: 2px;
  }
}

/* ===== Final polish pass ===== */

::selection {
  background: rgba(154, 123, 79, 0.28);
  color: var(--forest-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

a:focus-visible,
.btn:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Header refinements */
.header-inner {
  min-height: 84px;
}
.header-phone span {
  color: var(--muted);
}
.header-phone strong {
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* Hero float cards — classic labels */
.hero-float-card strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.hero-float-card span {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-proof-item {
  font-family: var(--font-ui);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.hero-proof-item svg {
  color: var(--gold-soft);
}

/* Gallery captions cleaner */
.bento-item figcaption {
  background: linear-gradient(to top, rgba(15, 28, 22, 0.82), transparent);
}

/* Credentials section labels on dark */
.section--forest .section-label {
  color: var(--gold-soft);
}
.section--forest .section-label::before,
.section--forest .section-label::after {
  background: var(--gold-soft);
}
.section--forest .section-title {
  color: var(--paper);
}
.section--forest .section-lead {
  color: rgba(250, 246, 239, 0.65);
}

/* Contact labels — brass uppercase */
.contact-row strong {
  color: var(--gold);
  font-family: var(--font-ui);
}

/* Sidebar sticky polish */
.sidebar-card {
  background: var(--paper);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Links page icons classic */
.link-card-icon {
  border-radius: var(--radius);
  background: var(--gold-pale);
  border: 1px solid rgba(154, 123, 79, 0.25);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.link-card .go {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mobile nav more traditional */
.mobile-nav a {
  font-family: var(--font-ui);
  letter-spacing: 0.04em;
  padding: 0.95rem 0;
}
.mobile-nav-cta .btn {
  width: 100%;
}

/* Better image defaults */
img {
  image-rendering: auto;
}

/* Subtle page top grain via body already set */

/* Footer address links */
.footer-col address a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 500;
}
.footer-col address a:hover {
  color: var(--paper);
}

/* Breadcrumb classic */
.breadcrumb {
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Direction cards */
.direction-card h3 {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.direction-card ol {
  font-family: var(--font);
}

/* Ensure button icons don't force modern look when present */
.btn svg {
  display: none;
}

/* Hero shell outline polish on cream bg */
.hero {
  padding-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

/* Testimonial media traditional */
.testimonial-media img {
  filter: saturate(0.92);
}

/* Signoff photo ring brass */
.signoff-photo {
  box-shadow: 0 4px 16px rgba(15,28,22,0.12), 0 0 0 3px var(--paper), 0 0 0 4px var(--gold);
}

.page-hero-photo img {
  box-shadow:
    0 18px 40px rgba(0,0,0,0.32),
    0 0 0 3px rgba(196, 165, 116, 0.55),
    0 0 0 10px rgba(255,252,247,0.06);
}

/* Card photo object-fit polish */
.card-photo img {
  filter: saturate(0.95);
}

/* Reduce motion already handled */

/* Print */
@media print {
  .site-header,
  .mobile-nav,
  .menu-toggle,
  .cta-band,
  .cta-band--image {
    display: none !important;
  }
  body {
    background: white;
    color: black;
  }
  a {
    color: black;
    text-decoration: underline;
  }
}

.hero-float-card strong {
  font-size: 1.15rem !important;
}
.hero-float {
  gap: 0.55rem;
}
