:root {
  --paper: #fffaf6;
  --paper-deep: #f8eee8;
  --blush: #efd4d6;
  --rose: #c77f89;
  --wine: #72283b;
  --wine-dark: #4f1727;
  --ink: #342327;
  --muted: #725e62;
  --gold: #b98a4d;
  --line: rgba(114, 40, 59, 0.14);
  --shadow: 0 24px 70px rgba(85, 36, 49, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}
.brand i { color: var(--rose); font-weight: 400; }
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 40, 59, 0.28);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 22px;
}

nav { display: flex; gap: 32px; font-size: 14px; color: var(--muted); }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--wine); }

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  font-weight: 650;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta {
  padding: 13px 20px;
  background: var(--wine);
  color: white;
  font-size: 13px;
}
.header-cta:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(79, 23, 39, .2); }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 670px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: 70px;
  padding: 72px 0 82px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -280px;
  top: 15px;
  border-radius: 50%;
  background: rgba(239, 212, 214, .25);
  filter: blur(1px);
  z-index: -1;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--gold); margin-right: 8px; }
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--wine-dark);
  font-weight: 400;
  letter-spacing: -.035em;
}
h1 { max-width: 600px; margin-bottom: 24px; font-size: clamp(56px, 6vw, 87px); line-height: .96; }
h1 em { color: var(--rose); font-weight: 400; }
.hero-text {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button { min-height: 54px; padding: 0 25px; }
.button-primary { background: var(--wine); color: white; }
.text-link { color: var(--wine); font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(114, 40, 59, .3); padding-bottom: 4px; }
.text-link span { margin-left: 7px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 38px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.trust-row b { color: var(--rose); margin-right: 5px; font-size: 15px; }

.hero-gallery { position: relative; display: grid; grid-template-columns: 1.35fr .8fr; gap: 14px; height: 515px; }
.gallery-main, .gallery-side img { overflow: hidden; border-radius: 170px 170px 22px 22px; }
.gallery-main { position: relative; box-shadow: var(--shadow); }
.gallery-main > img, .gallery-side img { height: 100%; object-fit: cover; }
.gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; padding: 34px 0; }
.gallery-side img { border-radius: 90px 90px 16px 16px; }
.image-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  padding: 15px 18px;
  background: rgba(255, 250, 246, .9);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  color: var(--wine);
}
.image-note b, .image-note small { display: block; }
.image-note b { font-family: Georgia, serif; font-size: 17px; }
.image-note small { margin-top: 3px; color: var(--muted); }
.floating-heart {
  position: absolute;
  right: -18px;
  top: 4px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  font-size: 33px;
  transform: rotate(9deg);
  box-shadow: 0 15px 35px rgba(79, 23, 39, .22);
}

.promise-strip {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 23px;
  padding: 16px 24px;
  background: var(--wine);
  color: #fff8f4;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.promise-strip i { color: var(--rose); font-size: 6px; }

.catalog-section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 48px; }
.section-heading h2, .story-copy h2, .final-cta h2 { margin-bottom: 0; font-size: clamp(42px, 5vw, 65px); line-height: 1.02; }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.58); border-radius: 18px; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { position: relative; height: 340px; overflow: hidden; background: var(--paper-deep); }
.product-image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-tag { position: absolute; top: 14px; left: 14px; padding: 8px 11px; border-radius: 999px; background: rgba(255,250,246,.92); color: var(--wine); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-body { padding: 24px 24px 21px; }
.product-body > small { color: var(--rose); font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.product-body h3 { margin: 8px 0 10px; color: var(--wine-dark); font-family: Georgia, serif; font-size: 25px; font-weight: 400; line-height: 1.15; }
.product-body p { min-height: 72px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--line); font-size: 12px; }
.product-footer > span { color: var(--muted); }
.product-footer a { color: var(--wine); font-weight: 800; }

.how-section { padding: 110px 24px 125px; background: var(--paper-deep); }
.section-heading.centered { display: block; max-width: 680px; margin: 0 auto 60px; text-align: center; }
.steps { width: min(1050px, 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps article { position: relative; padding: 38px 32px 35px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; text-align: center; }
.steps article > span { position: absolute; top: 15px; right: 18px; color: rgba(114, 40, 59, .24); font-family: Georgia, serif; font-size: 28px; }
.step-icon { width: 64px; height: 64px; margin: 0 auto 22px; display: grid; place-items: center; background: var(--blush); color: var(--wine); border-radius: 50%; font-size: 24px; }
.steps h3 { margin-bottom: 11px; color: var(--wine-dark); font-family: Georgia, serif; font-size: 23px; font-weight: 400; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.story-section { width: min(1060px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: .8fr 1fr; gap: 90px; align-items: center; padding: 120px 0; }
.story-image { position: relative; }
.story-image::before { content: ""; position: absolute; inset: -17px 17px 17px -17px; border: 1px solid rgba(185, 138, 77, .45); border-radius: 180px 180px 20px 20px; z-index: -1; }
.story-image img { max-height: 610px; object-fit: cover; border-radius: 180px 180px 20px 20px; box-shadow: var(--shadow); }
.story-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 25px 0 22px; }
blockquote { margin: 26px 0; padding: 18px 0 18px 24px; border-left: 2px solid var(--rose); color: var(--rose); font-family: Georgia, serif; font-size: 26px; font-style: italic; }
.strong { display: inline-block; }

.final-cta { position: relative; overflow: hidden; padding: 105px 24px 100px; background: var(--wine); color: #fff9f6; text-align: center; }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.final-cta::before { left: -110px; top: -170px; }
.final-cta::after { right: -90px; bottom: -190px; }
.final-cta .eyebrow { color: #e7bdc4; }
.final-cta h2 { color: white; }
.final-cta > p:not(.eyebrow) { max-width: 560px; margin: 20px auto 30px; color: rgba(255,255,255,.72); }
.button-light { background: var(--paper); color: var(--wine); }
.final-cta small { display: block; margin-top: 20px; color: rgba(255,255,255,.6); font-size: 11px; }
.sparkle { margin-bottom: 16px; color: #d8a55f; font-size: 30px; }

footer { width: min(1180px, calc(100% - 48px)); min-height: 120px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: var(--muted); font-size: 13px; }
.footer-brand { font-size: 22px; }
footer > a:last-child { color: var(--wine); font-weight: 700; }
footer > small { color: var(--muted); }
.mobile-order { display: none; }

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 55px; }
  .hero-copy { text-align: center; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-gallery { width: min(640px, 100%); margin: 0 auto; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 22px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-section { gap: 55px; }
}

@media (max-width: 680px) {
  .site-header { width: calc(100% - 32px); height: 76px; }
  .brand { font-size: 21px; }
  .brand-mark { width: 34px; height: 34px; }
  .header-cta { display: none; }
  .hero, .catalog-section, .story-section { width: calc(100% - 32px); }
  .hero { min-height: auto; padding: 50px 0 65px; }
  h1 { font-size: clamp(48px, 14.5vw, 70px); }
  .hero-text { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .button { width: 100%; max-width: 330px; }
  .trust-row { gap: 8px 13px; }
  .hero-gallery { grid-template-columns: 1fr .8fr; height: 385px; }
  .gallery-main, .gallery-side img { border-radius: 90px 90px 14px 14px; }
  .floating-heart { right: -7px; width: 58px; height: 58px; }
  .image-note { left: 10px; right: 10px; bottom: 10px; padding: 11px; }
  .image-note b { font-size: 13px; }
  .image-note small { font-size: 9px; }
  .promise-strip { gap: 10px 14px; font-size: 9px; }
  .catalog-section { padding: 82px 0 90px; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .story-copy h2, .final-cta h2 { font-size: 43px; }
  .product-grid, .steps, .story-section { grid-template-columns: 1fr; }
  .product-image { height: 385px; }
  .product-body p { min-height: auto; }
  .how-section { padding: 80px 16px 90px; }
  .steps { gap: 14px; }
  .story-section { gap: 52px; padding: 90px 0; }
  .story-image { width: min(390px, 90%); margin: 0 auto; }
  .final-cta { padding: 80px 22px 90px; }
  footer { width: calc(100% - 32px); flex-direction: column; justify-content: center; padding: 35px 0 105px; text-align: center; }
  footer p { margin: 0; }
  .mobile-order {
    position: fixed;
    z-index: 20;
    left: 16px;
    right: 16px;
    bottom: 14px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: var(--wine);
    color: white;
    box-shadow: 0 14px 35px rgba(79,23,39,.3);
    font-size: 14px;
    font-weight: 750;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
