:root {
  --cream: #f7f1e8;
  --cream-2: #fff8eb;
  --black: #101010;
  --soft-black: #171412;
  --gold: #b68a35;
  --deep-gold: #8c6725;
  --crimson: #7a1222;
  --text: #151515;
  --muted: rgba(21,21,21,.68);
  --line: rgba(182, 138, 53, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.topline {
  background: var(--black);
  color: var(--gold);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 6vw;
  background: rgba(247, 241, 232, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
}

.crest {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: radial-gradient(circle at 35% 25%, #a63a43, var(--crimson));
  color: var(--gold);
  border: 2px solid var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
}

nav a, .nav-cta {
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding: 76px 6vw 95px;
  background:
    radial-gradient(circle at 83% 26%, rgba(182, 138, 53, .24), transparent 29%),
    radial-gradient(circle at 8% 18%, rgba(122,18,34,.08), transparent 24%),
    linear-gradient(135deg, #f8f0df 0%, #fff9ed 52%, #efe0c6 100%);
}

.eyebrow {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 17px;
}

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

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

.hero h1 {
  font-size: clamp(64px, 8vw, 132px);
  line-height: .86;
  letter-spacing: -0.055em;
  max-width: 860px;
}

.hero-promise {
  margin: 28px 0 0;
  color: var(--crimson);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(27px, 2.6vw, 43px);
  font-weight: 700;
}

.hero-body {
  max-width: 610px;
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.primary {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: white;
  box-shadow: 0 16px 35px rgba(140,103,37,.25);
}

.secondary {
  color: var(--black);
  border: 1px solid var(--gold);
  background: rgba(255,255,255,.2);
}

.light { color: white; }

.product-stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.product-stage img {
  position: relative;
  width: min(780px, 100%);
  filter: drop-shadow(0 35px 42px rgba(0,0,0,.28));
  animation: float 5.5s ease-in-out infinite;
}

.halo {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,138,53,.2), transparent 65%);
  filter: blur(5px);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--black);
  color: var(--gold);
}

.marquee-track {
  display: flex;
  gap: 46px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.story-section {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  padding: 110px 8vw;
  align-items: center;
}

.story-card {
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--cream-2);
  box-shadow: 0 24px 65px rgba(17,17,17,.06);
}

.story-card h2,
.section-heading h2,
.black-inner h2,
.consumer-copy h2,
.faq-section h2,
.sample-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: .94;
}

.story-copy p {
  font-size: 20px;
  line-height: 1.85;
  color: var(--muted);
}

.restaurant-section,
.shop-section,
.testimonials,
.faq-section {
  padding: 110px 6vw;
}

.section-heading {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.benefit-grid {
  margin: 48px auto 0;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit,
.product-card,
.testimonial {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,248,235,.78);
  box-shadow: 0 22px 48px rgba(17,17,17,.055);
}

.benefit {
  padding: 34px 26px;
}

.number {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  margin-bottom: 18px;
}

.benefit h3,
.product-card h3 {
  font-size: 31px;
  line-height: .98;
}

.benefit p,
.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

.black-luxury {
  padding: 120px 8vw;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(122,18,34,.34), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(182,138,53,.16), transparent 28%),
    #0e0e0e;
  text-align: center;
}

.black-inner {
  max-width: 850px;
  margin: 0 auto;
}

.black-inner p:last-child {
  color: rgba(255,255,255,.76);
  font-size: 19px;
  line-height: 1.8;
}

.product-grid {
  max-width: 1180px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  padding: 38px 30px;
}

.product-card.featured {
  background: var(--black);
  color: white;
  transform: translateY(-14px);
}

.tag,
.pieces {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured .tag,
.featured .pieces { color: var(--gold); }

.price {
  color: var(--black) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 49px;
  margin: 18px 0;
}

.featured .price { color: white !important; }

.full { width: 100%; margin-top: 16px; }

.testimonials {
  background:
    radial-gradient(circle at 10% 12%, rgba(182,138,53,.13), transparent 30%),
    linear-gradient(180deg, var(--cream-2), var(--cream));
}

.testimonial-grid {
  max-width: 1180px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.testimonial {
  min-height: 350px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--gold);
  letter-spacing: .12em;
  font-size: 14px;
}

.testimonial p {
  margin: 24px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  line-height: 1.23;
}

.testimonial strong {
  display: block;
  color: var(--crimson);
}

.testimonial span {
  display: block;
  margin-top: 5px;
  color: rgba(17,17,17,.62);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.consumer-section {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center;
  padding: 110px 8vw;
  background: var(--black);
  color: white;
}

.consumer-copy p:last-child {
  color: rgba(255,255,255,.76);
  font-size: 19px;
  line-height: 1.8;
}

.consumer-panel {
  min-height: 360px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 42px;
  border: 1px solid rgba(182,138,53,.38);
  background:
    radial-gradient(circle at center, rgba(182,138,53,.12), transparent 55%),
    rgba(255,255,255,.04);
}

.crest.big {
  width: 96px;
  height: 96px;
  font-size: 62px;
}

.consumer-panel p {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.faq-list {
  max-width: 900px;
  margin: 46px auto 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

details:last-child { border-bottom: 1px solid var(--line); }

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

details p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
}

.sample-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  padding: 110px 8vw;
  background: var(--black);
  color: white;
}

.sample-copy p:last-child {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.8;
}

.sample-form {
  display: grid;
  gap: 14px;
}

input, select, button {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(182,138,53,.45);
  padding: 0 20px;
  font: inherit;
}

input, select {
  background: rgba(255,255,255,.08);
  color: white;
}

input::placeholder { color: rgba(255,255,255,.62); }
select { color: rgba(255,255,255,.72); }

button {
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: white;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sticky-order {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.footer {
  padding: 50px 6vw;
  text-align: center;
}

.footer-logo { justify-content: center; }

.footer p {
  margin: 9px 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) and (min-width: 861px) {
  .benefit-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .topline { font-size: 10px; }
  nav { display: none; }
  .nav-cta { margin-left: auto; font-size: 10px; padding: 11px 13px; }
  .logo { font-size: 29px; }
  .hero,
  .story-section,
  .consumer-section,
  .sample-section {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 50px; }
  .product-stage { order: -1; min-height: 300px; }
  .product-stage img { width: 108%; max-width: none; }
  .benefit-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .product-card.featured { transform: none; }
  .story-card { padding: 34px; }
  .sticky-order { left: 18px; right: 18px; text-align: center; justify-content: center; }
}
