:root {
  --bg: #fff8fa;
  --surface: #ffffff;
  --surface-strong: #fff0f5;
  --text: #38202a;
  --muted: #735465;
  --accent: #843652;
  --accent-strong: #5e2238;
  --accent-soft: #f4d5df;
  --border: rgba(132, 54, 82, .18);
  --shadow: 0 24px 70px rgba(75, 31, 50, .14);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #fff);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 99;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 250, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--accent); color: #fff; box-shadow: 0 14px 30px rgba(132, 54, 82, .25); }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { text-decoration: none; color: var(--muted); font-weight: 700; padding: 10px 14px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.main-nav a:hover, .main-nav a:focus-visible { background: var(--accent-soft); color: var(--accent-strong); outline: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: var(--surface); border-radius: 14px; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--accent); margin: 4px auto; }

.hero { padding-top: 110px; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 50px; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; margin: 0 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.7rem); line-height: .94; letter-spacing: -.08em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.055em; margin-bottom: 18px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
.hero-text, .section-heading p, .about-card p, .feature-card p, .product-info p, .contact-list { color: var(--muted); line-height: 1.75; }
.hero-text { font-size: 1.14rem; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 850; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 18px 36px rgba(132, 54, 82, .26); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-secondary { color: var(--accent-strong); background: var(--surface); border-color: var(--border); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.hero-stats span { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 16px; color: var(--muted); box-shadow: 0 14px 34px rgba(78, 31, 48, .08); }
.hero-stats strong { display: block; color: var(--accent-strong); font-size: 1.45rem; }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: -20px; background: radial-gradient(circle at 30% 20%, var(--accent-soft), transparent 58%); border-radius: 44px; z-index: -1; }
.hero-media img, .product-card img, .map-card, .contact-card, .about-card, .feature-card { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-media img { aspect-ratio: 16/10; object-fit: cover; }
.section-heading { max-width: 740px; margin-bottom: 36px; }

.carousel { position: relative; overflow: hidden; padding: 8px 64px 58px; }
.carousel-track { display: grid; grid-template-columns: 1fr; }
.product-card { grid-area: 1 / 1; opacity: 0; transform: translateX(24px) scale(.98); pointer-events: none; transition: opacity .35s ease, transform .35s ease; background: var(--surface); border: 1px solid var(--border); overflow: hidden; }
.product-card.is-active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.product-card img { width: 100%; aspect-ratio: 16/8.5; object-fit: cover; border-radius: 32px 32px 0 0; box-shadow: none; }
.product-info { display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; padding: 24px; align-items: start; }
.product-info span { font-weight: 900; font-size: 1.3rem; }
.product-info strong { color: var(--accent); font-size: 1.2rem; }
.product-info p { grid-column: 1 / -1; margin: 0; }
.carousel-btn { position: absolute; top: 43%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--accent); font-size: 2rem; cursor: pointer; box-shadow: 0 14px 28px rgba(76, 33, 49, .14); }
.carousel-btn:hover, .carousel-btn:focus-visible { background: var(--accent); color: #fff; outline: none; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.carousel-dots { position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); display: flex; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border: 0; border-radius: 999px; background: var(--accent-soft); cursor: pointer; }
.carousel-dot.is-active { width: 30px; background: var(--accent); }

.about-section { background: var(--surface-strong); }
.about-grid, .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.about-card, .contact-card, .feature-card, .map-card { background: var(--surface); border: 1px solid var(--border); }
.about-card, .contact-card, .feature-card { padding: 32px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--accent); background: var(--accent-soft); font-weight: 900; margin-bottom: 22px; }
.testimonials-section { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--surface-strong); border: 1px solid var(--border); padding: 28px; border-radius: var(--radius-md); }
.testimonial-card blockquote { margin: 0 0 20px; }
.testimonial-card blockquote p { font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--text); }
.testimonial-card footer { display: grid; gap: 4px; }
.testimonial-card cite { font-weight: 900; font-style: normal; color: var(--accent-strong); }
.testimonial-card span { font-size: .85rem; color: var(--muted); }
.contact-section { background: linear-gradient(180deg, #fff, var(--surface-strong)); }
.contact-list { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.contact-list a { color: var(--accent-strong); font-weight: 800; }
.map-card { min-height: 430px; overflow: hidden; }
.map-card iframe { width: 100%; height: 100%; min-height: 430px; border: 0; }
.site-footer { padding: 32px 0; background: var(--accent-strong); color: rgba(255,255,255,.88); }
.footer-grid { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-grid p { margin: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; inset: 76px 20px auto; display: none; flex-direction: column; align-items: stretch; padding: 14px; border-radius: 22px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .carousel { padding-inline: 0; }
  .carousel-btn { top: auto; bottom: 0; }
  .carousel-btn.prev { left: 25%; }
  .carousel-btn.next { right: 25%; }
  .product-info { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
