:root {
  --paper: #f8f0e6;
  --linen: #efe2d3;
  --porcelain: #fffaf4;
  --wine: #6c2737;
  --wine-deep: #54202d;
  --chocolate: #3f281d;
  --chocolate-soft: #5b4032;
  --ink: #2b211d;
  --muted: #75685f;
  --line: rgba(59, 39, 31, 0.15);
  --gold: #b88f4d;
  --gold-soft: rgba(185, 150, 90, 0.24);
  --shadow: 0 26px 70px rgba(59, 39, 31, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), #fbf5ee 46%, #fffaf4);
  font-family: var(--sans);
  line-height: 1.65;
}

body.is-scrolled .site-header {
  background: rgba(247, 239, 230, 0.94);
  box-shadow: 0 12px 38px rgba(59, 39, 31, 0.08);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold-soft);
  background: transparent;
}

.tree-mark,
.tree-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--wine);
}

.header-action {
  padding: 11px 18px;
  border: 1px solid rgba(111, 38, 55, 0.3);
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.76fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 66px 0 92px;
}

.eyebrow {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5rem);
}

h3 {
  font-family: var(--serif);
  font-size: 1.62rem;
  line-height: 1.08;
}

.hero-lead {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--wine);
  color: #fffaf4;
  box-shadow: 0 16px 34px rgba(111, 38, 55, 0.22);
}

.button-primary:hover {
  background: var(--wine-deep);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 250, 244, 0.58);
  color: var(--wine);
}

.button-light {
  background: #fffaf4;
  color: var(--wine-deep);
}

.button-outline-light {
  border-color: rgba(255, 250, 244, 0.45);
  color: #fffaf4;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.photo-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.84), rgba(239, 227, 215, 0.58)),
    repeating-linear-gradient(45deg, rgba(111, 38, 55, 0.08) 0 1px, transparent 1px 20px);
  box-shadow: var(--shadow);
}

.photo-frame::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 244, 0.82);
  content: "";
}

.photo-frame::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 84px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.photo-main {
  height: 620px;
  border-radius: 0 84px 0 0;
}

.photo-main .photo-tag,
.photo-about .photo-tag {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  background: var(--linen);
}

.photo-main .photo-tag img,
.photo-about .photo-tag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.photo-about {
  min-height: 560px;
  border-radius: 108px 108px 0 0;
}

.photo-tag,
.photo-instruction {
  position: relative;
  z-index: 1;
  margin-left: 32px;
  margin-right: 32px;
}

.photo-tag {
  width: max-content;
  margin-bottom: 8px;
  padding: 7px 11px;
  background: rgba(255, 250, 244, 0.8);
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-instruction {
  max-width: 300px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

.signature-card {
  position: absolute;
  right: -20px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 245px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 20px 54px rgba(59, 39, 31, 0.13);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.05;
}

.pain-block,
.how-it-works,
.fit-section {
  padding: 104px 0;
}

.pain-block {
  background: var(--porcelain);
  border-block: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.two-column h2,
.about h2,
.final-cta h2,
.fit-grid h2 {
  margin-top: 14px;
}

.two-column p:not(.eyebrow),
.section-intro p:not(.eyebrow),
.about-copy p,
.final-cta p,
.guarantee-box p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.06rem;
}

.pain-copy {
  padding-top: 44px;
}

.pain-copy p {
  max-width: 540px;
}

.impact-band {
  padding: 94px 0;
  background: var(--chocolate);
  color: #fffaf4;
}

.impact-copy {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.impact-copy p {
  max-width: 710px;
  margin-top: 22px;
  color: rgba(255, 250, 244, 0.82);
  font-size: 1.16rem;
}

.impact-copy .button {
  margin-top: 34px;
}

.solution,
.about,
.guarantee {
  padding: 116px 0;
}

.section-intro {
  max-width: 880px;
  margin: 0 auto;
}

.section-intro h2 {
  margin-top: 12px;
}

.section-intro.narrow {
  max-width: 760px;
  margin-bottom: 48px;
}

.align-left {
  margin-left: 0;
  text-align: left;
}

.how-it-works {
  background: #efe2d3;
  border-block: 1px solid var(--line);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.64);
}

.tree-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 70px;
}

.tree-mark-large {
  width: 66px;
  height: 66px;
}

.steps-grid p,
.fit-grid li {
  margin-top: 14px;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.about-story {
  margin-top: 22px;
}

.about-story p + p {
  margin-top: 16px;
}

.guarantee-box {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--gold-soft);
  background: #fffaf4;
}

.guarantee-box h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.fit-section {
  background: var(--chocolate);
  color: #fffaf4;
}

.fit-section .eyebrow,
.fit-section h2 {
  color: #fffaf4;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 76px);
}

.fit-grid article {
  border-top: 1px solid rgba(255, 250, 244, 0.24);
  padding-top: 30px;
}

.refined-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.refined-list li {
  padding-left: 22px;
  border-left: 2px solid var(--gold);
}

.fit-grid .refined-list li {
  color: rgba(255, 250, 244, 0.78);
}

.final-cta {
  padding: 118px 0;
  background: var(--wine-deep);
  color: #fffaf4;
}

.final-cta .eyebrow,
.final-cta p {
  color: rgba(255, 250, 244, 0.82);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: end;
}

.social-box {
  display: grid;
  gap: 8px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 250, 244, 0.28);
}

.social-box span {
  color: rgba(255, 250, 244, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-box a {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.42rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: var(--ink);
  color: rgba(255, 250, 244, 0.74);
  font-size: 0.92rem;
}

.footer-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
}

.site-footer small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 244, 0.52);
}

.tree-mark-light {
  width: 38px;
  height: 38px;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero,
  .two-column,
  .about,
  .final-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .photo-main {
    height: min(620px, 118vw);
  }

  .signature-card {
    right: 18px;
  }

  .pain-copy {
    padding-top: 0;
  }

  .steps-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 3.28rem;
  }

  h2 {
    font-size: 2.58rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .pain-block,
  .how-it-works,
  .fit-section,
  .solution,
  .about,
  .guarantee,
  .impact-band,
  .final-cta {
    padding: 74px 0;
  }

  .steps-grid article {
    min-height: auto;
  }

  .tree-icon {
    margin-bottom: 42px;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    padding: 24px;
  }

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