:root {
  --forest-deep: #1b231c;
  --forest-mid: #232e27;
  --forest-line: #34423a;
  --bone: #f3eee2;
  --bone-dim: #d8d0bc;
  --brass: #b98a4e;
  --brass-soft: #8e6c42;
  --clay-rose: #9c5b52;
  --clay-rose-lt: #b4756b;
  --ink: #1b231c;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family:
    "Karla",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: var(--bone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.005em;
  margin: 0;
}

a {
  color: inherit;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.col {
  max-width: 620px;
  margin: 0 auto;
}

.logo-size{
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* ---------- header ---------- */
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  background: rgba(27, 35, 28, 0);
  transition:
    background 0.4s ease,
    padding 0.3s ease,
    backdrop-filter 0.4s ease;
}
header.site.scrolled {
  background: rgba(27, 35, 28, 0.86);
  backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(185, 138, 78, 0.18);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.brand em {
  font-style: italic;
  color: var(--brass);
}
.nav-cta {
  font-family: "Karla", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bone);
  border: 1px solid rgba(243, 238, 226, 0.4);
  border-radius: 999px;
  padding: 9px 20px;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  border-color: var(--brass);
  background: rgba(185, 138, 78, 0.12);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--forest-deep);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-roots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.16;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-mark {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--brass);
  opacity: 0;
  animation: riseIn 0.9s ease 0.1s forwards;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.05;
  color: var(--bone);
}
.hero h1 span {
  display: block;
  opacity: 0;
  animation: riseIn 0.9s ease forwards;
}
.hero h1 span:nth-child(1) {
  animation-delay: 0.25s;
}
.hero h1 span:nth-child(2) {
  font-style: italic;
  color: var(--brass);
  animation-delay: 0.4s;
}

.hero p.lede {
  margin: 26px auto 0;
  max-width: 460px;
  font-size: 1.05rem;
  color: var(--bone-dim);
  opacity: 0;
  animation: riseIn 0.9s ease 0.55s forwards;
}
.hero-meta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  font-size: 1rem;
  color: var(--bone-dim);
  opacity: 0;
  animation: riseIn 0.9s ease 0.7s forwards;
}
.hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}
.hero-actions {
  margin-top: 38px;
  opacity: 0;
  animation: riseIn 0.9s ease 0.85s forwards;
}
.hero .scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--bone-dim);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: riseIn 0.9s ease 1s forwards;
  text-decoration: none;
}
.scroll-cue svg {
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Karla", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn-primary {
  background: var(--clay-rose);
  color: var(--bone);
  box-shadow: 0 8px 24px -8px rgba(156, 91, 82, 0.55);
}
.btn-primary:hover {
  background: var(--clay-rose-lt);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  background: transparent;
  border-color: rgba(243, 238, 226, 0.35);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--brass);
}

/* ---------- section scaffolding ---------- */
section {
  padding: clamp(72px, 12vw, 128px) 0;
}
.panel-light {
  background: var(--bone);
  color: var(--ink);
}
.panel-dark {
  background: var(--forest-mid);
  color: var(--bone);
}

.eyebrow-mark {
  width: 34px;
  height: 2px;
  background: var(--brass);
  margin-bottom: 26px;
}
.panel-dark .eyebrow-mark {
  background: var(--brass);
}

h2.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 26px;
}

p {
  margin: 0 0 1.1em;
}
.lede-lg {
  font-size: 1.12rem;
}
.muted {
  color: var(--brass-soft);
}
.panel-dark .muted {
  color: var(--bone-dim);
}

blockquote {
  margin: 44px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--brass);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- the intention (steps) ---------- */
.steps {
  margin-top: 48px;
}
.step {
  display: flex;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--forest-line);
}
.step:last-child {
  border-bottom: 1px solid var(--forest-line);
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brass);
  min-width: 34px;
}
.step h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--bone);
}
.step p {
  color: var(--bone-dim);
  margin: 0;
  font-size: 0.98rem;
}

/* ---------- patterns list ---------- */
.pattern-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
}
.pattern-grid li {
  list-style: none;
  padding: 16px 0;
  border-top: 1px solid rgba(27, 35, 28, 0.15);
  font-size: 1rem;
}
.pattern-grid {
  padding: 0;
  margin-left: 0;
}
@media (max-width: 620px) {
  .pattern-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- included ---------- */
.included {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
}
.included-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(243, 238, 226, 0.14);
}
.included-item:last-child {
  border-bottom: 1px solid rgba(243, 238, 226, 0.14);
}
.included-item .tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--brass);
  font-size: 1.05rem;
}
.included-item p {
  color: var(--bone-dim);
  margin: 0;
  font-size: 0.98rem;
}
@media (max-width: 560px) {
  .included-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ---------- enroll ---------- */
.enroll {
  background: var(--forest-deep);
  color: var(--bone);
  text-align: center;
}
.enroll .col {
  max-width: 560px;
}
.price-row {
  margin: 34px 0 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.price-row .amount {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 4.2rem);
  color: var(--bone);
}
.price-row .cadence {
  color: var(--bone-dim);
  font-size: 0.95rem;
}
.price-note {
  color: var(--bone-dim);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.enroll-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--bone-dim);
}
.enroll-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.enroll-list li::before {
  content: "✓";
  color: var(--brass);
}

#pay-status {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--bone-dim);
  min-height: 20px;
}
#pay-status.error {
  color: var(--clay-rose-lt);
}

/* ---------- footer ---------- */
footer {
  background: var(--forest-deep);
  color: var(--bone-dim);
  padding: 40px 0 34px;
  text-align: center;
  font-size: 0.82rem;
  border-top: 1px solid var(--forest-line);
}
footer .brand {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
