*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream:      #faf7f2;
  --cream-mid:  #f3ead9;
  --cream-warm: #eedec8;
  --charcoal:   #1e1c1a;
  --muted:      #7a7268;
  --olive:      #4d5e3a;
  --border:     #e5d9c8;
  --gold:       #c8943a;
  --white:      #ffffff;
  --pad-x:      clamp(20px, 6vw, 96px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ════════════════════════
   HERO
════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px var(--pad-x) 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenburns 18s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes kenburns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.09) translate(-1%, 1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 20%, rgba(8,4,2,.35) 100%),
    linear-gradient(180deg,
      rgba(10,5,2,.55) 0%,
      rgba(18,9,3,.45) 50%,
      rgba(10,5,2,.7)  100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(4,2,0,.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 760px;
}

.hero-logo {
  margin-bottom: 36px;
  filter: brightness(0) invert(1);
  height: 44px;
  display: block;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-headline em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.82);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(10px, 2vw, 20px);
  margin-bottom: 48px;
}

.count-sep {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: rgba(255,255,255,.3);
  line-height: 1.15;
  margin-top: clamp(12px, 2vw, 18px);
}

.count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: clamp(10px, 1.5vw, 16px);
  padding: clamp(12px, 2vw, 20px) clamp(14px, 2.5vw, 28px);
  min-width: clamp(72px, 11vw, 120px);
  text-align: center;
  letter-spacing: -.02em;
  transition: background .3s;
}

.count-num.tick {
  background: rgba(255,255,255,.14);
}

.count-label {
  margin-top: 10px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

.form-wrap {
  width: 100%;
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-form {
  display: flex;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  gap: 0;
  transition: border-color .25s, background .25s;
}

.hero-form:focus-within {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.14);
}

.hero-form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

.hero-form input::placeholder {
  color: rgba(255,255,255,.38);
}

.hero-form button {
  background: var(--white);
  color: var(--charcoal);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}

.hero-form button:hover {
  background: var(--cream-warm);
}

.hero-form button:active {
  transform: scale(.97);
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 16px 28px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn .4s ease;
}

.form-success .checkmark {
  width: 22px;
  height: 22px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-success .checkmark svg {
  width: 12px;
  height: 12px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  margin-bottom: 60px;
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal);
  margin-left: -8px;
  position: relative;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-count {
  color: rgba(255,255,255,.75);
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════
   VIDEO SHOWCASE
════════════════════════ */
.video-section {
  background: var(--charcoal);
  padding: 80px var(--pad-x);
}

.video-section .section-top {
  margin-bottom: 56px;
}

.video-section .section-heading {
  color: var(--white);
}

.video-section .section-sub {
  color: rgba(255,255,255,.6);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 2;
  transition: background .3s;
}

.video-card:hover::before {
  background: rgba(0,0,0,0.1);
}

.play-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.play-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.25);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.video-card:hover .play-icon {
  background: rgba(255,255,255,.35);
  border-color: rgba(255,255,255,.9);
  transform: scale(1.15);
}

.play-icon::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid rgba(255,255,255,.9);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* ════════════════════════
   PERKS
════════════════════════ */
.perks-section {
  background: var(--cream);
  padding: 100px var(--pad-x);
}

.section-top {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  background: var(--charcoal);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 14px auto 0;
}

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

.perk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}

.perk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.07);
}

.perk-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.perk-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.perk-icon.gold {
  background: #fef3e2;
  color: var(--gold);
}

.perk-icon.olive {
  background: #eef3ea;
  color: var(--olive);
}

.perk-icon.rose {
  background: #fceef0;
  color: #c45c72;
}

.perk-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}

.perk-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.perk-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════
   FEATURED CRAFT
════════════════════════ */
.featured-section {
  background: var(--cream-warm);
  padding: 100px var(--pad-x);
}

.featured-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
}

.gi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.gi-badge::before {
  content: '★';
  font-size: 14px;
}

.featured-content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.featured-content .highlight {
  background: rgba(200, 148, 58, 0.15);
  padding: 24px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.7;
}

/* ════════════════════════
   PRODUCT TEASER
════════════════════════ */
.teaser-section {
  background: var(--cream-mid);
  padding: 100px var(--pad-x);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.teaser-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.teaser-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.teaser-card:hover img {
  transform: scale(1.06);
}

.teaser-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,5,2,.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}

.teaser-card:hover .teaser-overlay {
  opacity: 1;
}

.teaser-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.teaser-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
  font-weight: 400;
}

.teaser-tag {
  display: inline-flex;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.teaser-card.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.teaser-card.tall img {
  height: 100%;
}

.teaser-caption {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: var(--muted);
}

.teaser-caption strong {
  color: var(--charcoal);
}

/* ════════════════════════
   SOCIAL FOLLOW
════════════════════════ */
.social-section {
  background: var(--charcoal);
  padding: 96px var(--pad-x);
  text-align: center;
}

.social-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.social-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.social-heading em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.65);
}

.social-sub {
  font-size: 17px;
  color: rgba(255,255,255,.4);
  margin-bottom: 52px;
}

.social-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 28px 36px;
  text-decoration: none;
  color: var(--white);
  min-width: 160px;
  transition: background .25s, border-color .25s, transform .25s;
}

.social-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

.social-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.social-card-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-card-icon.insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-card-icon.fb {
  background: #1877f2;
  color: white;
}

.social-card-icon.youtube {
  background: #ff0000;
  color: white;
}

.social-card-platform {
  font-size: 15px;
  font-weight: 600;
}

.social-card-handle {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ════════════════════════
   FOOTER
════════════════════════ */
.landing-footer {
  background: var(--cream-mid);
  border-top: 1px solid var(--border);
  padding: 36px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-footer .logo img {
  height: 30px;
  display: block;
}

.footer-copy {
  font-size: 14px;
  color: var(--muted);
  margin-left: auto;
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 900px) {
  .perks-grid {
    grid-template-columns: 1fr 1fr;
  }
  .teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .teaser-card.tall {
    grid-row: span 1;
    aspect-ratio: 1/1;
  }
  .featured-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 32px var(--pad-x) 80px;
  }
  .hero-logo {
    height: 36px;
    margin-bottom: 28px;
  }
  .countdown {
    gap: 8px;
  }
  .count-num {
    border-radius: 10px;
  }
  .count-sep {
    margin-top: 10px;
  }
  .social-proof {
    flex-direction: column;
    gap: 8px;
  }
  .perks-section {
    padding: 72px var(--pad-x);
  }
  .teaser-section {
    padding: 72px var(--pad-x);
  }
  .social-section {
    padding: 72px var(--pad-x);
  }
  .video-section {
    padding: 72px var(--pad-x);
  }
  .featured-section {
    padding: 72px var(--pad-x);
  }
  .perks-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .perk-card {
    padding: 32px 28px;
  }
  .teaser-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .video-card {
    aspect-ratio: 16/9;
  }
  .social-cards {
    flex-direction: column;
    align-items: center;
  }
  .social-card {
    width: 100%;
    max-width: 320px;
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px 24px;
  }
  .landing-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .landing-footer .footer-copy {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-form {
    border-radius: 14px;
    padding: 8px;
    flex-direction: column;
    gap: 8px;
  }
  .hero-form input {
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
  }
  .hero-form button {
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
  }
  .teaser-grid {
    gap: 10px;
  }
  .featured-content h2 {
    font-size: 28px;
  }
}

/* ════════════════════════
   WPFORMS STYLING
════════════════════════ */
.wpforms-form {
  display: flex;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  gap: 0;
  transition: border-color .25s, background .25s;
}

.wpforms-form:focus-within {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.14);
}

.wpforms-field-email input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
}

.wpforms-field-email input::placeholder {
  color: rgba(255,255,255,.38);
}

.wpforms-submit-container {
  flex-shrink: 0;
}

.wpforms-submit {
  background: var(--white);
  color: var(--charcoal);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}

.wpforms-submit:hover {
  background: var(--cream-warm);
}

.wpforms-submit:active {
  transform: scale(.97);
}
