:root {
  --cream: #f8f3ed;
  --paper: #fffaf5;
  --blush: #e9c8c2;
  --rose: #b97b76;
  --wine: #5b1729;
  --ink: #261b1d;
  --muted: #756669;
  --sage: #dce0ce;
  --line: rgba(38, 27, 29, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
:where(a, button, summary):focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}
button,
input {
  font: inherit;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 99;
  background: #fff;
  padding: 0.75rem;
}
.skip-link:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.announcement {
  display: block;
  background: var(--wine);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announcement:hover,
.announcement:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.announcement span {
  opacity: 0.75;
  margin-left: 0.5rem;
}
.site-header {
  height: 86px;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.wordmark img {
  width: 145px;
  height: 66px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
}
.site-header nav a:hover {
  color: var(--wine);
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.65rem 1.1rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  margin: 5px;
}
.hero {
  min-height: 710px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--blush);
}
.hero-copy {
  padding: clamp(4rem, 9vw, 9rem) clamp(2rem, 8vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.69rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.hero h1,
.section h2,
.newsletter h2 {
  font: 500 clamp(3.5rem, 6.2vw, 6.6rem)/0.95 var(--serif);
  letter-spacing: -0.045em;
  margin: 0;
}
.hero h1 em,
.section h2 em,
.newsletter h2 em {
  font-weight: 500;
  color: var(--wine);
}
.hero-text {
  font: 1.05rem/1.7 var(--sans);
  max-width: 460px;
  margin: 2rem 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.button {
  display: inline-block;
  padding: 0.95rem 1.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.button-dark {
  background: var(--wine);
  color: white;
}
.button-dark:hover {
  background: #3f0f1c;
}
.text-link {
  font-size: 0.79rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid;
  padding-bottom: 0.25rem;
}
.text-link span {
  margin-left: 0.4rem;
}
.hero-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-note {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(255, 250, 245, 0.92);
  padding: 0.7rem 1rem;
  font: italic 1rem var(--serif);
}
.marquee {
  overflow: hidden;
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding: 1rem 0;
  white-space: nowrap;
}
.marquee div {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-align: center;
}
.marquee span {
  color: var(--rose);
  margin: 0 2.5rem;
}
.section {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}
.section-heading h2,
.benefits h2,
.story h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.section-heading > p {
  max-width: 400px;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 1.4rem;
}
.product-image {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover img {
  transform: scale(1.025);
}
.product-image.blush {
  background: #edd4cf;
}
.product-image.cocoa {
  background: #d5c1b5;
}
.product-image.sage {
  background: var(--sage);
}
.product-image.cream {
  background: #eee5dc;
}
.badge {
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--wine);
  color: #fff;
  padding: 0.35rem 0.65rem;
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}
.product-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.product-info h3 {
  font: 500 1.35rem var(--serif);
  margin: 0;
}
.product-info p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.25rem 0;
}
.product-info strong {
  font-size: 0.85rem;
}
.coming-soon {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0;
  color: var(--wine);
  cursor: pointer;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.coming-soon span {
  float: right;
}
.benefits {
  background: var(--wine);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.benefits .eyebrow {
  color: var(--blush);
}
.benefits h2 em {
  color: var(--blush);
}
.benefit-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}
.benefit-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.benefit-list span {
  font-size: 0.65rem;
  color: var(--blush);
}
.benefit-list h3 {
  font: 500 1.5rem var(--serif);
  margin: 0 0 0.4rem;
}
.benefit-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}
.story-visual {
  aspect-ratio: 1/1;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.story-monogram {
  font: 500 clamp(5rem, 10vw, 10rem) var(--serif);
  letter-spacing: -0.16em;
}
.story-monogram span {
  font-style: italic;
  color: var(--wine);
}
.story-visual p {
  font: italic 1.1rem/1.6 var(--serif);
}
.story-copy > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 540px;
}
.story-copy .text-link {
  display: inline-block;
  margin-top: 1.25rem;
}
.newsletter {
  background: var(--blush);
  padding: clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8vw;
  align-items: end;
}
.newsletter h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}
#notify-form label {
  font: 500 1.1rem var(--serif);
  display: block;
  margin-bottom: 1.2rem;
}
.input-row {
  border-bottom: 1px solid var(--ink);
  display: flex;
}
.input-row input {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0.9rem 0;
  width: 100%;
}
.input-row button {
  background: none;
  border: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.form-status {
  font-size: 0.68rem;
  color: var(--muted);
}
footer {
  background: var(--ink);
  color: white;
  padding: 4rem clamp(1.25rem, 5vw, 5rem) 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.footer-logo {
  font: 500 2.6rem var(--serif);
}
footer > p {
  color: var(--blush);
  font: italic 1.1rem var(--serif);
  text-align: right;
}
.footer-links {
  grid-column: 1/-1;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
footer small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
}
footer small:last-child {
  text-align: right;
}
.toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  background: var(--wine);
  color: white;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  z-index: 30;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: none;
}
.reveal {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }
  .wordmark img {
    width: 120px;
    height: 56px;
  }
  .menu-toggle {
    display: block;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    min-height: 520px;
  }
  .hero-image {
    min-height: 540px;
  }
  .section-heading,
  .benefits,
  .story,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-visual {
    max-height: 650px;
  }
  .newsletter {
    gap: 3rem;
  }
}
@media (max-width: 580px) {
  .announcement {
    font-size: 0.6rem;
  }
  .announcement span {
    display: none;
  }
  .hero h1 {
    font-size: 3.4rem;
  }
  .hero-copy {
    padding: 4.5rem 1.25rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }
  .hero-image {
    min-height: 430px;
  }
  .section-heading {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-info h3 {
    font-size: 1.5rem;
  }
  .benefits {
    gap: 3rem;
  }
  .story {
    padding-inline: 0;
  }
  .story-copy {
    padding: 0 1.25rem;
  }
  .story-visual {
    aspect-ratio: 4/5;
  }
  .newsletter {
    padding-inline: 1.25rem;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer > p,
  footer small:last-child {
    text-align: left;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .product-image img {
    transition: none;
  }
}
