:root {
  --bg: #efe4d1;
  --bg-soft: #f7f0e6;
  --bg-card: rgba(255,255,255,.68);
  --wine: #6f1d34;
  --wine-deep: #4f1023;
  --gold: #c5a25b;
  --gold-soft: #dcc08a;
  --text: #2d1d18;
  --muted: #6b5b55;
  --line: rgba(111, 29, 52, .14);
  --white: #ffffff;
  --success: #1f8b5f;
  --shadow: 0 20px 60px rgba(63, 20, 29, .12);
  --shadow-soft: 0 10px 30px rgba(63, 20, 29, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { 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(--text);
  background:
    radial-gradient(circle at top left, rgba(197,162,91,.12), transparent 28%),
    radial-gradient(circle at top right, rgba(111,29,52,.08), transparent 32%),
    var(--bg);
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 32px), 920px); margin: 0 auto; }
.section { padding: 88px 0; }

.announcement-bar {
  background: linear-gradient(90deg, var(--wine-deep), var(--wine));
  color: #fff7ec;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(239, 228, 209, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(111, 29, 52, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
.brand-mark {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--wine);
}

.btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--wine), var(--wine-deep));
  color: white;
  box-shadow: 0 16px 32px rgba(79, 16, 35, .22);
}
.btn-primary:hover { box-shadow: 0 20px 42px rgba(79, 16, 35, .28); }
.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1px solid rgba(111, 29, 52, .2);
}
.btn-light {
  background: linear-gradient(135deg, #fff8ec, #f4e7cb);
  color: var(--wine-deep);
  box-shadow: 0 16px 32px rgba(12, 9, 7, .16);
}
.btn-full { width: 100%; }

.eyebrow,
.section-label,
.modal-kicker,
.floating-kicker,
.light {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow,
.section-label,
.modal-kicker { color: var(--wine); }
.section-label.light { color: rgba(255,255,255,.72); }

h1, h2, h3 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  color: var(--wine-deep);
}
h1 { font-size: clamp(40px, 5vw, 72px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 18px; max-width: 720px; }

.hero {
  padding-top: 64px;
  padding-bottom: 70px;
}
.hero-grid,
.two-col,
.authority-grid,
.live-grid,
.problem-grid,
.stats-grid,
.testimonial-highlight-grid {
  display: grid;
}
.hero-grid {
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { max-width: 820px; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0 32px;
}
.point-card,
.problem-item,
.live-card,
.method-box,
.authority-card,
.stat-card,
.benefit-card,
.quote-box,
.materials-box,
.thankyou-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.point-card {
  padding: 18px;
  border-radius: 18px;
}
.point-card strong { display: block; margin-bottom: 8px; color: var(--wine-deep); font-size: 15px; }
.point-card span { font-size: 14px; color: var(--muted); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.mini-proof {
  max-width: 360px;
  font-size: 13px;
  color: var(--muted);
}
.hero-image-wrap {
  position: relative;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.3));
  box-shadow: var(--shadow);
}
.hero-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.floating-card {
  position: absolute;
  left: -18px;
  bottom: 18px;
  width: min(84%, 340px);
  background: rgba(255,248,236,.94);
  border: 1px solid rgba(197,162,91,.25);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 35px rgba(63, 20, 29, .14);
}
.floating-kicker { display: block; color: var(--wine); margin-bottom: 8px; }
.floating-card strong { color: var(--wine-deep); }

.problem-section { background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.02)); }
.problem-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.problem-item {
  border-radius: 18px;
  padding: 22px 20px;
  color: var(--text);
  min-height: 110px;
  display: flex;
  align-items: center;
}
.section-footnote {
  margin-top: 22px;
  font-size: 17px;
  color: var(--wine-deep);
}

.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.align-start { align-items: start; }
.benefit-stack { display: grid; gap: 18px; }
.benefit-card,
.method-box,
.materials-box {
  border-radius: 24px;
  padding: 28px;
}
.benefit-card ul,
.materials-box ul { padding-left: 20px; margin: 0; }
.benefit-card li,
.materials-box li { margin-bottom: 10px; color: var(--muted); }

.live-section {
  background: linear-gradient(180deg, rgba(111,29,52,.04), rgba(111,29,52,.01));
}
.live-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.live-card {
  border-radius: 20px;
  padding: 24px;
  min-height: 130px;
  display: flex;
  align-items: center;
  color: var(--text);
}
.center-actions {
  text-align: center;
  margin-top: 34px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
}
.check-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 18px;
}
.method-item + .method-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 18px;
}
.method-item p { margin-bottom: 0; }

.authority-intro {
  font-size: 18px;
  max-width: 900px;
}
.authority-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.authority-card {
  border-radius: 28px;
  overflow: hidden;
}
.authority-card img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}
.authority-content { padding: 24px; }
.authority-content p { margin-bottom: 0; }

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.stat-card {
  border-radius: 22px;
  padding: 26px 20px;
  text-align: center;
}
.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  color: var(--wine);
  font-family: 'Playfair Display', serif;
}
.stat-card span { color: var(--muted); font-size: 14px; }

.proof-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.proof-figure {
  margin: 0;
  background: rgba(255,255,255,.62);
  border-radius: 22px;
  padding: 10px;
  box-shadow: var(--shadow-soft);
}
.proof-figure img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}
.materials-box h3 { margin-bottom: 16px; }

.testimonials-intro { max-width: 820px; }
.testimonial-highlight-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 26px 0 30px;
}
.quote-box {
  border-radius: 22px;
  padding: 24px;
}
.quote-value {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}
.quote-box p {
  color: var(--text);
  margin: 0;
  font-size: 15px;
}
.testimonial-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-mosaic img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  background: white;
}

.final-cta-section {
  background: linear-gradient(135deg, var(--wine-deep), var(--wine));
  color: #fdf7ef;
}
.final-cta-box {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 24px;
  align-items: center;
}
.final-cta-section h2,
.final-cta-section p,
.final-cta-section .final-meta { color: #fff7ec; }
.final-meta { font-weight: 700; }
.final-cta-actions { display: flex; justify-content: flex-end; }

.faq-list { margin-top: 28px; display: grid; gap: 14px; }
.faq-list details {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--wine-deep);
}
.faq-list p { margin: 12px 0 0; }

.site-footer {
  border-top: 1px solid rgba(111,29,52,.08);
  padding: 30px 0 44px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-inner p { margin: 0; font-size: 14px; }

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 50;
}
.modal.is-open { display: block; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 14, 18, .58);
  backdrop-filter: blur(6px);
}
.modal-dialog {
  position: relative;
  width: min(92vw, 760px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7f0e6, #efe4d1);
  box-shadow: 0 30px 90px rgba(10,10,10,.25);
}
.modal-content { padding: 34px; }
.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: transparent;
  color: var(--wine);
  border: none;
  font-size: 36px;
  cursor: pointer;
}
.modal-heading h3 { margin-top: 10px; }
.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.lead-form label span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--wine-deep);
}
.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form select {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(111,29,52,.14);
  background: rgba(255,255,255,.86);
  padding: 14px 16px;
  color: var(--text);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 2px;
}
.consent input { margin-top: 3px; }
.consent span {
  margin: 0 !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
}
.hidden-field { display: none; }

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}
.thankyou-card {
  width: min(calc(100% - 32px), 820px);
  margin: 0 auto;
  border-radius: 30px;
  padding: 42px;
  text-align: center;
}
.thankyou-card h1 { margin-top: 10px; }
.thankyou-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 28px;
}
.thankyou-badges span {
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: var(--wine);
  padding: 10px 16px;
  border: 1px solid rgba(111,29,52,.1);
  font-weight: 700;
  font-size: 14px;
}
.thankyou-actions { margin-top: 26px; }
.small-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .final-cta-box { grid-template-columns: 1fr; }
  .hero-points,
  .problem-grid,
  .live-grid,
  .stats-grid,
  .testimonial-highlight-grid,
  .testimonial-mosaic { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { order: -1; }
  .final-cta-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .header-inner { min-height: 68px; }
  .brand-mark { font-size: 24px; }
  .btn { width: 100%; }
  .header-inner .btn { width: auto; padding: 12px 18px; }
  .hero-points,
  .problem-grid,
  .live-grid,
  .authority-grid,
  .stats-grid,
  .proof-mini-grid,
  .testimonial-highlight-grid,
  .testimonial-mosaic { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .mini-proof { max-width: none; }
  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }
  .modal-content { padding: 24px 18px; }
  .thankyou-card { padding: 30px 22px; }
}
