:root {
  --forest: #2f4a3a;
  --forest-deep: #1f3328;
  --sage: #6b7f5b;
  --ochre: #c79a4b;
  --rust: #a64e3b;
  --cream: #f4efe6;
  --cream-dark: #e8e0d4;
  --parchment: #fbf7f0;
  --charcoal: #2a2a2a;
  --plum: #5a4a6b;
  --ink: #2a2a2a;
  --muted: #5c574e;
  --line: rgba(47, 74, 58, 0.18);
  --shadow: 0 18px 40px rgba(31, 51, 40, 0.12);
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --body: Lora, "Palatino Linotype", Palatino, serif;
  --script: "Great Vibes", "Segoe Script", cursive;
  --max: 1120px;
  --pad: clamp(1.2rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(199, 154, 75, 0.08), transparent 32%),
    radial-gradient(circle at 90% 0%, rgba(90, 74, 107, 0.06), transparent 28%),
    var(--cream);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--forest);
  text-decoration-color: rgba(47, 74, 58, 0.35);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rust);
}

:focus-visible {
  outline: 2px solid var(--ochre);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--forest);
  color: var(--cream);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--rust);
  line-height: 1.2;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: inherit;
  text-decoration: none;
}

.wordmark-star {
  color: var(--ochre);
  font-size: 0.7rem;
  letter-spacing: 0;
  text-align: center;
  line-height: 1;
}

.wordmark strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--forest);
}

.wordmark span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  padding: 0.45rem 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--forest);
}

.nav-tools {
  display: flex;
  gap: 0.7rem;
  margin-left: 0.4rem;
  color: var(--forest);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 20%, rgba(199, 154, 75, 0.16), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(90, 74, 107, 0.22), transparent 32%),
    linear-gradient(180deg, #2f4a3a 0%, #1f3328 100%);
  min-height: min(78vh, 680px);
  display: grid;
  place-items: center;
  text-align: center;
}

.hero::before,
.hero::after {
  content: "✦";
  position: absolute;
  color: var(--ochre);
  opacity: 0.7;
  font-size: 0.8rem;
}

.hero::before {
  top: 1.6rem;
  left: 8%;
}

.hero::after {
  bottom: 1.8rem;
  right: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 1.2rem 4.5rem;
}

.hero-kicker {
  color: var(--ochre);
}

.hero h1 {
  margin: 0.2rem 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 5.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero .script {
  display: block;
  margin: 0.5rem 0 1.8rem;
  color: var(--cream);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--forest);
}

.btn-light:hover {
  background: var(--cream-dark);
  color: var(--forest-deep);
}

.btn-ghost {
  background: transparent;
  border-color: currentColor;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-head h2,
.page-hero h1,
.product-card h3,
.post-card h3,
.article h1 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--ochre);
  margin: 0.4rem 0 1.2rem;
}

.divider::before,
.divider::after {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: var(--ochre);
  opacity: 0.7;
}

.offer-grid,
.product-grid,
.post-grid,
.split,
.detail-grid {
  display: grid;
  gap: 1.4rem;
}

.offer-grid,
.product-grid,
.post-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card,
.product-card,
.post-card,
.panel {
  background: var(--parchment);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.offer-card {
  padding: 2rem 1.5rem 1.6rem;
  text-align: center;
}

.offer-card svg {
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 1rem;
  color: var(--forest);
}

.product-media svg {
  width: 5.5rem;
  height: 5.5rem;
  color: var(--cream);
}

.offer-card h3,
.product-card h3 {
  margin: 0.2rem 0 0.6rem;
  font-size: 1.55rem;
}

.product-card {
  overflow: hidden;
}

.product-media {
  display: grid;
  place-items: center;
  min-height: 210px;
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 239, 230, 0.5), transparent 55%),
    var(--forest);
  color: var(--cream);
}

.product-media.sage {
  background: var(--sage);
}

.product-media.plum {
  background: var(--plum);
}

.product-media.rust {
  background: var(--rust);
}

.product-body,
.post-card {
  padding: 1.3rem 1.3rem 1.4rem;
}

.price {
  color: var(--rust);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split img {
  width: 100%;
  height: min(460px, 70vw);
  object-fit: cover;
  background: var(--forest);
}

.split-copy {
  padding: 1rem 1.5rem;
}

.feel-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.4rem;
  padding: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feel-row span::before {
  content: "✦ ";
  color: var(--ochre);
  font-size: 0.7em;
}

.band {
  background: var(--forest);
  color: var(--cream);
}

.band a {
  color: var(--cream);
}

.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.page-hero p {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--charcoal);
  padding: 0.45rem 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}

.filter.is-active,
.filter:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.article {
  max-width: 42rem;
  margin: 0 auto;
}

.article h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--parchment);
  color: var(--ink);
  padding: 0.75rem 0.8rem;
  font: inherit;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.14);
}

.site-footer a {
  color: var(--cream);
}

.site-footer .wordmark strong,
.site-footer .wordmark span {
  color: var(--cream);
}

.footer-col {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.legal {
  padding-top: 1.2rem;
  color: rgba(244, 239, 230, 0.72);
  font-size: 0.85rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 2.35rem;
    letter-spacing: 0.1em;
  }

  .hero .script {
    font-size: 1.7rem;
  }

  .offer-grid,
  .product-grid,
  .post-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wordmark span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem var(--pad) 1.2rem;
    gap: 0.8rem;
  }

  .nav.is-open {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.site-live {
  display: none;
}

html.is-open .site-live {
  display: block;
}

html.is-open .site-manifesting {
  display: none;
}

.manifesting-hero {
  min-height: 100vh;
}

.hero .manifesting-script {
  color: var(--ochre);
}

.manifesting-note {
  max-width: 28rem;
  margin: 0 auto;
  color: rgba(244, 239, 230, 0.82);
  font-size: 1.05rem;
}

.gate-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--pad);
}

.gate {
  max-width: 28rem;
  text-align: center;
}

.gate h1 {
  margin: 0.2rem 0 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gate-script {
  display: block;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--ochre);
}

.preview-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--ochre);
  color: var(--forest-deep);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.preview-leave {
  border: 1px solid var(--forest-deep);
  background: transparent;
  color: var(--forest-deep);
  padding: 0.25rem 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  cursor: pointer;
}
