/* ═══════════════════════════════════════════════════════════════
   sootheKA — Global Stylesheet
   Science with a Southern Touch
═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  /* Palette */
  --color-cream:      #FAF7F2;
  --color-cream-mid:  #F3EEE6;
  --color-cream-deep: #EDE5D8;
  --color-gold:       #C9A96E;
  --color-gold-light: #DFC08A;
  --color-gold-pale:  #F0E4CC;
  --color-charcoal:   #2A2825;
  --color-charcoal-2: #3D3A35;
  --color-charcoal-3: #6B6560;
  --color-warm-grey:  #9A9090;
  --color-white:      #FFFFFF;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 10rem;

  /* Transitions */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration:    600ms;

  /* Misc */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  20px;
  --border:     1px solid rgba(201, 169, 110, 0.25);
  --shadow-card: 0 8px 40px rgba(42, 40, 37, 0.08);
  --shadow-lg:   0 24px 80px rgba(42, 40, 37, 0.14);

  /* Layout */
  --max-w: 1200px;
  --nav-h:  72px;
}

/* ── Announcement Ribbon ── */
.ribbon {
  width: 100%;
  height: var(--ribbon-h);
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
}

.ribbon__text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ribbon__sep {
  margin: 0 0.75rem;
  opacity: 0.5;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
[hidden] { display: none !important; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-label--light { color: var(--color-gold-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.section-sub {
  font-size: 1rem;
  color: var(--color-charcoal-3);
  line-height: 1.7;
}

.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal--right {
  transform: translateX(40px) translateY(0);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}


/* ════════════════════════════════
   NAV
════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              backdrop-filter var(--duration) var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--space-md);
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
  transition: color var(--duration);
}

.nav__logo--ka {
  color: var(--color-gold);
}

.nav__links {
  display: none;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  transition: color var(--duration);
}

.nav__links a:hover { color: var(--color-gold); }

.nav__cta {
  padding: 0.5rem 1.25rem !important;
  border: 1px solid var(--color-gold) !important;
  border-radius: 100px !important;
  color: var(--color-charcoal) !important;
  transition: background var(--duration), color var(--duration) !important;
}

.nav__cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-white) !important;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-charcoal);
  transition: transform var(--duration), opacity var(--duration);
}

.nav.menu-open .nav__hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav.menu-open .nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.nav.menu-open .nav__hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: rgba(250, 247, 242, 0.98);
  border-top: var(--border);
}

.nav.menu-open .nav__mobile {
  display: flex;
}

.nav__mobile a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  padding: 0.5rem 0;
  transition: color var(--duration);
}

.nav__mobile a:hover { color: var(--color-gold); }


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 12s ease-out;
}

.hero.loaded .hero__bg-img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(250, 247, 242, 0.30) 0%,
    rgba(250, 247, 242, 0.55) 50%,
    rgba(250, 247, 242, 0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-h) + var(--ribbon-h) + var(--space-lg)) var(--space-md) var(--space-lg);
  max-width: 820px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.6;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-charcoal-2);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

/* Hero form */
.hero__form { width: 100%; }

.hero__input-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 520px;
  margin: 0 auto var(--space-xs);
}

@media (min-width: 520px) {
  .hero__input-wrap {
    flex-direction: row;
    gap: 0;
  }
}

.hero__input-wrap input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background: rgba(250, 247, 242, 0.96);
  border: 1px solid var(--color-gold-pale);
  border-radius: 100px 0 0 100px;
  outline: none;
  transition: border-color var(--duration);
}

@media (max-width: 519px) {
  .hero__input-wrap input[type="email"] {
    border-radius: 100px;
  }
}

.hero__input-wrap input[type="email"]:focus {
  border-color: var(--color-gold);
}

.hero__input-wrap input[type="email"]::placeholder {
  color: var(--color-warm-grey);
}

.hero__input-wrap button[type="submit"] {
  padding: 0.875rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-charcoal);
  border-radius: 0 100px 100px 0;
  transition: background var(--duration);
  white-space: nowrap;
}

@media (max-width: 519px) {
  .hero__input-wrap button[type="submit"] {
    border-radius: 100px;
  }
}

.hero__input-wrap button[type="submit"]:hover {
  background: var(--color-gold);
}

.hero__form-note {
  font-size: 0.75rem;
  color: var(--color-warm-grey);
  letter-spacing: 0.04em;
  margin-top: var(--space-xs);
}

.hero__form-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-gold);
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}

.hero__success-icon {
  font-style: normal;
  color: var(--color-gold);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  animation: fadeIn 1.5s 2s both;
}

.hero__scroll-hint span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal-3);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ════════════════════════════════
   STORY
════════════════════════════════ */
.story {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.story__text { max-width: 520px; }

.story__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

.story__heading em {
  font-style: italic;
  color: var(--color-gold);
}

.story__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-charcoal-2);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

/* KA meaning block */
.story__ka-meaning {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--color-cream-mid);
}

.story__ka-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.story__ka-lang {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-grey);
  margin-bottom: 0.25rem;
}

.story__ka-word {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.story__ka-def {
  font-size: 0.8125rem;
  color: var(--color-charcoal-2);
  font-style: italic;
}

.story__ka-divider {
  width: 1px;
  height: 60px;
  background: var(--color-gold-pale);
  flex-shrink: 0;
}

/* Story visual / placeholder */
.story__visual { display: flex; justify-content: flex-end; }

.story__img-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.story__img-inner {
  width: 100%;
  padding-bottom: 125%;
  background: var(--color-cream-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-card);
}

.story__img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-cream-deep) 0%, var(--color-gold-pale) 100%);
  opacity: 0.5;
}

.placeholder-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-warm-grey);
  text-align: center;
  line-height: 1.6;
}

.placeholder-label small {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 0.25rem;
  color: var(--color-gold);
}

.story__img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--color-gold-pale);
  border-radius: var(--radius-lg);
  z-index: -1;
}


/* ════════════════════════════════
   PRODUCTS
════════════════════════════════ */
.products {
  padding: var(--space-2xl) 0;
  background: var(--color-cream-mid);
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

/* Product card */
.product-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--duration), transform var(--duration);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 75%;
  background: var(--color-cream-deep);
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
}

.product-card:hover .product-card__img {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.3rem 0.75rem;
  background: rgba(250, 247, 242, 0.9);
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal-3);
  backdrop-filter: blur(8px);
}

.product-card__body {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.product-card__type {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--color-charcoal-3);
  line-height: 1.7;
  font-weight: 300;
}

.product-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.product-card__coming {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-warm-grey);
  white-space: nowrap;
}

.product-card__line {
  flex: 1;
  height: 1px;
  background: var(--color-gold-pale);
}

/* Alt card — slightly different tone */
.product-card--alt {
  background: var(--color-cream-mid);
}


/* ════════════════════════════════
   INGREDIENTS
════════════════════════════════ */
.ingredients {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.ingredients__bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-pale), var(--color-gold), var(--color-gold-pale), transparent);
  opacity: 0.6;
}

.ingredients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .ingredients__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .ingredients__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Ingredient card */
.ingredient-card {
  padding: var(--space-md);
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  transition: background var(--duration), box-shadow var(--duration), transform var(--duration);
  position: relative;
  overflow: hidden;
}

.ingredient-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-pale), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.ingredient-card:hover {
  background: var(--color-cream-mid);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.ingredient-card:hover::before {
  transform: scaleX(1);
}

.ingredient-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.ingredient-card__name {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.ingredient-card__origin {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.ingredient-card__benefit {
  font-size: 0.875rem;
  color: var(--color-charcoal-3);
  line-height: 1.75;
  font-weight: 300;
}


/* ════════════════════════════════
   WAITLIST CTA SECTION
════════════════════════════════ */
.waitlist {
  padding: var(--space-2xl) 0;
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist::after {
  content: 'KA';
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-family: var(--font-serif);
  font-size: 20vw;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.waitlist__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.waitlist__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.waitlist__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.waitlist__heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

.waitlist__sub {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

/* Waitlist form */
.waitlist__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.waitlist__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  width: 100%;
  max-width: 500px;
}

@media (min-width: 520px) {
  .waitlist__fields {
    grid-template-columns: 1fr 1.5fr;
  }
}

.waitlist__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.waitlist__field label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

.waitlist__field input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-cream);
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--duration), background var(--duration);
}

.waitlist__field input:focus {
  border-color: var(--color-gold);
  background: rgba(250, 247, 242, 0.1);
}

.waitlist__field input::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.waitlist__btn {
  width: 100%;
  max-width: 500px;
  padding: 1rem var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  background: var(--color-gold);
  border-radius: var(--radius-sm);
  transition: background var(--duration), transform 200ms;
}

.waitlist__btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-1px);
}

.waitlist__btn:active {
  transform: translateY(0);
}

.waitlist__note {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.35);
  letter-spacing: 0.04em;
}

.waitlist__success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-gold-light);
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--color-charcoal-2);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.footer__logo em {
  font-style: normal;
  color: var(--color-gold);
}

.footer__tagline {
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.4);
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  font-style: italic;
}

.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
}

@media (min-width: 768px) {
  .footer__links {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.footer__links a {
  font-size: 0.8125rem;
  color: rgba(250, 247, 242, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--duration);
}

.footer__links a:hover { color: var(--color-gold); }

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(250, 247, 242, 0.55);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--duration);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__social-link:hover { color: var(--color-gold); }

.footer__social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__launch {
  font-size: 0.8125rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  font-style: italic;
  font-family: var(--font-serif);
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.25);
  letter-spacing: 0.04em;
}


/* ════════════════════════════════
   KEYFRAMES
════════════════════════════════ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.8); }
}


/* ════════════════════════════════
   RESPONSIVE TWEAKS
════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .story__ka-meaning {
    padding: var(--space-sm) var(--space-md);
  }
}
