/* ==========================================================================
   Design Tokens & Variables
   ========================================================================== */
:root {
  --forest: #14332b;
  --forest-dark: #0c201a;
  --forest-soft: #f0f5f2;
  --forest-light: #e3ece6;
  --terracotta: #c85a32;
  --terracotta-hover: #b04b25;
  --sand: #dfb288;
  --sand-light: #f5ede4;
  --cream: #faf7f2;
  --paper: #ffffff;
  --ink: #1f2421;
  --ink-secondary: #4a544e;
  --muted: #717d75;
  --line: rgba(20, 51, 43, 0.08);
  --line-strong: rgba(20, 51, 43, 0.14);
  --shadow-sm: 0 2px 8px rgba(20, 51, 43, 0.04);
  --shadow-md: 0 12px 32px -4px rgba(20, 51, 43, 0.07);
  --shadow-lg: 0 24px 54px -8px rgba(20, 51, 43, 0.12);
  --shadow-glow: 0 16px 36px rgba(200, 90, 50, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --container: 1120px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1.5rem;
  top: -5rem;
  z-index: 50;
  padding: 0.8rem 1.4rem;
  background: var(--forest);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition);
}

.skip-link:focus {
  top: 1.5rem;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--terracotta);
  border-radius: var(--radius-full);
}

.lead {
  max-width: 58ch;
  margin-top: 1.25rem;
  color: var(--ink-secondary);
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.button-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: var(--shadow-glow);
}

.button-primary:hover {
  background: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(200, 90, 50, 0.32);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--paper);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: var(--transition);
}

.nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--forest);
  font-weight: 700;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 2px solid var(--paper);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.2;
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--ink-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links .button {
  min-height: 42px;
  padding: 0.6rem 1.35rem;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  background: var(--paper);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -5%;
  z-index: -1;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 178, 136, 0.2) 0%, rgba(250, 247, 242, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-note {
  max-width: 52ch;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.photo-lockup {
  position: relative;
}

.portrait {
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius-lg) - 6px);
  object-fit: cover;
  object-position: center top;
}

.mini-panel {
  position: absolute;
  right: -16px;
  bottom: -24px;
  width: min(88%, 340px);
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.mini-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--sand);
  font-size: 1.05rem;
}

.band {
  padding: clamp(64px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
}

.band-light {
  background: var(--paper);
}

.band-dark {
  border-top: none;
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.85);
}

.band-dark h2,
.band-dark h3 {
  color: white;
}

.band-dark .eyebrow {
  color: var(--sand);
}

.band-dark .lead {
  color: rgba(255, 255, 255, 0.85);
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.section-head p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.15rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.text-block {
  display: grid;
  gap: 1rem;
  max-width: 66ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.territory-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card span {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 800;
}

.card p {
  margin-top: 0.65rem;
  color: var(--ink-secondary);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.offer-panel {
  position: sticky;
  top: 110px;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
}

.offer-panel h3 {
  margin-bottom: 0.75rem;
  color: white;
}

.offer-panel .button {
  width: 100%;
  margin-top: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.pill-list span {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--sand-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.check-list {
  display: grid;
  gap: 1.1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 0.9rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-secondary);
}

.check-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.check-list li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: var(--radius-full);
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 1.25rem;
}

.soft-note {
  margin-top: 0.5rem;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 0.98rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: white;
}

.links-page {
  min-height: 100vh;
  padding: 2.2rem 0 3.5rem;
  background: radial-gradient(circle at 50% 0%, var(--sand-light) 0%, var(--cream) 60%);
}

.links-shell {
  width: min(calc(100% - 2rem), 600px);
  margin: 0 auto;
}

.profile {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding-bottom: 1.65rem;
  text-align: center;
}

.profile img {
  width: 116px;
  height: 116px;
  border: 4px solid var(--paper);
  border-radius: var(--radius-full);
  object-fit: cover;
  object-position: center 24%;
  box-shadow: var(--shadow-md);
}

.profile h1 {
  font-size: clamp(2.35rem, 5vw, 3.05rem);
  line-height: 1;
}

.profile p {
  max-width: 42ch;
  color: var(--ink-secondary);
  font-size: 1.05rem;
  line-height: 1.45;
}

.link-section {
  margin-top: 1.75rem;
}

.link-section h2 {
  margin-bottom: 0.85rem;
  padding-left: 0.25rem;
  color: var(--terracotta);
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-stack {
  display: grid;
  gap: 0.85rem;
}

.link-card {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

a.link-card:hover {
  border-color: var(--sand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.link-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--forest);
  font-size: 1.05rem;
}

.link-card small {
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-link {
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: var(--shadow-md);
}

.featured-link strong,
.featured-link small {
  color: white;
}

.featured-link small {
  color: rgba(255, 255, 255, 0.8);
}

a.featured-link:hover {
  border-color: var(--forest-dark);
  background: var(--forest-dark);
}

.link-card.is-muted {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  opacity: 0.75;
}

.badge-soon {
  flex: 0 0 auto;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.links-footer {
  padding: 3rem 0 1rem;
  text-align: center;
}

.links-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.links-footer a:hover {
  color: var(--forest);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    inset: 80px 1.25rem auto 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .offer-layout,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .offer-panel {
    position: static;
  }

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

  .territory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand small {
    display: none;
  }

  .mini-panel {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-box .button {
    width: 100%;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }

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

/* ==========================================================================
   Bold Visual Pass
   ========================================================================== */
body {
  background:
    linear-gradient(180deg, var(--forest-dark) 0 620px, var(--cream) 620px),
    var(--cream);
}

.site-header {
  background: rgba(12, 32, 26, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.brand,
.brand small,
.nav-links a,
.nav-toggle {
  color: white;
}

.brand small {
  opacity: 0.72;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .button-primary {
  background: var(--sand);
  color: var(--forest-dark);
  box-shadow: none;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  align-items: center;
  padding: clamp(64px, 9vw, 124px) 0 clamp(86px, 10vw, 140px);
  background:
    linear-gradient(135deg, rgba(192, 90, 48, 0.22), rgba(192, 90, 48, 0) 34%),
    radial-gradient(circle at 82% 16%, rgba(223, 178, 136, 0.22), transparent 32%),
    var(--forest-dark);
  color: rgba(255, 255, 255, 0.84);
}

.hero::before {
  inset: auto 0 0 auto;
  width: 46%;
  height: 62%;
  background: linear-gradient(135deg, transparent 0 50%, rgba(223, 178, 136, 0.14) 50% 100%);
}

.hero .eyebrow {
  color: var(--sand);
}

.hero .eyebrow::before {
  background: var(--sand);
}

.hero h1 {
  max-width: 11.5ch;
  color: white;
  font-size: clamp(3.35rem, 7vw, 6.4rem);
}

.hero .lead,
.hero-note {
  color: rgba(255, 255, 255, 0.76);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.hero .button-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.14);
}

.photo-lockup {
  isolation: isolate;
}

.photo-lockup::before {
  content: "";
  position: absolute;
  inset: 2rem -1.4rem -1.4rem 2rem;
  z-index: -1;
  border: 1px solid rgba(223, 178, 136, 0.52);
  border-radius: 34px;
}

.portrait {
  padding: 12px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}

.portrait img {
  border-radius: 24px;
}

.mini-panel {
  right: auto;
  left: -28px;
  bottom: -34px;
  background: var(--terracotta);
  color: white;
}

.mini-panel strong {
  color: white;
}

.band {
  border-top: none;
}

.band-light {
  background:
    linear-gradient(90deg, rgba(240, 245, 242, 0.88), rgba(255, 255, 255, 0.92)),
    var(--paper);
}

#problem {
  margin-top: -42px;
  border-radius: 34px 34px 0 0;
}

#service {
  background: var(--cream);
}

#process {
  background: var(--forest-soft);
}

#fit {
  background: var(--paper);
}

.section-head h2,
.text-block strong {
  color: var(--forest-dark);
}

.card {
  border-color: rgba(20, 51, 43, 0.11);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(20, 51, 43, 0.08);
}

.card span {
  border-radius: 999px;
  background: var(--terracotta);
  color: white;
}

.offer-panel {
  border: 1px solid rgba(20, 51, 43, 0.08);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 42%),
    var(--forest);
}

.offer-layout > .card {
  background: var(--paper);
}

.check-list li::before {
  background: var(--sand-light);
  color: var(--terracotta);
}

.soft-note {
  border-left: 0;
  border-radius: 24px;
  background: var(--sand-light);
}

.band-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 90, 50, 0.24), transparent 32%),
    var(--forest-dark);
}

.links-page {
  background:
    radial-gradient(circle at 50% -10%, rgba(223, 178, 136, 0.28), transparent 36%),
    linear-gradient(180deg, var(--forest-dark) 0 390px, var(--cream) 390px);
}

.profile h1,
.profile p {
  color: white;
}

.profile img {
  border-color: var(--sand);
}

.link-section h2 {
  color: var(--sand);
}

.link-card {
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(20, 51, 43, 0.08);
}

.featured-link {
  background:
    linear-gradient(135deg, rgba(223, 178, 136, 0.16), transparent 52%),
    var(--terracotta);
  border-color: var(--terracotta);
}

.link-card.is-muted {
  opacity: 1;
  background: rgba(255, 255, 255, 0.76);
}

@media (max-width: 900px) {
  body {
    background:
      linear-gradient(180deg, var(--forest-dark) 0 760px, var(--cream) 760px),
      var(--cream);
  }

  .nav-links {
    background: var(--forest-dark);
  }

  .mini-panel {
    left: 1rem;
    bottom: -28px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, var(--forest-dark) 0 880px, var(--cream) 880px),
      var(--cream);
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .photo-lockup::before {
    inset: 1rem -0.5rem -0.5rem 1rem;
  }

  .mini-panel {
    position: static;
    background: var(--terracotta);
  }
}

/* ==========================================================================
   Spacing & Alignment Pass
   ========================================================================== */
body {
  background:
    linear-gradient(180deg, var(--forest-dark) 0 560px, var(--cream) 560px),
    var(--cream);
}

.hero {
  min-height: auto;
  padding: clamp(54px, 6.5vw, 82px) 0 clamp(66px, 7vw, 96px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
}

.hero h1 {
  max-width: 12.4ch;
  font-size: clamp(2.85rem, 5.45vw, 5.15rem);
  line-height: 1.03;
}

.hero .lead {
  max-width: 54ch;
  margin-top: 1rem;
}

.hero-copy-stack {
  display: grid;
  gap: 0.55rem;
  max-width: 58ch;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.48;
}

.hero-actions {
  margin-top: 1.35rem;
}

.hero-note {
  margin-top: 1.15rem;
}

.photo-lockup {
  align-self: center;
  transform: translateY(6px);
}

.portrait {
  padding: 9px;
}

.portrait img {
  aspect-ratio: 4 / 4.75;
}

.mini-panel {
  bottom: -22px;
}

.band {
  padding: clamp(44px, 5.6vw, 72px) 0;
}

.compact-head {
  max-width: 1120px;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.compact-head h2 {
  max-width: none;
  text-wrap: balance;
}

.compact-head p {
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.45;
}

#problem {
  margin-top: -24px;
}

.section-head {
  margin-bottom: 1.55rem;
}

.two-col,
.offer-layout,
.split {
  gap: clamp(1.2rem, 3vw, 2rem);
}

.card-grid {
  gap: 1.1rem;
}

.card {
  padding: 1.55rem;
}

.offer-panel {
  padding: 1.75rem;
}

.check-list {
  gap: 0.8rem;
  margin-top: 1rem;
}

.check-list li {
  padding-bottom: 0.8rem;
}

.about-copy {
  gap: 0.9rem;
}

.cta-box {
  padding: 1.5rem 0;
}

.site-footer {
  padding: 2rem 0;
}

@media (max-width: 900px) {
  body {
    background:
      linear-gradient(180deg, var(--forest-dark) 0 760px, var(--cream) 760px),
      var(--cream);
  }

  .hero {
    padding: 44px 0 70px;
  }

  .hero h1 {
    max-width: 11.8ch;
    font-size: clamp(2.7rem, 10vw, 4.7rem);
  }

  .hero-copy-stack {
    max-width: 56ch;
    font-size: 1rem;
    line-height: 1.5;
  }

  .photo-lockup {
    transform: none;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, var(--forest-dark) 0 900px, var(--cream) 900px),
      var(--cream);
  }

  .hero {
    padding: 34px 0 54px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .hero-copy-stack {
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-size: 0.98rem;
    line-height: 1.46;
  }

  .band {
    padding: 42px 0;
  }

  .links-page {
    padding-top: 1.5rem;
    background:
      radial-gradient(circle at 50% -10%, rgba(223, 178, 136, 0.28), transparent 36%),
      linear-gradient(180deg, var(--forest-dark) 0 420px, var(--cream) 420px);
  }

  .profile img {
    width: 104px;
    height: 104px;
    object-position: center 24%;
  }

  .profile p {
    max-width: 34ch;
  }
}

/* ==========================================================================
   Mobile Hero Safety Override
   ========================================================================== */
@media (max-width: 700px) {
  body {
    background:
      linear-gradient(180deg, var(--forest-dark) 0 1120px, var(--cream) 1120px),
      var(--cream);
  }

  .hero {
    overflow: hidden;
    padding: 2.25rem 0 3rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
  }

  .hero-grid > * {
    min-width: 0;
  }

  .hero h1 {
    max-width: 9.8ch;
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero .lead,
  .hero-copy-stack {
    max-width: none;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-copy-stack {
    gap: 0.7rem;
  }

  .photo-lockup {
    width: min(100%, 390px);
    margin: 0 auto;
    transform: none;
  }

  .photo-lockup::before {
    inset: 0.8rem -0.45rem -0.45rem 0.8rem;
  }

  .portrait img {
    aspect-ratio: 4 / 4.35;
    object-position: center top;
  }

  .mini-panel {
    position: static;
    width: 100%;
    margin-top: 0.8rem;
    padding: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    max-width: 280px;
  }

  .hero-actions .button {
    width: 100%;
  }
}

/* ==========================================================================
   WordPress content templates
   ========================================================================== */
.container.narrow {
  max-width: 880px;
}

.content-page h1,
.post-card h2 {
  color: var(--forest);
}

.content-page h1 {
  max-width: 11ch;
  margin: 0.7rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.92;
}

.entry-content {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.entry-content > * + * {
  margin-top: 1.1rem;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.25rem;
  color: var(--forest);
  font-family: var(--serif);
  line-height: 1;
}

.entry-content h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.entry-content h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.entry-content a {
  color: var(--rust);
  font-weight: 800;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.35rem;
}

.featured-image {
  margin: 1.4rem 0 2rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(12, 48, 38, 0.12);
  box-shadow: 0 22px 50px rgba(12, 48, 38, 0.12);
}

.featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.post-card {
  min-height: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 48, 38, 0.08);
  box-shadow: 0 18px 40px rgba(12, 48, 38, 0.08);
}

.post-card a {
  display: grid;
  min-height: 100%;
  gap: 0.85rem;
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
}

.post-card span {
  width: fit-content;
  border-radius: 999px;
  background: var(--rust);
  color: #fff;
  padding: 0.38rem 0.68rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.post-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 0.98;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.navigation.pagination {
  margin-top: 2rem;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 48, 38, 0.16);
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
}

.nav-links .page-numbers.current {
  background: var(--forest);
  color: #fff;
}

@media (max-width: 900px) {
  .post-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .content-page h1 {
    max-width: 12ch;
  }

  .post-list {
    grid-template-columns: 1fr;
  }
}
