/* ==========================================================================
   DOGPAPA — Stylesheet v2
   Premium Field Sports · Editorial · Type-Led
   ========================================================================== */

/* Design tokens */
:root {
  /* Palette */
  --ocean: #4E8FB5;
  --ocean-deep: #28607F;
  --terra: #C4622D;
  --sand: #C4A47C;
  --stone: #18252E;
  --stone-80: rgba(24, 37, 46, 0.8);
  --stone-60: rgba(24, 37, 46, 0.6);
  --stone-40: rgba(24, 37, 46, 0.4);
  --stone-30: rgba(24, 37, 46, 0.3);
  --stone-15: rgba(24, 37, 46, 0.15);
  --stone-08: rgba(24, 37, 46, 0.08);
  --cream: #F4EDE0;
  --cream-dark: #E8DFCD;
  --paper: #FDFAF5;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --font-serif: 'DM Sans', Georgia, serif;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 400ms;
  --duration-slow: 800ms;

  /* Layout */
  --max-width: 1440px;
  --max-width-content: 780px;
  --max-width-narrow: 580px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--stone);
  background: var(--cream);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--stone);
  color: var(--cream);
}

/* ==========================================================================
   Typography System
   ========================================================================== */

.display-xxl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4.5rem, 2rem + 12vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--stone);
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 1.5rem + 8vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--stone);
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 1rem + 5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 1rem + 2.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 0.9rem + 1.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-60);
}

.lead {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  line-height: 1.45;
  color: var(--stone-80);
  font-weight: 300;
  max-width: 640px;
}

p {
  color: var(--stone-80);
  max-width: var(--max-width-content);
}

.body-large {
  font-size: 1.125rem;
  line-height: 1.65;
}

.body-small {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==========================================================================
   Layout Primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container-narrow {
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding-top: clamp(5rem, 8vw + 2rem, 10rem);
  padding-bottom: clamp(5rem, 8vw + 2rem, 10rem);
}

.section-tight {
  padding-top: clamp(3rem, 4vw + 1rem, 5rem);
  padding-bottom: clamp(3rem, 4vw + 1rem, 5rem);
}

/* ==========================================================================
   Navigation — bold, confident, present
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 237, 224, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--duration) var(--ease);
}

.nav--scrolled {
  background: rgba(244, 237, 224, 0.96);
  border-bottom: 1px solid var(--stone-08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  transition: padding var(--duration) var(--ease);
}

.nav--scrolled .nav__inner {
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: transform var(--duration) var(--ease);
  text-decoration: none;
}

.nav__logo:hover {
  transform: translateX(2px);
}

.nav__logo img {
  height: 68px;
  width: auto;
  transition: height var(--duration) var(--ease);
}

.nav--scrolled .nav__logo img {
  height: 52px;
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all var(--duration) var(--ease);
}

.nav__logo-the {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  color: var(--stone);
  opacity: 0.8;
  line-height: 1;
  transition: font-size var(--duration) var(--ease);
}

.nav--scrolled .nav__logo-the {
  font-size: 0.6875rem;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 3.25rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  line-height: 0.9;
  transition: font-size var(--duration) var(--ease);
}

.nav--scrolled .nav__logo-text {
  font-size: 2.125rem;
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.36em;
  color: var(--stone-60);
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity var(--duration) var(--ease);
}

.nav--scrolled .nav__logo-tagline {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 767px) {
  .nav__logo img {
    height: 44px;
  }
  .nav__logo-the {
    font-size: 0.625rem;
  }
  .nav__logo-text {
    font-size: 1.875rem;
  }
  .nav__logo-tagline {
    display: none;
  }
  .nav--scrolled .nav__logo img {
    height: 36px;
  }
  .nav--scrolled .nav__logo-the {
    font-size: 0.5625rem;
  }
  .nav--scrolled .nav__logo-text {
    font-size: 1.5rem;
  }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-80);
  position: relative;
  padding: 0.5rem 0;
}

.nav__link:hover {
  color: var(--stone);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--terra);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
  }
}

/* Mobile menu */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  gap: 7px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--stone);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__links { display: flex; }
}

@media (max-width: 767px) {
  .nav__logo img { height: 36px; }
  .nav__logo-the { font-size: 0.5625rem; }
  .nav__logo-text { font-size: 1.5rem; }
  .nav__links { display: none; }

  /* Disable backdrop-filter when open — it creates a containing block that
     traps the fixed overlay inside the thin header bar. */
  .nav--open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }

  .nav--open .nav__links {
    display: flex;
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem;
    z-index: 99;
  }
  .nav--open .nav__link {
    font-size: 1.5rem;
    letter-spacing: 0.14em;
    color: var(--stone);
  }
  .nav--open .nav__cta {
    display: inline-flex;
    font-size: 1rem;
    padding: 1rem 2.5rem;
  }
  .nav--open .nav__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav--open .nav__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.0625rem 2.125rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 0;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--stone);
  color: var(--cream);
  border-color: var(--stone);
}

.btn--primary:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--stone);
  border-color: var(--stone);
}

.btn--secondary:hover {
  background: var(--stone);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 224, 0.3);
}

.btn--ghost:hover {
  background: var(--cream);
  color: var(--stone);
  border-color: var(--cream);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 0.875rem;
}

.btn__icon {
  transition: transform var(--duration) var(--ease);
}

.btn:hover .btn__icon {
  transform: translateX(4px);
}

/* ==========================================================================
   HERO — the moment
   ========================================================================== */

.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding-top: 140px;
  padding-bottom: 100px;
  overflow: hidden;
}

/* Ambient background texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 82% 20%, rgba(196, 98, 45, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 85%, rgba(78, 143, 181, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.hero__content {
  max-width: 720px;
  z-index: 2;
}

/* Real hero image — 3:4 portrait, editorial framing */
.hero__image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.5s forwards;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  line-height: 0;
  max-width: 640px;
  justify-self: center;
}

/* Terra frame accent — offset up-left behind image (mat style) */
.hero__image-wrap::after {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1.5px solid var(--terra);
  z-index: -1;
  pointer-events: none;
}

/* Subtle gradient overlay for depth */
.hero__image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 37, 46, 0) 55%,
    rgba(24, 37, 46, 0.18) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Small editorial caption overlaid on image */
.hero__image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.hero__image-caption::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cream);
  opacity: 0.8;
}

@media (min-width: 1024px) {
  .hero__image-wrap {
    justify-self: end;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__image-wrap::after {
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
  }
}

/* Frame accent — editorial detail */
.hero__image-wrap::after {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid var(--terra);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero__image-wrap::after {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }
}

/* Small credential overlay on image */
.hero__image-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--cream);
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero__image-caption::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cream);
  opacity: 0.8;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 2.25rem);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero__tagline-line {
  width: clamp(40px, 6vw, 80px);
  height: 1px;
  background: var(--stone-40);
}

.hero__tagline-text {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone-60);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 1.2rem + 8vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.4s forwards;
}

.hero__title-line-2 {
  color: var(--terra);
  display: block;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__lead {
  font-size: clamp(1.125rem, 0.95rem + 0.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--stone-80);
  font-weight: 300;
  max-width: 520px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero trust line — five-star glyph + reassurance + risk reversal */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--stone-60);
  font-weight: 500;
  max-width: 480px;
}

.hero__trust-stars {
  color: var(--terra);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.hero__trust-dot {
  color: var(--stone-30);
}

/* Decorative dog silhouette — deprecated (using real hero image now) */
.hero__dog-mark {
  display: none;
}

/* Marquee */
.hero__marquee {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-08);
}

.hero__marquee-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--stone-40);
  text-transform: uppercase;
}

.hero__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.hero__marquee-item::after {
  content: '·';
  color: var(--terra);
  margin-left: 3rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .hero__marquee {
    bottom: 1.5rem;
  }
}

/* Animation utilities */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Pain section — "Sound familiar?" — addresses persona pains directly
   ========================================================================== */

.pain {
  background: var(--cream);
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  border-top: 1px solid var(--stone-08);
}

.pain__header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.pain__header .eyebrow {
  margin-bottom: 1.5rem;
  display: inline-block;
}

.pain__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--stone);
  max-width: 900px;
  margin: 0 auto;
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pain__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pain__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain__item {
  padding: 2rem 2rem 2rem 2.25rem;
  background: var(--paper);
  border-left: 3px solid var(--terra);
  position: relative;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.pain__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px var(--stone-15);
}

.pain__quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 0.9rem + 0.8vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ==========================================================================
   Validation — "It's not your dog. It's that nobody trained you."
   ========================================================================== */

.validation {
  background: var(--stone);
  color: var(--cream);
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.validation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(196, 98, 45, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(78, 143, 181, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.validation__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 1.5rem + 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 auto 2.5rem;
  max-width: 1000px;
  position: relative;
}

.validation__accent {
  color: var(--terra);
  display: block;
}

.validation__body {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.8);
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* ==========================================================================
   Chapter divider — a cinematic moment
   ========================================================================== */

.chapter {
  background: var(--stone);
  color: var(--cream);
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  overflow: hidden;
}

.chapter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.chapter__text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 2vw, 2.75rem);
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 900px;
}

/* ==========================================================================
   Proof — giant stats, magazine feel
   ========================================================================== */

.proof {
  background: var(--cream);
  border-top: 1px solid var(--stone-08);
  border-bottom: 1px solid var(--stone-08);
}

.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .proof__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.proof__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--terra);
}

.proof__figure {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2rem + 4vw, 6rem);
  line-height: 0.9;
  color: var(--stone);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.proof__label {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-60);
  font-weight: 500;
}

.proof__body {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--stone-80);
  margin-top: 0.5rem;
  max-width: 300px;
}

/* ==========================================================================
   Manifesto — the big statement
   ========================================================================== */

.manifesto {
  background: var(--cream);
  padding-top: clamp(6rem, 10vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 12rem);
  position: relative;
  overflow: hidden;
}

.manifesto__eyebrow {
  margin-bottom: 3rem;
  text-align: center;
}

.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.manifesto__accent {
  color: var(--terra);
}

.manifesto__attribution {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-60);
}

/* ==========================================================================
   Method — editorial, not a generic 3-column
   ========================================================================== */

.method {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.method__header {
  max-width: 900px;
  margin-bottom: clamp(4rem, 6vw, 6rem);
}

.method__header-eyebrow {
  margin-bottom: 1.5rem;
}

.method__header-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.method__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--stone-15);
  align-items: start;
}

.method__item:last-child {
  border-bottom: 1px solid var(--stone-15);
}

@media (min-width: 768px) {
  .method__item {
    grid-template-columns: auto 1fr 1fr;
    gap: 4rem;
  }
}

.method__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  line-height: 0.9;
  color: var(--terra);
  letter-spacing: -0.01em;
}

.method__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.2vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--stone);
}

.method__body {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-80);
  max-width: 480px;
}

/* ==========================================================================
   Meet Shawn — a proper editorial spread
   ========================================================================== */

.meet {
  background: var(--stone);
  color: var(--cream);
  overflow: hidden;
}

.meet__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .meet__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.meet__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, var(--stone) 0%, var(--ocean-deep) 100%);
  overflow: hidden;
}

.meet__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.meet__eyebrow {
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.meet__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2rem;
}

.meet__body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(244, 237, 224, 0.8);
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.meet__signature {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--sand);
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

/* ==========================================================================
   Connection Moment — cinematic landscape image + pull quote
   ========================================================================== */

.moment {
  background: var(--cream);
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  position: relative;
}

.moment__image-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.moment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle frame accent */
.moment__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--stone-08);
  pointer-events: none;
}

.moment__caption {
  max-width: 720px;
  margin: clamp(2.5rem, 4vw, 4rem) auto 0;
  text-align: center;
}

.moment__eyebrow {
  margin-bottom: 1.25rem;
  display: inline-block;
}

.moment__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 2.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .moment__image-wrap {
    aspect-ratio: 16 / 10;
  }
}

/* ==========================================================================
   Proof video — before/after embed between connection moment + testimonials
   ========================================================================== */

.proof-video {
  background: var(--cream);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: clamp(-4rem, -4vw, -2rem);
  margin-bottom: clamp(-4rem, -4vw, -2rem);
}

.proof-video__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.proof-video__sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--stone-60);
  margin-top: 1rem;
}

.proof-video__wrap {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(24, 37, 46, 0.25);
}

.proof-video__wrap::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1.5px solid var(--terra);
  z-index: -1;
  pointer-events: none;
}

.proof-video__player {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Testimonials — editorial hierarchy: hero + 2×2 grid + GBP link
   ========================================================================== */

.testimonials {
  background: var(--cream);
}

.testimonials__intro {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.testimonials__headline {
  margin-bottom: 1rem;
}

.testimonials__sub {
  font-size: clamp(1.0625rem, 0.9rem + 0.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--stone-60);
  font-weight: 400;
  margin: 0;
}

/* --- Hero review --- */

.testimonial-hero {
  position: relative;
  max-width: 900px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 5rem);
}

.testimonial-hero::before {
  content: "\201C";
  position: absolute;
  top: -0.35em;
  left: -0.08em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 28vw, 22rem);
  line-height: 1;
  color: var(--sand);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  font-weight: 400;
}

.testimonial-hero > * {
  position: relative;
  z-index: 1;
}

.testimonial-hero__stars {
  color: var(--terra);
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.75rem;
  line-height: 1;
}

.testimonial-hero__quote {
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 1rem + 1.4vw, 2rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--stone);
  font-weight: 400;
  margin: 0 0 2rem 0;
}

.testimonial-hero__attribution {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-60);
  font-weight: 600;
}

/* --- Supporting cards (2×2 on desktop, stack on mobile).
       Also reusable as a single-item drop on About / Services. --- */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(3rem, 5vw, 5rem);
    row-gap: clamp(3rem, 5vw, 4rem);
  }
}

.testimonial-card {
  padding-top: 2rem;
  border-top: 1px solid var(--stone-15);
}

.testimonial-card__stars {
  color: var(--terra);
  font-size: 1rem;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  letter-spacing: -0.003em;
  color: var(--stone);
  font-weight: 400;
  margin: 0 0 1.5rem 0;
}

.testimonial-card__attribution {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-60);
  font-weight: 600;
}

/* --- GBP link footer --- */

.testimonials__footer {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid var(--stone-15);
  text-align: center;
}

.testimonials__link {
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  padding-bottom: 0.35rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.testimonials__link:hover,
.testimonials__link:focus-visible {
  color: var(--terra);
}

/* ==========================================================================
   Services preview — editorial rows not boxes
   ========================================================================== */

.services-preview {
  background: var(--stone);
  color: var(--cream);
  overflow: hidden;
}

.services-preview__header {
  margin-bottom: clamp(4rem, 6vw, 6rem);
  max-width: 900px;
}

.services-preview__eyebrow {
  color: var(--sand);
  margin-bottom: 1.5rem;
}

.services-preview__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.services-preview__sub {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.75);
  max-width: 640px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  border-top: 1px solid rgba(244, 237, 224, 0.15);
  align-items: center;
  transition: background var(--duration) var(--ease);
  position: relative;
  cursor: pointer;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.service-row:hover {
  background: rgba(244, 237, 224, 0.03);
}

.service-row:last-child {
  border-bottom: 1px solid rgba(244, 237, 224, 0.15);
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr 1.5fr auto auto;
    gap: 3rem;
  }
}

.service-row__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
}

.service-row__description {
  display: none;
}

@media (min-width: 768px) {
  .service-row__description {
    display: block;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(244, 237, 224, 0.7);
    max-width: 380px;
  }
}

.service-row__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.service-row__arrow {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sand);
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
}

.service-row:hover .service-row__arrow {
  transform: translateX(8px);
  color: var(--terra);
}

/* ==========================================================================
   Sub-page hero (Services, About, Contact)
   ========================================================================== */

.page-hero {
  padding-top: clamp(9rem, 14vw, 14rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero__tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 1.5rem + 7vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
  max-width: 1000px;
}

.page-hero__lead {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--stone-80);
  font-weight: 300;
  max-width: 640px;
}

/* ==========================================================================
   Services page — reassurance bar (risk reversal + price anchor)
   ========================================================================== */

/* Reassurance bar + anchor now live inside the page-hero left column on the
   services page. Spacing below the lead paragraph handled with margin. */
.page-hero__content .services-reassurance__bar {
  margin-top: clamp(2rem, 4vw, 2.5rem);
}

/* Editorial stack: landscape proof photo, then reassurance bar, then anchor.
   All centered and width-aligned to the same max-width for a cohesive panel. */
/* Page hero 2-column variant (services page): headline + proof photo side-by-side */
.page-hero--with-image .page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 900px) {
  .page-hero--with-image .page-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 5vw, 4rem);
    align-items: stretch;
  }

  /* Text column becomes a flex column that fills the image's height.
     Headline group sits at the top; reassurance bar + anchor pinned to the
     bottom via margin-top: auto — so the text top AND bottom both align with
     the photo's top and bottom. */
  .page-hero--with-image .page-hero__content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .page-hero--with-image .page-hero__content .services-reassurance__bar {
    margin-top: auto;
  }
}

.page-hero--with-image .page-hero__content {
  max-width: 720px;
}

.page-hero__image-wrap {
  position: relative;
  aspect-ratio: 594 / 827;
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  line-height: 0;
  margin: 0 auto;
  justify-self: center;
}

@media (min-width: 900px) {
  .page-hero__image-wrap {
    margin: 0;
    justify-self: stretch;
    max-width: 100%;
  }
}

.page-hero__image-wrap::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1.5px solid var(--terra);
  z-index: -1;
  pointer-events: none;
}

.page-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-reassurance__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem clamp(1.5rem, 3vw, 2.5rem);
  background: var(--stone);
  color: var(--cream);
  border-left: 3px solid var(--terra);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.services-reassurance__bar strong {
  font-weight: 600;
  color: var(--cream);
}

.services-reassurance__stars {
  color: var(--terra);
  letter-spacing: 0.15em;
  font-size: 1rem;
  flex-shrink: 0;
}

.services-reassurance__anchor {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--stone-60);
  font-style: italic;
}

.services-reassurance__anchor em {
  font-style: normal;
  color: var(--terra);
  font-weight: 600;
}

/* ==========================================================================
   Services page — 3 detailed tier blocks
   ========================================================================== */

.services-detail {
  background: var(--cream);
  padding-top: clamp(3rem, 5vw, 5rem);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-top: 1px solid var(--stone-15);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--stone-15);
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.service-detail__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  line-height: 0.9;
  color: var(--terra);
  letter-spacing: -0.01em;
}

.service-detail__body {
  max-width: 680px;
}

.service-detail__label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-60);
  margin-bottom: 1rem;
}

.service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.service-detail__price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone-15);
}

.service-detail__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  color: var(--stone);
  line-height: 1;
}

.service-detail__note {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-60);
}

.service-detail__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-80);
  margin-bottom: 2rem;
}

.service-detail__emphasis {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--terra);
  padding-left: 1.5rem;
  border-left: 2px solid var(--terra);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.service-detail__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.service-detail__includes li {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--stone-08);
  font-size: 0.9375rem;
  color: var(--stone-80);
  position: relative;
  padding-left: 1.75rem;
}

.service-detail__includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-family: var(--font-display);
  font-weight: 400;
}

.service-detail__includes li:first-child {
  border-top: 1px solid var(--stone-08);
}

/* ==========================================================================
   Sessions — the 4-session breakdown
   ========================================================================== */

.sessions {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.sessions__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.session {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(2.5rem, 4vw, 4rem) 0;
  border-top: 1px solid var(--stone-15);
}

.session:last-child {
  border-bottom: 1px solid var(--stone-15);
}

@media (min-width: 768px) {
  .session {
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.session__number {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
}

.session__body {
  max-width: 720px;
}

.session__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.2vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.session__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-80);
}

/* ==========================================================================
   Aspects — the 3-pillar universal method section
   ========================================================================== */

.aspects {
  background: var(--stone);
  color: var(--cream);
  overflow: hidden;
}

.aspects .section-header h2 {
  color: var(--cream);
}

.aspects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: clamp(3rem, 5vw, 5rem);
}

@media (min-width: 768px) {
  .aspects__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.aspect {
  padding: 2.5rem;
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(244, 237, 224, 0.12);
}

.aspect__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--terra);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.aspect__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.aspect__body {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.8);
}

.aspect__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.aspect__link:hover,
.aspect__link:focus-visible {
  border-bottom-color: var(--terra);
  color: var(--cream);
}

/* ==========================================================================
   Flexibility / inclusions
   ========================================================================== */

.flexibility {
  background: var(--cream);
}

.flexibility__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .flexibility__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.flexibility__item {
  text-align: left;
}

.flexibility__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.flexibility__item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-80);
}

/* ==========================================================================
   Session One — "What to expect on your first session"
   ========================================================================== */

.session-one {
  background: var(--cream);
  border-top: 1px solid var(--stone-08);
}

.session-one__steps {
  margin-top: clamp(3rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 4vw, 4rem);
}

.session-one__step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--stone-15);
  align-items: start;
}

.session-one__step:last-child {
  border-bottom: 1px solid var(--stone-15);
}

@media (min-width: 768px) {
  .session-one__step {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.session-one__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 2vw, 3.5rem);
  line-height: 0.9;
  color: var(--terra);
  letter-spacing: 0;
}

.session-one__body {
  max-width: 680px;
}

.session-one__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 0.9vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

.session-one__body p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-80);
}

.session-one__body em {
  font-style: italic;
  color: var(--stone);
  font-weight: 500;
}

.session-one__prep {
  background: var(--paper);
  padding: 2.5rem;
  border-left: 3px solid var(--terra);
  max-width: 780px;
  margin: 3rem auto 0;
}

.session-one__prep-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.session-one__prep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.session-one__prep-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-80);
  margin-bottom: 0.75rem;
}

.session-one__prep-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terra);
  font-family: var(--font-display);
}

/* ==========================================================================
   Booking policy — payment, cancellation, vaccinations
   ========================================================================== */

.booking-policy {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.booking-policy__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .booking-policy__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }
}

.booking-policy__item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--stone-15);
}

.booking-policy__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

.booking-policy__item p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--stone-80);
  margin: 0;
}

/* ==========================================================================
   About page — two-column hero
   ========================================================================== */

.about-hero {
  padding-top: clamp(8rem, 12vw, 12rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
  background: var(--cream);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }
}

.about-hero__image-wrap {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  justify-self: center;
  position: relative;
}

.about-hero__image-wrap::after {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1.5px solid var(--terra);
  z-index: -1;
  pointer-events: none;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 1.5rem + 7vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
}

.about-hero__sub {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--stone-80);
  font-weight: 300;
  max-width: 540px;
}

/* ==========================================================================
   Story block — editorial prose
   ========================================================================== */

.story-block {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.prose {
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--stone);
}

.prose p {
  margin-bottom: 1.75rem;
  max-width: 100%;
  color: var(--stone-80);
}

.prose__signature {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--sand);
  margin-top: 3rem;
  text-transform: uppercase;
}

/* ==========================================================================
   About page — editorial image break between Story and Lineage
   ========================================================================== */

.about-image-break {
  background: var(--cream);
  padding: 0;
  overflow: hidden;
}

.about-image-break__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 90vh;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.2s forwards;
}

.about-image-break__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

@media (max-width: 767px) {
  .about-image-break__image-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* Portrait variant — used when the original vertical framing (e.g. HDB block
   backdrop) carries the context. Contained to a max width so it doesn't feel
   oversized on wide screens. */
.about-image-break--portrait {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-image-break--portrait .about-image-break__image-wrap {
  aspect-ratio: 594 / 1067;
  max-width: 520px;
  max-height: none;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about-image-break--portrait .about-image-break__image-wrap {
    aspect-ratio: 594 / 1067;
    max-width: 360px;
  }
}

/* ==========================================================================
   Lineage — 40+ years number
   ========================================================================== */

.lineage {
  background: var(--cream);
  border-top: 1px solid var(--stone-08);
}

.lineage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .lineage__grid {
    grid-template-columns: auto 1fr;
    gap: 5rem;
  }
}

.lineage__figure {
  text-align: center;
}

.lineage__number {
  font-family: var(--font-display);
  font-size: clamp(6rem, 4rem + 6vw, 11rem);
  line-height: 0.85;
  color: var(--terra);
  letter-spacing: -0.015em;
}

.lineage__label {
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-60);
  margin-top: 1rem;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.lineage__content p {
  margin-bottom: 1.5rem;
}

.lineage__content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Client story — editorial pull
   ========================================================================== */

.client-story {
  background: var(--paper);
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  text-align: center;
}

.client-story__quote {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3rem;
}

.client-story__body {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.client-story__body p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--stone-80);
  margin-bottom: 1.5rem;
}

.client-story__note {
  font-family: var(--font-display);
  font-size: 1.125rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.02em;
  color: var(--stone) !important;
  text-transform: uppercase;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone-15);
}

/* ==========================================================================
   Credentials — simple grid
   ========================================================================== */

.credentials {
  background: var(--cream);
  border-top: 1px solid var(--stone-08);
}

.credentials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(3rem, 5vw, 5rem);
}

.credential {
  padding: 2.5rem 0;
  border-top: 1px solid var(--stone-15);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.credential:last-child {
  border-bottom: 1px solid var(--stone-15);
}

@media (min-width: 768px) {
  .credential {
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.credential__label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-60);
  padding-top: 6px;
}

.credential__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1vw, 2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.credential__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-80);
  margin: 0;
}

/* ==========================================================================
   Contact page — methods grid
   ========================================================================== */

.contact-methods {
  background: var(--cream);
}

.contact-methods .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-methods .container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
  }
}

.contact-method {
  padding: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--stone-08);
  display: flex;
  flex-direction: column;
}

/* Pin the button to the bottom of every card so all four align across rows.
   Sub-button content (trust signal, email address) renders just above the
   button via a lower order value. Desc has flex-grow:1, so the slack pushes
   everything after it to the bottom. */
.contact-method .btn {
  order: 10;
  margin-top: 1.5rem;
}

.contact-method__trust,
.contact-method__address {
  order: 5;
}

.contact-method--primary {
  background: var(--stone);
  color: var(--cream);
  border-color: var(--stone);
}

.contact-method--primary .contact-method__title,
.contact-method--primary .contact-method__desc,
.contact-method--primary .contact-method__direct {
  color: var(--cream);
}

.contact-method--primary .contact-method__label {
  color: var(--sand);
}

.contact-method__label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-60);
  margin-bottom: 1rem;
}

.contact-method__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
  line-height: 1;
}

.contact-method__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--stone-80);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.contact-method--primary .contact-method__desc {
  color: rgba(244, 237, 224, 0.85);
}

.contact-method__direct {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--sand);
}

/* "Message Shawn" CTA on the dark primary card — Terra fill so it pops
   against the matching stone background of the card. Primary CTA on the
   page deserves the strongest visual weight. */
.contact-method--primary .btn--primary {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}

.contact-method--primary .btn--primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--stone);
}

/* Trust signal below the WhatsApp CTA — stars + reassurance line */
.contact-method__trust {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
  font-weight: 600;
}

.contact-method__stars {
  color: var(--terra);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

/* Email address shown as plain text below the Email button */
.contact-method__address {
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--stone);
  font-weight: 500;
  word-break: break-all;
}

/* Mobile — tighten cards, shrink big titles, let buttons breathe */
@media (max-width: 640px) {
  .contact-method {
    padding: 1.75rem 1.5rem;
  }
  .contact-method__title {
    font-size: 2rem;
  }
  .contact-method .btn {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}

/* ==========================================================================
   Contact form
   ========================================================================== */

.form-section {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.contact-form {
  margin-top: 1rem;
}

.form-row {
  margin-bottom: 1.75rem;
}

.form-row--consent {
  margin-bottom: 2.5rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 0.625rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--stone);
  background: var(--cream);
  border: 1px solid var(--stone-15);
  border-radius: 0;
  transition: border-color var(--duration) var(--ease);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--terra);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
  line-height: 1.5;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone-40);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--stone-80);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--terra);
  flex-shrink: 0;
}

.form-checkbox a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   When + Where section
   ========================================================================== */

.when-where {
  background: var(--cream);
  border-top: 1px solid var(--stone-08);
}

.when-where__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .when-where__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.when-where__item {
  border-left: 2px solid var(--terra);
  padding-left: 2rem;
}

.when-where__label {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone-60);
  margin-bottom: 1rem;
}

.when-where__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}

.when-where__detail {
  font-size: 1.0625rem;
  color: var(--stone-80);
  margin-bottom: 1rem;
}

.when-where__note {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--stone-60);
}

/* ==========================================================================
   What to expect — process steps
   ========================================================================== */

.expect {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.expect__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.expect__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--stone-15);
  align-items: start;
}

.expect__step:last-child {
  border-bottom: 1px solid var(--stone-15);
}

.expect__number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terra);
  line-height: 1;
  min-width: 60px;
}

.expect__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.75rem;
}

.expect__body p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-80);
  margin: 0;
}

/* ==========================================================================
   Legal pages — privacy, terms
   ========================================================================== */

.legal {
  background: var(--paper);
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.legal__last-updated {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-60);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--stone-15);
  margin-bottom: 3rem;
}

.legal__section {
  margin-bottom: 3rem;
}

.legal__heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.2vw, 2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.25rem;
}

.legal__section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone-80);
  margin-bottom: 1.25rem;
}

.legal__section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.legal__section ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-80);
  margin-bottom: 0.625rem;
}

.legal__section ul li::before {
  content: '·';
  position: absolute;
  left: 0.5rem;
  color: var(--terra);
  font-weight: 700;
}

.legal__section a {
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__section a:hover {
  color: var(--terra);
}

/* ==========================================================================
   FAQ — editorial accordion, SEO-rich
   ========================================================================== */

.faq {
  background: var(--paper);
  border-top: 1px solid var(--stone-08);
}

.faq__header {
  max-width: 700px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq__intro {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--stone-80);
}

.faq__list {
  border-top: 1px solid var(--stone-15);
}

.faq__item {
  border-bottom: 1px solid var(--stone-15);
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  color: var(--terra);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 0.9rem + 1.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--stone);
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  transition: color var(--duration) var(--ease);
}

.faq__question:hover {
  color: var(--terra);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--stone-60);
  transition: transform var(--duration) var(--ease), color var(--duration) var(--ease);
  flex-shrink: 0;
}

.faq__answer {
  padding-bottom: clamp(1.75rem, 3vw, 2.5rem);
  padding-right: clamp(2rem, 4vw, 4rem);
  max-width: 780px;
  animation: fadeUp 400ms var(--ease-out);
}

.faq__answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--stone-80);
  max-width: 100%;
}

/* ==========================================================================
   Gear section — soft pre-launch for collars & leads
   ========================================================================== */

.gear {
  background: var(--cream);
  border-top: 1px solid var(--stone-08);
}

/* 3-panel gear story — editorial strip above the text+pricing */
.gear__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

@media (min-width: 700px) {
  .gear__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

.gear__gallery-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-dark);
}

/* Middle panel — shift crop down so the full dog and lead are visible */
.gear__gallery-item:nth-child(2) img {
  object-position: center 70%;
}

.gear__gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out);
}

.gear__gallery-item:hover img {
  transform: scale(1.03);
}

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

@media (min-width: 1024px) {
  .gear__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
  }
}

.gear__content {
  max-width: 600px;
}

.gear__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gear__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--stone-15);
}

.gear__group-header {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 600;
  padding: 2rem 0 0.75rem;
  border-bottom: 1px solid var(--stone-15);
}

.gear__group-header:first-child {
  padding-top: 0;
}

.gear__item-label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--stone);
}

.gear__item-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--terra);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.gear__item-was {
  color: var(--stone-40);
  text-decoration: line-through;
  font-size: 1.125rem;
}

.gear__item-now {
  color: var(--terra);
}

.gear__item-note {
  grid-column: 1 / -1;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-60);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Final CTA — minimal, confident
   ========================================================================== */

.final-cta {
  background: var(--cream);
  text-align: center;
  padding-top: clamp(6rem, 10vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 12rem);
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 5vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2rem;
}

.final-cta__accent {
  color: var(--terra);
  display: block;
}

.final-cta__body {
  margin: 0 auto 3rem;
  max-width: 520px;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--stone-80);
}

/* Final CTA trust line — stars + reassurance + risk reversal + scarcity */
.final-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--stone-60);
  font-weight: 500;
}

.final-cta__trust-stars {
  color: var(--terra);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.final-cta__trust-dot {
  color: var(--stone-30);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--stone);
  color: var(--cream);
  padding: clamp(4rem, 6vw, 6rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(244, 237, 224, 0.1);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer__logo-the {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  color: rgba(244, 237, 224, 0.7);
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--cream);
}

.footer__tagline-line {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--sand);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(244, 237, 224, 0.65);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--sand);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(244, 237, 224, 0.75);
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}

.footer__copy {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(244, 237, 224, 0.5);
}

/* ==========================================================================
   Image placeholders — elegant, not ugly
   ========================================================================== */

.img-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-60);
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
  position: relative;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px dashed var(--stone-30);
  pointer-events: none;
}

.img-placeholder__label {
  position: relative;
  max-width: 260px;
  line-height: 1.7;
  text-align: center;
}

.meet__visual .img-placeholder {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--stone) 100%);
  color: rgba(244, 237, 224, 0.5);
}

.meet__visual .img-placeholder::before {
  border-color: rgba(244, 237, 224, 0.2);
}

/* ==========================================================================
   Utilities & reveal animations
   ========================================================================== */

.text-terra { color: var(--terra); }
.text-ocean { color: var(--ocean); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
