:root {
  --bg: #fbf7ef;
  --bg-soft: #f1e7d7;
  --ink: #18231f;
  --muted: #6f756f;
  --green: #12251f;
  --green-2: #1f3b32;
  --gold: #caa866;
  --gold-2: #f4dfaa;
  --red: #7f1f1b;
  --white: #fffaf1;
  --line: rgba(24, 35, 31, .13);
  --shadow: 0 24px 70px rgba(18, 37, 31, .18);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 37, 31, .08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(251, 247, 239, .95);
  box-shadow: 0 12px 40px rgba(18, 37, 31, .08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: -.08em;
  box-shadow: 0 16px 30px rgba(18, 37, 31, .18);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: .01em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(24, 35, 31, .78);
  font-weight: 700;
  font-size: .94rem;
  transition: background var(--transition), color var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(18, 37, 31, .08);
  color: var(--green);
}

.nav .nav-cta {
  background: var(--green);
  color: var(--gold-2);
  padding-inline: 18px;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  background: #0a1713;
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  padding: 11px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-2);
  border-radius: 99px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(202, 168, 102, .22), transparent 30%),
    linear-gradient(135deg, #0a1713 0%, var(--green) 44%, #1b342d 100%);
}

.section-muted {
  background: var(--bg-soft);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 96px 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(251, 247, 239, .12));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: 54px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .6;
}

.hero-glow-one {
  top: 12%;
  right: 10%;
  background: rgba(202, 168, 102, .28);
}

.hero-glow-two {
  bottom: 6%;
  left: 4%;
  background: rgba(127, 31, 27, .24);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero h1,
.section-heading h2,
.split-grid h2,
.delivery h2,
.cta-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .98;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 250, 241, .78);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--green);
  box-shadow: 0 18px 44px rgba(202, 168, 102, .22);
}

.btn-secondary {
  border-color: rgba(255, 250, 241, .24);
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, .13);
}

.btn-outline {
  border-color: rgba(18, 37, 31, .18);
  background: rgba(255, 255, 255, .38);
  color: var(--green);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-notes span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 250, 241, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 250, 241, .82);
  font-size: .9rem;
  font-weight: 800;
}

.hero-card {
  overflow: hidden;
  min-height: 590px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 250, 241, .17), rgba(255, 250, 241, .06));
  border: 1px solid rgba(255, 250, 241, .18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.tree-scene {
  position: relative;
  min-height: 490px;
  background:
    radial-gradient(circle at 50% 16%, rgba(244, 223, 170, .22), transparent 20%),
    linear-gradient(180deg, rgba(10, 23, 19, .08), rgba(10, 23, 19, .28));
}

.moon {
  position: absolute;
  top: 54px;
  right: 68px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold-2) 55%, var(--gold));
  box-shadow: 0 0 60px rgba(244, 223, 170, .38);
}

.tree {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 330px;
  height: 390px;
  transform: translateX(-50%);
}

.star {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-2);
  font-size: 56px;
  text-shadow: 0 0 38px rgba(244, 223, 170, .9);
  z-index: 8;
}

.layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: var(--w) solid transparent;
  border-right: var(--w) solid transparent;
  border-bottom: var(--h) solid #17372e;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.15));
}

.layer-1 { --w: 74px; --h: 100px; top: 50px; z-index: 5; }
.layer-2 { --w: 110px; --h: 130px; top: 112px; z-index: 4; border-bottom-color: #123026; }
.layer-3 { --w: 145px; --h: 158px; top: 187px; z-index: 3; border-bottom-color: #0f2a22; }
.layer-4 { --w: 174px; --h: 182px; top: 265px; z-index: 2; border-bottom-color: #0c231d; }

.trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 70px;
  transform: translateX(-50%);
  background: #5f3d21;
  border-radius: 8px;
  z-index: 1;
}

.light,
.bauble {
  position: absolute;
  border-radius: 999px;
  z-index: 7;
}

.light {
  width: 11px;
  height: 11px;
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(244, 223, 170, .95);
  animation: twinkle 2.6s infinite ease-in-out;
}

.light-1 { top: 126px; left: 138px; }
.light-2 { top: 198px; left: 204px; animation-delay: .3s; }
.light-3 { top: 238px; left: 88px; animation-delay: .8s; }
.light-4 { top: 313px; left: 225px; animation-delay: 1.2s; }
.light-5 { top: 345px; left: 114px; animation-delay: 1.7s; }

.bauble {
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold) 35%, #8f672d 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.bauble-1 { top: 165px; left: 110px; }
.bauble-2 { top: 232px; left: 238px; background: radial-gradient(circle at 35% 30%, #fff, #a8322b 35%, #60110e 100%); }
.bauble-3 { top: 284px; left: 135px; }
.bauble-4 { top: 344px; left: 260px; background: radial-gradient(circle at 35% 30%, #fff, #e9e3d4 35%, #a09a8d 100%); }

.gift {
  position: absolute;
  bottom: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #7f1f1b, #b63c34);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.gift::before,
.gift::after {
  content: "";
  position: absolute;
  background: var(--gold-2);
}

.gift::before {
  inset: 0 auto 0 45%;
  width: 10px;
}

.gift::after {
  left: 0;
  right: 0;
  top: 38%;
  height: 10px;
}

.gift-1 {
  left: 62px;
  width: 82px;
  height: 62px;
}

.gift-2 {
  right: 58px;
  width: 68px;
  height: 52px;
  background: linear-gradient(135deg, #d5b067, #9d7a34);
}

.gift-2::before,
.gift-2::after {
  background: #7f1f1b;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-top: 1px solid rgba(255, 250, 241, .16);
}

.hero-card-footer p {
  margin: 0;
  color: rgba(255, 250, 241, .74);
}

.hero-card-footer strong {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(202, 168, 102, .16);
  color: var(--gold-2);
  white-space: nowrap;
}

.intro-bar {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

.intro-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(18, 37, 31, .12);
  border: 1px solid rgba(202, 168, 102, .26);
}

.intro-grid div {
  display: grid;
  gap: 3px;
}

.intro-grid strong {
  font-size: 1.06rem;
}

.intro-grid span {
  color: var(--muted);
}

.intro-grid a {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
  border-bottom: 2px solid var(--gold);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2,
.split-grid h2,
.delivery h2,
.cta-panel h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.section-heading p,
.split-grid > div > p,
.delivery p,
.cta-panel p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 18px;
}

.section-dark .delivery p,
.section-dark .eyebrow {
  color: rgba(255, 250, 241, .75);
}

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

.collection-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(18, 37, 31, .08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(18, 37, 31, .14);
}

.card-visual {
  position: relative;
  min-height: 210px;
  background: linear-gradient(135deg, #1f3b32, #0c1e18);
}

.card-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 72% 35%, 64% 35%, 86% 70%, 75% 70%, 100% 100%, 0 100%, 25% 70%, 14% 70%, 36% 35%, 28% 35%);
  background: linear-gradient(180deg, #315d4f, #112920);
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.18));
}

.card-visual::after {
  content: "✦";
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-2);
  font-size: 36px;
  text-shadow: 0 0 28px rgba(244, 223, 170, .8);
}

.visual-gold {
  background:
    radial-gradient(circle at 30% 30%, rgba(244, 223, 170, .28), transparent 30%),
    linear-gradient(135deg, #13251f, #59431e);
}

.visual-snow {
  background:
    radial-gradient(circle at 75% 20%, rgba(255,255,255,.38), transparent 32%),
    linear-gradient(135deg, #253b39, #a99e8f);
}

.visual-red {
  background:
    radial-gradient(circle at 35% 24%, rgba(244, 223, 170, .24), transparent 30%),
    linear-gradient(135deg, #162b25, #7f1f1b);
}

.card-body {
  padding: 26px;
}

.card-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.card-body h3,
.feature h3,
.step h3,
.delivery-card h3,
.site-footer h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.card-body h3 {
  font-size: 2rem;
}

.card-body p {
  color: var(--muted);
}

.card-body ul,
.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.card-body li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(24, 35, 31, .78);
  font-weight: 700;
}

.card-body li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(202, 168, 102, .15);
}

.split-grid,
.delivery-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.quote-box {
  margin-top: 30px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--gold-2);
  box-shadow: 0 20px 50px rgba(18, 37, 31, .16);
}

.quote-box p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.2;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 241, .72);
  border: 1px solid rgba(18, 37, 31, .08);
}

.step span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--green);
  color: var(--gold-2);
  font-weight: 900;
}

.step h3 {
  font-size: 1.55rem;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-section {
  padding-top: 40px;
}

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

.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .76);
  border: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(202, 168, 102, .18);
  color: var(--green);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 1.7rem;
}

.feature p {
  margin: 12px 0 0;
  color: var(--muted);
}

.delivery {
  overflow: hidden;
  position: relative;
}

.delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}

.delivery .container {
  position: relative;
  z-index: 2;
}

.delivery-card {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .1);
  border: 1px solid rgba(255, 250, 241, .16);
  backdrop-filter: blur(16px);
}

.delivery-card h3 {
  font-size: 2.2rem;
  color: var(--gold-2);
}

.delivery-card .check-list li {
  color: rgba(255, 250, 241, .82);
}

.small-text {
  font-size: .98rem !important;
  color: rgba(255, 250, 241, .62) !important;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 20%, rgba(202, 168, 102, .22), transparent 22%),
    var(--white);
  border: 1px solid rgba(202, 168, 102, .24);
  box-shadow: 0 24px 60px rgba(18, 37, 31, .12);
}

.cta-actions {
  justify-content: flex-end;
  min-width: 260px;
}

.site-footer {
  padding: 64px 0 28px;
  background: #0a1713;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr;
  gap: 34px;
}

.footer-brand .brand-mark {
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  color: var(--green);
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 250, 241, .64);
}

.site-footer h3 {
  color: var(--gold-2);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.site-footer a {
  display: table;
  margin-top: 7px;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 250, 241, .12);
  font-size: .93rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes twinkle {
  0%, 100% { opacity: .65; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.18); }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .delivery-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 520px;
  }

  .tree-scene {
    min-height: 420px;
  }

  .collection-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 24px 80px rgba(18, 37, 31, .24);
    border: 1px solid var(--line);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 13px 15px;
  }

  .hero {
    padding: 70px 0 84px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .intro-grid {
    display: grid;
  }

  .intro-grid a {
    width: fit-content;
  }

  .section {
    padding: 68px 0;
  }

  .hero-card {
    border-radius: 30px;
    min-height: 470px;
  }

  .tree {
    transform: translateX(-50%) scale(.82);
    transform-origin: bottom center;
  }

  .gift-1 {
    left: 34px;
  }

  .gift-2 {
    right: 34px;
  }

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

  .cta-panel {
    padding: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

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