:root {
  --ink: #1c2521;
  --muted: #64706a;
  --paper: #f7f3eb;
  --white: #fffdf8;
  --sage: #8ea28f;
  --moss: #314c3d;
  --clay: #c68b69;
  --lavender: #c9bed9;
  --line: rgba(28, 37, 33, 0.14);
  --shadow: 0 24px 80px rgba(48, 60, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 8%, rgba(201, 190, 217, 0.32), transparent 28rem),
    linear-gradient(135deg, #faf7f0 0%, #edf1e8 50%, #f7efe8 100%);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.12;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 12px 30px rgba(50, 60, 54, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.trust-row,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--moss);
  font-size: 12px;
}

.nav {
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-cta {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--moss);
  transform: translateY(-1px);
}

.header-cta {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.section-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-copy,
.split-copy,
.about-copy,
.contact > div,
.hero-visual {
  min-width: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 72px 0 56px;
}

.eyebrow,
.tag {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 94px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 64px);
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--moss);
  box-shadow: 0 16px 34px rgba(49, 76, 61, 0.2);
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.58);
}

.button.ghost.dark {
  width: 100%;
  background: transparent;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  padding: 9px 13px;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 620px;
  transition: transform 0.18s ease-out;
}

.hero-visual img {
  width: 100%;
  height: 620px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 8px;
}

.hero-visual::before {
  inset: 42px -22px -22px 44px;
  background: var(--sage);
}

.hero-visual::after {
  inset: -18px 52px auto auto;
  width: 150px;
  height: 150px;
  background: var(--lavender);
  animation: breathe 6s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 3px;
  width: min(230px, 54%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 40px rgba(35, 45, 39, 0.14);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  font-size: 13px;
  text-transform: uppercase;
}

.floating-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.note-one {
  top: 38px;
  left: -26px;
}

.note-two {
  right: -18px;
  bottom: 58px;
}

.intro {
  padding: 54px 0 82px;
}

.intro p {
  max-width: 980px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
}

.method,
.sessions,
.testimonials,
.faq {
  padding: 76px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.method-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.method-grid {
  grid-template-columns: repeat(3, 1fr);
}

.method-card,
.price-card,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 18px 50px rgba(50, 60, 54, 0.08);
}

.method-card {
  min-height: 250px;
  padding: 26px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 253, 248, 0.88);
}

.card-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--clay);
  font-weight: 800;
}

.method-card p,
.price-card p,
.quote-card p,
.split-copy p,
.about-copy p,
.contact p,
.faq p {
  color: var(--muted);
  line-height: 1.7;
}

.split,
.about,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
  padding: 76px 0;
}

.split-image img,
.about-panel img {
  width: 100%;
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.pill-list span {
  padding: 10px 14px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 28px;
}

.price-card .button {
  margin-top: auto;
}

.price-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--moss), #23352d);
  transform: translateY(-14px);
}

.price-card.featured p,
.price-card.featured .tag {
  color: rgba(255, 253, 248, 0.78);
}

.price {
  margin: 8px 0 18px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
}

.about {
  grid-template-columns: 1fr 0.9fr;
}

blockquote {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--clay);
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.35;
}

.about-panel {
  position: relative;
}

.about-panel dl {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.about-panel div {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 34px rgba(35, 45, 39, 0.12);
}

dt {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
}

dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  padding: 26px;
}

.quote-card p {
  min-height: 138px;
  font-size: 18px;
}

.quote-card span {
  color: var(--clay);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

.contact {
  margin-bottom: 72px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(49, 76, 61, 0.95), rgba(28, 37, 33, 0.94)),
    var(--moss);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact p,
.contact .eyebrow {
  color: rgba(255, 253, 248, 0.76);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  outline: none;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 253, 248, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 253, 248, 0.12);
}

.site-footer {
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(12px) scale(0.94);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
  }

  .nav {
    display: none;
  }

  .hero,
  .split,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
    height: 500px;
  }

  .note-one {
    left: 14px;
  }

  .note-two {
    right: 14px;
  }

  .method-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .split-image img,
  .about-panel img {
    height: 420px;
  }
}

@media (max-width: 620px) {
  .section-band,
  .site-header,
  .site-footer {
    width: min(100% - 32px, 1160px);
    max-width: 100%;
  }

  .site-header {
    margin-top: 10px;
    padding: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    gap: 32px;
    padding-bottom: 38px;
  }

  h1 {
    max-width: 100%;
    font-size: 29px;
    line-height: 1.12;
  }

  h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-copy,
  .split-copy,
  .about-copy,
  .contact > div {
    padding-inline: 2px;
  }

  .lead {
    font-size: 17px;
  }

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

  .hero-visual,
  .hero-visual img {
    height: 390px;
    overflow: hidden;
  }

  .hero-visual::before {
    inset: 24px -8px -12px 20px;
  }

  .hero-visual::after {
    width: 96px;
    height: 96px;
  }

  .floating-note {
    width: min(210px, calc(100% - 24px));
    padding: 12px;
  }

  .note-one {
    left: 10px;
    top: 16px;
  }

  .note-two {
    right: 8px;
    bottom: 18px;
  }

  .intro,
  .method,
  .sessions,
  .testimonials,
  .faq,
  .split,
  .about {
    padding: 48px 0;
  }

  .method-card,
  .price-card,
  .quote-card {
    padding: 22px;
  }

  .quote-card p {
    min-height: 0;
  }

  .contact {
    padding: 28px 18px;
  }

  .about-panel dl {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
