:root {
  --bg: #fffaf9;
  --surface: #fffdfc;
  --pink-soft: #f7e8ed;
  --pink-strong: #f1dce3;
  --text: #2f2622;
  --muted: #665751;
  --line: #eadcd5;
  --gold: #b78c31;
  --gold-soft: #d7bb7a;
  --dark: #24232a;
  --shadow: 0 14px 40px rgba(55, 39, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #fff7f9 0, #fffaf9 36%),
    radial-gradient(circle at 95% 100%, #fff4f7 0, #fffaf9 34%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

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

h1, h2, h3 {
  font-family: "Fraunces", serif;
  letter-spacing: 0.02em;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

p {
  margin: 0 0 0.6rem;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.notice-bar {
  background: repeating-linear-gradient(
    90deg,
    #f6de8c 0 18px,
    #fff6d8 18px 36px
  );
  border-bottom: 1px solid #e4cb80;
  padding: 0.45rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: #5b4938;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(5px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(26, 23, 20, 0.12);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 253, 252, 0.92);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d8bf80;
  background: #fdf5dc;
  color: var(--gold);
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-text {
  font-family: "Fraunces", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  color: #58473f;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid #ccb594;
  background: #fff;
  color: #4f4038;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #4f4037;
}

.nav-link.active {
  color: var(--gold);
}

.hero-section {
  padding: 2.1rem 0 1.3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy,
.hero-visual {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.hero-subtext {
  color: var(--muted);
  max-width: 56ch;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-metrics {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-metrics p {
  margin: 0;
  border: 1px solid #ead8c6;
  padding: 0.45rem 0.65rem;
  background: #fff8ef;
  font-size: 0.8rem;
  color: #5d4f48;
}

.hero-metrics strong {
  color: #3a312d;
}

.hero-visual {
  overflow: hidden;
  padding: 1rem;
}

.hero-shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  height: 100%;
}

.hero-shot {
  margin: 0;
  min-height: 360px;
  border: 1px solid #ebddd5;
  background: linear-gradient(165deg, #fff7fa 0%, #f6e8ee 80%);
  display: grid;
  place-items: center;
  padding: 0.8rem;
  overflow: hidden;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.02);
}

.btn {
  border: 1px solid transparent;
  text-decoration: none;
  padding: 0.72rem 1.1rem;
  border-radius: 2px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

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

.btn-gold {
  color: #2e241d;
  background: linear-gradient(180deg, #f2e0b0 0%, #daba6f 100%);
  border-color: #cfad65;
}

.btn-dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.btn-outline {
  border-color: #bca493;
  color: #5b4b42;
  background: transparent;
}

.btn.slim {
  padding: 0.55rem 0.8rem;
}

.launch-panel {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, #fff9fb 0%, #f8edf1 45%, #fffaf8 100%);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.launch-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.launch-copy p:last-child {
  color: var(--muted);
}

.countdown-wrap {
  display: flex;
  gap: 0.55rem;
}

.count-item {
  min-width: 85px;
  text-align: center;
  border: 1px solid #e2cfa6;
  background: #fffdf6;
  padding: 0.55rem;
}

.count-number {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--gold);
}

.count-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #67574d;
}

.products-section {
  padding: 2.2rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-media {
  height: 360px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(165deg, #fff8fb 0%, #f5e9ee 84%);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.03);
}

.product-body {
  padding: 1.1rem 1rem 1.35rem;
}

.product-body h3 {
  font-size: 2rem;
}

.subtitle {
  color: #5d4f47;
  font-weight: 700;
}

.benefits {
  margin: 0.7rem 0;
  padding-left: 1.1rem;
  color: #5f544f;
  font-size: 0.94rem;
}

.ingredients {
  font-weight: 800;
  color: #6a563f;
  margin: 0.8rem 0 0.9rem;
}

.card-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      #f9ecf1 0 24px,
      #fff7fa 24px 48px
    );
}

.trust-items {
  min-height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.trust-items p {
  margin: 0;
  font-weight: 700;
  color: #554942;
  font-size: 0.9rem;
}

.about-preview {
  margin: 2rem auto 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  background: #fffdfb;
  padding: clamp(1rem, 2.5vw, 1.8rem);
}

.about-preview h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.about-preview p {
  color: var(--muted);
}

.preview-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.about-main {
  padding: 1.6rem 0 2rem;
}

.about-hero {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fff8fb 0%, #fffdfc 62%);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 2.7vw, 1.7rem);
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-hero img {
  border: 1px solid var(--line);
}

.about-content {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem;
}

.value-card h2 {
  font-size: 1.55rem;
}

.value-card p {
  color: var(--muted);
}

.contact-section {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(1rem, 2.7vw, 1.7rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.contact-card {
  border: 1px solid #efdfd6;
  background: #fff9f5;
  padding: 0.95rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.contact-card p {
  margin: 0;
  color: #5c514a;
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      #f4df90 0 18px,
      #fdf5d8 18px 36px
    );
  padding: 0.8rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: center;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid #e6d39f;
  padding: 1rem;
}

.footer-title {
  margin: 0 0 0.4rem;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-grid p {
  margin: 0.2rem 0;
  color: #5a4c43;
}

.gst {
  font-size: 0.82rem;
  opacity: 0.85;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 9, 0.55);
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100dvh - 2rem);
  margin: 0;
  border: 1px solid var(--line);
  background: #fffdfc;
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: 0 16px 50px rgba(19, 14, 11, 0.34);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-close {
  border: 1px solid #d8c6b7;
  background: #fff;
  color: #52453d;
  padding: 0.35rem 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  float: right;
  cursor: pointer;
}

.modal-image-wrap {
  margin: 0.3rem 0 0.8rem;
  border: 1px solid #e9dbd2;
  background: linear-gradient(160deg, #fff9fc 0%, #f4e6ec 95%);
  height: 220px;
  display: grid;
  place-items: center;
  padding: 0.8rem;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#modalText {
  color: #5f534c;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    min-height: 0;
  }

  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 4%;
    gap: 0.5rem;
    border-bottom: 1px solid var(--line);
    background: #fffdfb;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .main-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 0.3rem 0;
  }

  .launch-panel {
    grid-template-columns: 1fr;
  }

  .countdown-wrap {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .product-grid,
  .footer-grid,
  .about-preview {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-media {
    height: 300px;
  }

  .hero-shot {
    min-height: 280px;
  }

  .hero-shot-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .preview-actions .btn {
    width: 100%;
    text-align: center;
  }

  .modal {
    padding: 0.75rem;
  }

  .modal-card {
    width: min(520px, 100%);
    max-height: calc(100dvh - 1.5rem);
    padding: 1rem 0.9rem 1rem;
  }

  .modal-image-wrap {
    height: 180px;
  }
}
