:root {
  --bg: oklch(0.987 0.006 82);
  --surface: oklch(0.965 0.012 78);
  --surface-strong: oklch(0.93 0.026 67);
  --ink: oklch(0.28 0 0);
  --muted: oklch(0.45 0.012 55);
  --primary: oklch(0.66 0.082 31);
  --primary-dark: oklch(0.44 0.064 31);
  --sage: oklch(0.69 0.044 166);
  --sage-dark: oklch(0.43 0.043 166);
  --cream: oklch(0.995 0.004 85);
  --shadow: 0 8px 18px oklch(0.38 0.05 35 / 0.12);
  --shadow-strong: 0 16px 34px oklch(0.35 0.06 35 / 0.16);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Nunito Sans", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, oklch(0.89 0.055 33 / 0.42), transparent 34rem),
    radial-gradient(circle at 85% 22%, oklch(0.84 0.045 166 / 0.34), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: -0.018em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-180%);
  transition: transform 220ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  background: oklch(0.987 0.006 82 / 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--max));
  min-height: 56px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.15;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.4vw, 2rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a,
.footer a {
  transition: color 180ms var(--ease-out);
}

.nav-links a:hover,
.footer a:hover {
  color: var(--primary-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out), background 180ms var(--ease-out);
}

.nav-cta,
.button-primary {
  background: var(--primary-dark);
  color: var(--cream);
  box-shadow: 0 8px 14px oklch(0.34 0.08 31 / 0.20);
}

.button-secondary {
  background: var(--cream);
  color: var(--sage-dark);
  box-shadow: 0 6px 12px oklch(0.43 0.04 166 / 0.12);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-cta:active,
.button:active {
  transform: translateY(0) scale(0.98);
}

.nav-cta:focus-visible,
.button:focus-visible,
.brand:focus-visible,
.nav-links a:focus-visible,
.footer a:focus-visible {
  outline: 3px solid oklch(0.72 0.09 31 / 0.75);
  outline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(100% - 2rem, var(--max));
  min-height: calc(100svh - 150px);
  margin: 0 auto;
  padding: clamp(1.35rem, 3.4vw, 3rem) 0 clamp(1.7rem, 4vw, 3.7rem);
}

.hero-copy {
  display: grid;
  gap: 1.12rem;
}

.trust-badge,
.section-kicker,
.package-label {
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.55rem 0.75rem 0.55rem 0.58rem;
  border-radius: 999px;
  background: oklch(0.93 0.035 33);
}

.trust-badge span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
}

.trust-badge svg {
  width: 20px;
  fill: none;
  stroke: var(--primary-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.65rem, 5vw, 4rem);
  line-height: 1.02;
}

.hero-lede {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-note {
  max-width: 42rem;
  color: var(--sage-dark);
  font-weight: 700;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--surface-strong);
  box-shadow: var(--shadow-strong);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 0 72px;
  z-index: 1;
  background: linear-gradient(180deg, transparent 62%, oklch(0.2 0.02 35 / 0.22));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.photo-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--cream);
  color: var(--ink);
}

.photo-caption span {
  color: var(--muted);
}

.intro-section,
.section-heading,
.approach-panel,
.contact-card,
.footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.intro-section h2 {
  max-width: 15ch;
}

.intro-section h2,
.section-heading h2,
.approach-panel h2,
.contact-card h2 {
  font-size: clamp(2.15rem, 4.4vw, 4.2rem);
  line-height: 1.12;
}

.intro-copy {
  display: grid;
  gap: 1rem;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading h2 {
  max-width: 14ch;
}

.benefit-grid,
.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(1rem, 2.4vw, 1.5rem);
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.benefit-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
  min-height: 315px;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.benefit-card:nth-child(2) {
  background: oklch(0.94 0.032 164);
}

.benefit-card:nth-child(3) {
  background: oklch(0.935 0.035 34);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: oklch(0.88 0.042 33);
}

.benefit-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: var(--primary-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.relief-icon {
  background: oklch(0.88 0.04 166);
}

.relief-icon svg {
  stroke: var(--sage-dark);
}

.bond-icon {
  background: oklch(0.9 0.046 28);
}

.benefit-card h3,
.pricing-card h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.22;
}

.benefit-card p,
.pricing-card p,
.approach-list,
.contact-card p {
  color: var(--muted);
}

.approach-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 16px;
  background: var(--sage-dark);
  color: var(--cream);
}

.approach-panel h2,
.approach-panel .section-kicker,
.approach-panel p,
.approach-panel li {
  color: var(--cream);
}

.approach-list {
  display: grid;
  gap: 1.25rem;
}

.approach-list ul,
.pricing-card ul {
  display: grid;
  gap: 0.7rem;
}

.approach-list li,
.pricing-card li {
  position: relative;
  padding-left: 1.4rem;
}

.approach-list li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: currentColor;
}

.pricing-wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  display: grid;
  gap: 1.05rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
  transform-origin: center;
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out), background 260ms var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.private-card {
  background: oklch(0.93 0.036 34);
}

.price {
  color: var(--primary-dark);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.pricing-card .button {
  width: fit-content;
  margin-top: 0.25rem;
}

.testimonials {
  overflow: hidden;
}

.testimonials .section-heading h2 {
  max-width: 18ch;
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding-block: 1.4rem;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: calm-marquee 34s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee figure {
  display: grid;
  gap: 1rem;
  width: min(78vw, 390px);
  min-height: 220px;
  margin: 0;
  padding: 1.35rem;
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.48;
}

figcaption {
  align-self: end;
  color: var(--sage-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.45fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 16px;
  background: var(--primary-dark);
  color: var(--cream);
  box-shadow: var(--shadow-strong);
}

.contact-card h2,
.contact-card .section-kicker,
.contact-card p {
  color: var(--cream);
}

.contact-card p {
  max-width: 62ch;
}

.contact-actions {
  display: grid;
  gap: 0.8rem;
}

.contact-actions .button-primary {
  background: var(--cream);
  color: var(--primary-dark);
}

.contact-actions .button-secondary {
  background: oklch(0.87 0.041 166);
  color: var(--sage-dark);
}

.contact-actions p {
  font-size: 0.95rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--primary-dark);
  font-weight: 800;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 780ms var(--ease-out),
    transform 780ms var(--ease-out),
    filter 780ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 80ms);
}

@keyframes calm-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.3rem 0 0.1rem;
  }

  .hero,
  .intro-section,
  .approach-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .benefit-card,
  .benefit-card:nth-child(2) {
    min-height: auto;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 0.65rem 1rem;
  }

  .nav {
    min-height: 48px;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    padding-inline: 0.95rem;
  }

  .hero {
    width: min(100% - 1.2rem, var(--max));
    padding-top: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.6vw, 2.85rem);
  }

  .hero-copy {
    gap: 0.85rem;
  }

  .hero-note {
    display: none;
  }

  .hero-media {
    min-height: 220px;
  }

  .photo-caption {
    display: grid;
    padding: 0.8rem 0.9rem;
  }

  .pricing-wrap {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .section-heading,
  .approach-panel,
  .contact-card,
  .footer,
  .benefit-grid,
  .pricing-wrap {
    width: min(100% - 1.2rem, var(--max));
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand strong {
    max-width: 13ch;
  }

  .nav-cta {
    min-height: 44px;
    font-size: 0.9rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .trust-badge {
    align-items: flex-start;
    border-radius: 16px;
  }

  .hero-actions .button {
    width: auto;
  }

  .marquee {
    mask-image: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}
