/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:       #F5EFE6;
  --cream-warm:  #EDE4D8;
  --roast:       #1A0F07;
  --dark-brown:  #2C1A0E;
  --brown:       #7B3F1A;
  --caramel:     #B5783A;
  --muted:       #8A7263;
  --border:      #D9CDBE;
  --white:       #FDFAF6;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --section-pad: clamp(4.5rem, 9vw, 8rem);
  --container-w: 1140px;
  --narrow-w:     680px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--roast);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── LAYOUT ────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--container-w);
  margin-inline: auto;
}

.container--narrow {
  max-width: var(--narrow-w);
}

.section { padding-block: var(--section-pad); }
.section--warm { background-color: var(--cream-warm); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background 0.22s, transform 0.15s;
}

.btn--primary {
  background-color: var(--dark-brown);
  color: var(--white);
}
.btn--primary:hover { background-color: var(--brown); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

/* Hero CTA — slightly lighter to stand out on dark bg */
.btn--hero {
  background-color: var(--white);
  color: var(--roast);
}
.btn--hero:hover { background-color: var(--cream); transform: translateY(-1px); }

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
}

.nav__spacer {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav__spacer--right { justify-content: flex-end; }

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav__icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  color: var(--roast);
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav__icon:hover { opacity: 1; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Placeholder — replace with <img class="hero__bg"> once you have the photo */
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg--placeholder {
  background:
    radial-gradient(ellipse 70% 60% at 60% 45%, #3d1f09 0%, #1a0c04 55%, #0d0602 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 1, 0.52);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(6rem, 20svh, 11rem) clamp(4rem, 8svh, 7rem);
}

.hero__icon {
  width: clamp(60px, 7vw, 84px);
  height: auto;
  margin: 0 auto 1.6rem;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.7)) brightness(1.15);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.8),
    0 6px 32px rgba(0,0,0,0.55);
}

.hero__headline em {
  font-style: italic;
  font-weight: 400;
}

.hero__micro {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 250, 246, 0.6);
  margin-bottom: 2.2rem;
}

/* ─── STORY ─────────────────────────────────────────────── */
.story__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 820px) {
  .story__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.story__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--roast);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.story__copy {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 300;
  color: var(--roast);
  margin-bottom: 1.2em;
  max-width: 60ch;
  line-height: 1.75;
}

.story__copy:last-child { margin-bottom: 0; }

/* Pull-quote aside */
.story__aside {
  position: sticky;
  top: 7rem;
}

.story__founder-img {
  width: 115%;
  margin-left: -7.5%;
  display: block;
  /* transparent PNG blends into cream background naturally */
  filter: drop-shadow(0 8px 24px rgba(90, 40, 10, 0.12));
  margin-bottom: -1.5rem; /* tuck slightly into the card below */
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .story__aside { position: static; }
  .story__founder-img {
    width: min(320px, 80%);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
}

.story__pull {
  position: relative;
  z-index: 2;
  padding: 2.2rem 2rem 1.4rem;
  border-left: 3px solid var(--caramel);
  background-color: var(--cream-warm);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--roast);
  line-height: 1.55;
  margin-bottom: 0.8rem;
  quotes: none;
}

.story__sig {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel);
}

/* ─── BENEFITS ──────────────────────────────────────────── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

@media (max-width: 640px) {
  .benefits__grid { grid-template-columns: 1fr; }
}

.benefit {
  padding: 3rem 2.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.benefit:last-child { border-right: none; }

@media (max-width: 640px) {
  .benefit { border-right: none; border-bottom: 1px solid var(--border); }
  .benefit:last-child { border-bottom: none; }
  .benefit--mid { border-right: none; }
}

/* Icon image — replaces the div placeholder */
.benefit__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.6rem;
  display: block;
  object-fit: contain;
  background-color: var(--cream);
  padding: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.benefit__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--roast);
  margin-bottom: 0.6rem;
}

.benefit__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  max-width: 22ch;
  margin-inline: auto;
}

/* ─── RESET / PAUSE ────────────────────────────────────── */
.reset {
  background-color: var(--roast);
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
}

.reset__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.reset__eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1.4rem;
}

.reset__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.reset__breath {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(253, 250, 246, 0.55);
  margin-bottom: 2rem;
}

.reset__sub {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 300;
  color: rgba(253, 250, 246, 0.5);
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.reset__cta {
  background-color: var(--caramel);
  color: var(--roast);
}
.reset__cta:hover { background-color: #c98840; transform: translateY(-1px); }

/* ─── WHAT'S INSIDE ─────────────────────────────────────── */
.inside__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  text-align: center;
  color: var(--roast);
  margin-bottom: 3rem;
}

.inside__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 820px) {
  .inside__gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 520px) {
  .inside__gallery { grid-template-columns: repeat(2, 1fr); }
}

.inside__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.inside__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16%;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background-color 0.2s;
}

.inside__img-wrap:hover {
  border-color: var(--caramel);
  background-color: #ede0cf;
}

.inside__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inside__item-name {
  font-size: 0.82rem;
  font-weight: 400;
  text-align: center;
  color: var(--roast);
  line-height: 1.4;
}

.inside__cta { text-align: center; }

/* ─── WAITLIST ───────────────────────────────────────────── */
.waitlist { background-color: var(--roast); }

.waitlist__inner { text-align: center; }

.waitlist__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.waitlist__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(253, 250, 246, 0.6);
  margin-bottom: 2.4rem;
}

.waitlist__fields {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist__input {
  flex: 1 1 260px;
  max-width: 320px;
  padding: 0.95rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  background: rgba(253, 250, 246, 0.07);
  border: 1px solid rgba(253, 250, 246, 0.18);
  border-radius: 2px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist__input::placeholder { color: rgba(253, 250, 246, 0.3); }
.waitlist__input:focus { border-color: var(--caramel); }

.waitlist__btn {
  background-color: var(--caramel);
  color: var(--roast);
}
.waitlist__btn:hover { background-color: #c98840; transform: translateY(-1px); }

.waitlist__privacy {
  margin-top: 1rem;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  color: rgba(253, 250, 246, 0.3);
}

.waitlist__feedback { margin-top: 1.2rem; min-height: 1.4rem; font-size: 0.88rem; }
.waitlist__feedback.success { color: #9dcf97; }
.waitlist__feedback.error   { color: #e8a598; }

/* ─── QUOTE ─────────────────────────────────────────────── */
.quote {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 9rem);
}

.quote__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder — swap with <img class="quote__bg"> */
.quote__bg--placeholder {
  background:
    radial-gradient(ellipse 80% 80% at 30% 60%, #2e1508 0%, #120801 100%);
}

.quote__overlay {
  position: absolute;
  inset: 0;
  /* fade from transparent on the left (show photo) to cream on the right (readable text) */
  background: linear-gradient(
    to right,
    rgba(245, 239, 230, 0.0)  0%,
    rgba(245, 239, 230, 0.55) 45%,
    rgba(245, 239, 230, 0.88) 65%,
    rgba(245, 239, 230, 0.96) 100%
  );
}

@media (max-width: 640px) {
  .quote__overlay {
    background: rgba(245, 239, 230, 0.88);
  }
  .quote__inner {
    text-align: center;
    margin-left: 0;
  }
}

.quote__inner {
  position: relative;
  z-index: 1;
  text-align: right;
  margin-left: auto;
}

.quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--roast);
  line-height: 1.55;
  margin-bottom: 1rem;
  quotes: none;
}

.quote__author {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brown);
}

/* ─── FOOTER ────────────────────────────────────────────── */
.footer {
  background-color: var(--roast);
  padding-block: 2.2rem 1.6rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 520px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__nav { flex-wrap: wrap; justify-content: center; gap: 1rem 1.6rem; }
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav a {
  font-size: 0.83rem;
  font-weight: 400;
  color: rgba(253, 250, 246, 0.6);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer__social a {
  color: rgba(253, 250, 246, 0.5);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--white); }

.footer__copy {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(253, 250, 246, 0.25);
}
