:root {
  --wine: #7b2636;
  --wine-dark: #45151f;
  --rose: #b76a78;
  --cream: #fff7ef;
  --paper: #ffffff;
  --ink: #211a1d;
  --muted: #76686d;
  --soft: #f8ece9;
  --line: rgba(69, 21, 31, .12);
  --shadow: 0 22px 70px rgba(69, 21, 31, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  padding-bottom: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }
.section-pad { padding: 82px 0; }
.centered { text-align: center; max-width: 800px; }
p { margin: 0; color: var(--muted); }
.spaced-paragraph { margin-top: 16px; }

.top-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--wine-dark), var(--wine), #a34759);
  font-size: 14px;
  text-align: center;
}
.top-strip span {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px min(42px, 5vw);
  background: rgba(255, 247, 239, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: .06em; color: var(--wine-dark); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-family: Georgia, serif;
}
.site-header nav { display: flex; gap: 24px; color: var(--muted); font-weight: 650; }
.site-header nav a:hover { color: var(--wine); }
.header-cta {
  color: #fff;
  background: var(--wine);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(123,38,54,.22);
}

.hero {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(183,106,120,.28), transparent 34%),
    linear-gradient(180deg, #fff8f2 0%, #f9ebe7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 120px -20% auto auto;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--wine);
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
.eyebrow.light { color: #ffd8df; }

h1, h2, h3 { margin: 0 0 14px; line-height: 1.07; letter-spacing: -.035em; }
h1 { font-size: clamp(40px, 6vw, 72px); color: var(--wine-dark); }
h2 { font-size: clamp(30px, 4vw, 52px); color: var(--wine-dark); }
h3 { font-size: 22px; color: var(--wine-dark); }
.lead { max-width: 660px; font-size: clamp(18px, 2vw, 21px); }
.lead strong { color: var(--wine-dark); }

.offer-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow);
}
.offer-card > div {
  padding: 14px;
  border-radius: 18px;
  background: #fff;
}
.muted { display: block; margin-bottom: 4px; color: var(--muted); font-size: 13px; }
.offer-card strong { display: block; color: var(--wine-dark); font-size: 17px; }
.offer-card .price { color: var(--wine); font-size: 30px; letter-spacing: -.04em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.primary-btn, .secondary-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), #a94155);
  box-shadow: 0 16px 34px rgba(123,38,54,.28);
}
.secondary-btn {
  color: var(--wine-dark);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.13);
}
.ghost-btn {
  color: var(--wine-dark);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
}
.primary-btn:hover, .secondary-btn:hover, .ghost-btn:hover, .header-cta:hover { transform: translateY(-2px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; color: var(--wine-dark); font-size: 14px; font-weight: 750; }
.trust-row span { padding: 8px 12px; background: rgba(255,255,255,.75); border: 1px solid var(--line); border-radius: 999px; }

.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.shine {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(248,220,217,.55));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8), 0 30px 90px rgba(123,38,54,.14);
}
.hero-stack {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
}
.hero-main-img {
  width: 100%;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 32px 48px rgba(69,21,31,.25);
}
.floating-badge {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 30px;
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 18px;
  color: #fff;
  background: var(--wine);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(69,21,31,.25);
}
.floating-badge small { opacity: .78; }
.floating-badge strong { font-size: 30px; line-height: 1; }
.floating-badge span { font-size: 13px; }

.assurance-band {
  background: linear-gradient(180deg, #fff 0%, #fff5f1 100%);
}
.assurance-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}
.assurance-note, .notice-card, .benefit-card, .step-card, details, .product-card, .gallery-card, .review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.assurance-note, .notice-card { padding: 34px; background: linear-gradient(145deg, #fff, #fff4f1); }

.soft-section { background: #fff; }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.section-intro { margin: 0 auto 32px; max-width: 780px; font-size: 18px; }
.benefit-grid { display: grid; gap: 18px; margin-top: 36px; }
.six-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-card { padding: 26px; min-height: 220px; }
.benefit-card .icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--wine);
  border-radius: 16px;
  font-size: 22px;
}

.product-section { background: linear-gradient(180deg, var(--cream), #fff); }
.product-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: center; }
.product-card { padding: 34px; background: radial-gradient(circle at center, #fff 0, #fff 35%, #f6ddd8 100%); }
.product-card img { margin: auto; max-height: 580px; object-fit: contain; }
.framed-card img { border-radius: 24px; }
.check-list { display: grid; gap: 12px; margin: 24px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: var(--wine-dark); font-weight: 720; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--wine); font-weight: 900; }
.compact-list { margin-bottom: 0; }

.steps-grid { display: grid; gap: 20px; margin-top: 36px; }
.four-grid { grid-template-columns: repeat(4, 1fr); }
.step-card { padding: 28px; }
.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--wine);
  font-weight: 900;
}

.gallery-section { background: #fff8f5; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.gallery-card {
  overflow: hidden;
  background: #fff;
}
.gallery-card.large { grid-row: span 2; }
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.gallery-card figcaption {
  padding: 16px 18px;
  color: var(--wine-dark);
  font-weight: 700;
  background: #fff;
}

.testimonials-section { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.review-card { overflow: hidden; }
.image-review {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
}
.image-review img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.review-copy {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.quote-only {
  padding: 28px;
  background: linear-gradient(145deg, #fff, #fff4f1);
}
.stars {
  margin-bottom: 8px;
  color: #d28f00;
  font-size: 22px;
  letter-spacing: .12em;
}

.cta-section { padding: 56px 0; background: var(--wine-dark); }
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  color: #fff;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--wine), #b04f62);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.cta-box h2, .cta-box p { color: #fff; }
.cta-box p { opacity: .9; max-width: 680px; }

.faq-list { max-width: 880px; }
details { margin-top: 14px; padding: 22px 24px; }
summary { color: var(--wine-dark); font-size: 18px; font-weight: 850; cursor: pointer; }
details p { margin-top: 12px; }

.footer { padding: 42px 0 96px; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; }
.footer p { max-width: 560px; margin-top: 8px; font-size: 14px; }
.footer a { display: block; color: var(--muted); margin: 4px 0; }
.footer a:hover { color: var(--wine); }

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(69,21,31,.2);
}
.mobile-sticky strong { display: block; color: var(--wine); font-size: 22px; line-height: 1; }
.mobile-sticky span { color: var(--muted); font-size: 12px; }
.mobile-sticky .primary-btn { min-height: 46px; padding: 12px 18px; }

@media (max-width: 1024px) {
  .offer-card { grid-template-columns: repeat(2, 1fr); }
  .six-grid { grid-template-columns: repeat(2, 1fr); }
  .four-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.large { grid-row: auto; }
}

@media (max-width: 960px) {
  .section-pad { padding: 62px 0; }
  .site-header nav { display: none; }
  .hero-grid, .two-col, .product-grid, .assurance-grid, .reviews-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; order: -1; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-actions, .trust-row { justify-content: center; }
  .cta-box { flex-direction: column; text-align: center; }
  .image-review { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-bottom: 88px; }
  .container { width: min(100% - 24px, 1160px); }
  .top-strip { flex-direction: column; gap: 6px; font-size: 13px; }
  .site-header { padding: 12px; }
  .brand span:last-child { font-size: 13px; }
  .header-cta { display: none; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .lead, .section-intro { font-size: 16px; }
  .hero { padding-top: 22px; }
  .offer-card, .six-grid, .four-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .shine { width: 320px; height: 320px; }
  .hero-stack { width: 320px; }
  .floating-badge { right: 0; bottom: 12px; min-width: 138px; padding: 14px; }
  .floating-badge strong { font-size: 22px; }
  .benefit-card, .step-card, .notice-card, .assurance-note, .review-copy, .quote-only { padding: 22px; }
  .product-card { padding: 18px; }
  .gallery-card img { min-height: 220px; }
  .primary-btn, .secondary-btn, .ghost-btn { width: 100%; min-height: 52px; padding-inline: 18px; }
  .cta-box { padding: 28px 18px; }
  .footer-grid { flex-direction: column; }
  .mobile-sticky { display: flex; }
}

/* --- Image visibility fix: prevent left/right cropping on mobile and content sections --- */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.hero-grid,
.product-grid,
.gallery-grid,
.reviews-grid {
  max-width: 100%;
}

.hero-main-img,
.gallery-card img,
.image-review img,
.product-card img,
.review-card img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.gallery-card img,
.image-review img {
  width: 100%;
  min-height: 0;
  background: #fff;
}

.gallery-card,
.review-card,
.product-card,
.hero-stack {
  overflow: visible;
}

@media (max-width: 640px) {
  .hero-stack,
  .hero-main-img,
  .gallery-card img,
  .image-review img,
  .product-card img {
    width: 100%;
    max-width: 100%;
  }

  .gallery-card img,
  .image-review img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .gallery-card,
  .image-review,
  .review-card {
    overflow: visible;
  }
}
