:root {
  --ink: #180f0a;
  --cocoa: #2a130d;
  --cocoa-2: #3e1c12;
  --cream: #fff7ea;
  --soft: #f5e8d5;
  --gold: #d8aa54;
  --gold-2: #f1d28a;
  --muted: #765f4e;
  --line: rgba(42, 19, 13, 0.14);
  --shadow: 0 24px 70px rgba(24, 15, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  color: #fff7ea;
  background: rgba(24, 15, 10, 0.66);
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: rgba(255, 247, 234, 0.82);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-2);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  box-shadow: 0 14px 34px rgba(216, 170, 84, 0.25);
}

.button.ghost {
  color: #fff7ea;
  border-color: rgba(255, 247, 234, 0.36);
  background: rgba(255, 247, 234, 0.08);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff7ea;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(24, 15, 10, 0.94) 0%, rgba(24, 15, 10, 0.74) 40%, rgba(24, 15, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(24, 15, 10, 0.72), rgba(24, 15, 10, 0.1) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 136px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 247, 234, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 54px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 180px));
  gap: 14px;
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 247, 234, 0.14);
  border-radius: 8px;
  background: rgba(255, 247, 234, 0.08);
}

.hero-stats dt {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 247, 234, 0.66);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.intro,
.collections,
.craft,
.gifting,
.testimonials,
.contact,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  padding: 96px 0 70px;
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.section-heading p,
.craft-copy p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.collections {
  padding: 82px 0 102px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.product-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf1;
  border: 1px solid rgba(42, 19, 13, 0.1);
  box-shadow: 0 18px 55px rgba(42, 19, 13, 0.08);
}

.feature-card {
  grid-row: span 2;
}

.feature-card img {
  height: 430px;
  object-fit: cover;
}

.product-body,
.text-card {
  padding: 28px;
}

.product-card span,
.gift-options span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.product-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cocoa-2);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.text-card {
  min-height: 252px;
}

.text-card.warm {
  color: #fff7ea;
  background:
    linear-gradient(145deg, rgba(216, 170, 84, 0.18), transparent 55%),
    var(--cocoa);
}

.text-card.warm p {
  color: rgba(255, 247, 234, 0.72);
}

.craft {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: center;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.craft-image img {
  height: 660px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.craft-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.craft-list div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.craft-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.craft-list span {
  color: var(--muted);
  line-height: 1.65;
}

.gifting {
  width: 100%;
  padding: 92px max(20px, calc((100% - 1160px) / 2));
  color: #fff7ea;
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 170, 84, 0.2), transparent 26%),
    linear-gradient(135deg, #1b0e09, #3a1a10 66%, #21100b);
}

.gifting .section-heading p {
  color: rgba(255, 247, 234, 0.72);
}

.gift-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gift-options div {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: 8px;
  background: rgba(255, 247, 234, 0.07);
}

.gift-options p {
  color: rgba(255, 247, 234, 0.68);
  line-height: 1.7;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 92px 0 40px;
}

.testimonials figure {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
}

blockquote {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  line-height: 1.25;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding: 70px 0 100px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #fffaf1;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(42, 19, 13, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--cocoa-2);
  font-size: 13px;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(42, 19, 13, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  margin-bottom: 10px;
}

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

.site-footer .brand-mark {
  color: var(--ink);
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    linear-gradient(rgba(24, 15, 10, 0.72), rgba(24, 15, 10, 0.76)),
    url("assets/hero.png") center / cover;
}

.thanks-card {
  width: min(640px, 100%);
  padding: 38px;
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.thanks-card .brand {
  margin-bottom: 34px;
}

.thanks-card h1 {
  color: var(--ink);
  font-size: clamp(42px, 8vw, 68px);
}

.thanks-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.thanks-card .button {
  margin-top: 18px;
  width: auto;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid rgba(255, 247, 234, 0.2);
    border-radius: 8px;
    background: rgba(255, 247, 234, 0.08);
  }

  .menu-toggle span {
    height: 2px;
    background: #fff7ea;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-header.open .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 247, 234, 0.18);
    border-radius: 8px;
    background: rgba(24, 15, 10, 0.94);
  }

  .site-header.open .nav-links a {
    padding: 14px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 76px);
  }

  .hero-stats,
  .intro,
  .product-grid,
  .craft,
  .gift-options,
  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 18px;
    padding-top: 68px;
  }

  .feature-card {
    grid-row: auto;
  }

  .feature-card img,
  .craft-image img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .hero-content {
    width: min(100% - 28px, 1160px);
    padding-top: 120px;
  }

  .hero-copy,
  .intro p:last-child,
  .section-heading p,
  .craft-copy p,
  .contact p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .intro,
  .collections,
  .craft,
  .testimonials,
  .contact {
    width: calc(100% - 28px);
  }

  .product-body,
  .text-card,
  .gift-options div,
  .testimonials figure,
  .contact-form {
    padding: 22px;
  }

  blockquote {
    font-size: 24px;
  }
}
