
:root {
  --ivory: #fbf4e8;
  --champagne: #c7a46b;
  --blush: #e8c8bb;
  --taupe: #9a7a64;
  --espresso: #2f211a;
  --brown: #594035;
  --cream-card: rgba(255, 250, 242, 0.78);
  --border: rgba(89, 64, 53, 0.16);
  --shadow: 0 30px 80px rgba(63, 43, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--espresso);
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 200, 187, 0.56), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(217, 189, 130, 0.34), transparent 26rem),
    linear-gradient(135deg, var(--ivory), #f8eddf 42%, #f1decf);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.1rem, 4vw, 4rem);
  backdrop-filter: blur(18px);
  background: rgba(251, 244, 232, 0.78);
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  letter-spacing: 0.08em;
  font-weight: 400;
}

nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 33, 26, 0.76);
}

nav a:hover {
  color: var(--espresso);
}

.hero {
  min-height: calc(100vh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 6rem);
}

.hero-image-card,
.image-stack,
.story img,
.note-card,
.batch-card,
.price-card,
.waitlist-form {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-image-card,
.image-stack,
.story img {
  overflow: hidden;
}

.hero-image-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-stack img,
.story img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--taupe);
  font-size: 0.79rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
  color: var(--espresso);
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.9rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.hero-text,
.section p {
  max-width: 42rem;
  color: rgba(47, 33, 26, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.2rem 0 0.85rem;
}

.button,
.waitlist-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(47, 33, 26, 0.12);
}

.primary,
.waitlist-form button {
  background: var(--espresso);
  color: var(--ivory);
}

.secondary {
  border-color: var(--border);
  color: var(--espresso);
  background: rgba(255, 250, 242, 0.4);
}

.microcopy {
  color: var(--taupe);
  font-size: 0.94rem;
}

.marquee {
  display: flex;
  overflow: hidden;
  justify-content: center;
  gap: clamp(1rem, 4vw, 4rem);
  padding: 1.15rem;
  background: rgba(47, 33, 26, 0.92);
  color: var(--ivory);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem);
}

.split,
.story,
.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.notes-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.note-card {
  padding: 1.25rem 1.35rem;
}

.note-card span {
  color: var(--champagne);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

.note-card p {
  margin: 0.35rem 0 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--espresso);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.batch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 1.2rem;
}

.batch-card,
.price-card {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.batch-card ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.batch-card li {
  padding-left: 1.55rem;
  position: relative;
  color: rgba(47, 33, 26, 0.78);
}

.batch-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--champagne);
}

.price-card {
  background: var(--espresso);
  color: var(--ivory);
}

.price-card p,
.price-card span {
  color: rgba(251, 244, 232, 0.74);
}

.price-card hr {
  border: 0;
  border-top: 1px solid rgba(251, 244, 232, 0.18);
  margin: 1.5rem 0;
}

.small {
  font-size: 0.95rem !important;
}

.story-copy {
  align-self: center;
}

.signup {
  align-items: start;
}

.waitlist-form {
  padding: clamp(1.3rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  height: 3.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  color: var(--espresso);
  font-size: 1rem;
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(199, 164, 107, 0.13);
}

.waitlist-form input[name="_honey"] {
  display: none;
}

.waitlist-form p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(47, 33, 26, 0.6);
}

.thanks-page {
  min-height: calc(100vh - 77px);
  width: min(780px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.2rem;
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.thanks-page h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.9;
  font-weight: 500;
}

.thanks-page p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: rgba(47, 33, 26, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.8;
}

footer {
  padding: 3rem clamp(1.2rem, 5vw, 6rem);
  border-top: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.42);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

footer p {
  color: var(--taupe);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--brown);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    gap: 1rem;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hero,
  .split,
  .batch,
  .story,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  h1 {
    max-width: 9ch;
  }

  .marquee {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  nav {
    font-size: 0.72rem;
  }

  .button,
  .waitlist-form button {
    width: 100%;
  }
}


/* Luravéa refined typography update */
.wordmark {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.115em;
  font-size: clamp(1.8rem, 2.9vw, 2.65rem);
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  letter-spacing: -0.055em;
}

h2 {
  letter-spacing: -0.04em;
}

h3 {
  letter-spacing: -0.025em;
}

.hero-text,
.section p {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.eyebrow,
nav,
.button,
.waitlist-form button,
.note-card span,
.waitlist-form label {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

.eyebrow {
  letter-spacing: 0.22em;
  font-size: 0.74rem;
}

nav {
  font-weight: 700;
  letter-spacing: 0.12em;
}

.button,
.waitlist-form button {
  font-weight: 800;
  letter-spacing: 0.105em;
}

.note-card p {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.price-card h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 500;
}

footer .wordmark {
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
}


/* Image crop fix: show full product images */
.hero-image-card,
.image-stack,
.story img {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.72), transparent 38%),
    linear-gradient(135deg, rgba(251, 244, 232, 0.92), rgba(241, 222, 207, 0.86));
}

.hero-image-card img,
.image-stack img,
.story img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-image-card img {
  aspect-ratio: auto;
  max-height: 620px;
  padding: clamp(0.45rem, 1.2vw, 1rem);
}

.image-stack img,
.story img {
  aspect-ratio: auto;
  max-height: 720px;
  padding: clamp(0.45rem, 1.2vw, 1rem);
}

@media (max-width: 920px) {
  .hero-image-card img,
  .image-stack img,
  .story img {
    max-height: none;
  }
}


/* Remove framed image boxes and white borders */
.hero-image-card,
.image-stack,
.story img {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
}

.hero-image-card {
  overflow: visible !important;
}

.image-stack {
  overflow: visible !important;
}

.hero-image-card img,
.image-stack img,
.story img {
  padding: 0 !important;
  border: none !important;
  border-radius: 1.75rem;
  box-shadow: 0 26px 70px rgba(63, 43, 34, 0.12);
}

/* Keep the story image elegant but unframed */
.story img {
  background: transparent !important;
}


/* Final hero image fix: no side gutters, no card background */
.hero-image-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
  max-height: none !important;
  object-fit: initial !important;
  object-position: initial !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 1.75rem;
  box-shadow: 0 26px 70px rgba(63, 43, 34, 0.12);
}

/* Keep lower portrait images clean but not framed */
.image-stack,
.story img {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.image-stack img,
.story img {
  padding: 0 !important;
  border: none !important;
}


/* Softer first-release strip replacing the large Batch 01 section */
.first-release-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
  padding: 1rem clamp(1.2rem, 5vw, 6rem);
  background: rgba(255, 250, 242, 0.52);
  border-bottom: 1px solid rgba(89, 64, 53, 0.12);
  color: rgba(47, 33, 26, 0.74);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.first-release-strip strong {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: none;
}

@media (max-width: 520px) {
  .first-release-strip {
    flex-direction: column;
    gap: 0.35rem;
  }
}


/* Emotional brand story section */
.home-story {
  padding-top: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(2rem, 5vw, 5rem);
}

.home-story-card {
  max-width: 64rem;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 200, 187, 0.42), transparent 18rem),
    rgba(255, 250, 242, 0.62);
  border: 1px solid rgba(89, 64, 53, 0.10);
  box-shadow: 0 26px 70px rgba(63, 43, 34, 0.08);
  text-align: center;
}

.home-story-card h2 {
  max-width: 12ch;
  margin: 0 auto 1.4rem;
}

.home-story-card p {
  margin-left: auto;
  margin-right: auto;
}

.home-story-card p + p {
  margin-top: 0.75rem;
}


/* Prominent story section update */
.prominent-story {
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
}

.story-shell {
  position: relative;
  overflow: hidden;
  max-width: 78rem;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 4rem);
  border-radius: 2.7rem;
  background:
    radial-gradient(circle at 8% 15%, rgba(232, 200, 187, 0.55), transparent 22rem),
    radial-gradient(circle at 92% 20%, rgba(199, 164, 107, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.86), rgba(241, 222, 207, 0.72));
  border: 1px solid rgba(89, 64, 53, 0.10);
  box-shadow: 0 34px 90px rgba(63, 43, 34, 0.12);
}

.story-shell::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(199, 164, 107, 0.20);
  border-radius: 2.1rem;
  pointer-events: none;
}

.story-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.story-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(89, 64, 53, 0.10);
  color: rgba(47, 33, 26, 0.72);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.story-heading h2 {
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.88;
  max-width: 8.5ch;
  letter-spacing: -0.065em;
}

.story-copy-card {
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border-radius: 2rem;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(89, 64, 53, 0.10);
  box-shadow: 0 24px 70px rgba(63, 43, 34, 0.08);
}

.story-copy-card p {
  margin: 0;
  max-width: none;
}

.story-copy-card p + p {
  margin-top: 1rem;
}

.story-copy-card .story-lede {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--espresso);
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

@media (max-width: 920px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-heading h2 {
    max-width: 10ch;
  }
}

@media (max-width: 520px) {
  .story-shell {
    border-radius: 1.8rem;
  }

  .story-shell::before {
    display: none;
  }

  .story-kicker {
    justify-content: center;
  }

  .story-heading {
    text-align: center;
  }

  .story-heading h2 {
    margin: 0 auto;
  }
}


/* Navbar story link update */
nav a[href="#baghdad-story"] {
  color: rgba(47, 33, 26, 0.86);
}

@media (max-width: 520px) {
  nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}


/* Stronger emotional story copy update */
.story-copy-card strong {
  color: var(--espresso);
  font-weight: 800;
}

.story-copy-card p:last-child {
  color: var(--espresso);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
