:root {
  --primary: #d98ca1;
  --primary-dark: #b5647a;
  --accent: #f7d7df;
  --cream: #fff8fb;
  --dark: #3f2731;
  --text: #5e4a53;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(101, 57, 72, 0.12);
  --radius: 22px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255, 248, 251, 0.84);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 140, 161, 0.18);
}
.inner-header { background: rgba(255,255,255,0.92); }
.nav-wrap {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark);
}
.logo span { color: var(--primary-dark); }
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { font-weight: 600; color: var(--dark); position: relative; }
.site-nav a.active::after,
.site-nav a:hover::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px; background: var(--primary-dark);
}
.nav-btn, .btn {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; transition: .3s ease;
}
.nav-btn { padding: .75rem 1.3rem; background: var(--primary-dark); color: var(--white) !important; }
.nav-btn::after { display: none; }
.btn { padding: .95rem 1.6rem; font-weight: 700; }
.btn-primary { background: var(--primary-dark); color: var(--white); }
.btn-primary:hover, .nav-btn:hover { background: #9f4963; transform: translateY(-2px); }
.btn-secondary { background: rgba(255,255,255,.18); color: var(--white); border: 1px solid rgba(255,255,255,.45); }
.btn-secondary:hover { background: rgba(255,255,255,.28); }
.btn-light { background: var(--white); color: var(--dark); }
.btn-light:hover { transform: translateY(-2px); }
.menu-toggle {
  display: none; border: none; background: var(--accent); color: var(--dark); width: 46px; height: 46px; border-radius: 50%; font-size: 1.2rem; cursor: pointer;
}
.hero-slider {
  position: relative; min-height: 100vh; overflow: hidden;
}
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s ease;
}
.slide.active { opacity: 1; visibility: visible; }
.hero-content { color: var(--white); padding-top: 100px; }
.hero-content h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1.08; max-width: 760px; margin: 1rem 0 1.2rem;
}
.hero-content p { max-width: 640px; font-size: 1.07rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.eyebrow, .section-tag {
  display: inline-block; padding: .42rem .9rem; border-radius: 999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28); color: var(--white); font-size: .9rem; letter-spacing: .04em;
}
.section-tag { background: var(--accent); color: var(--primary-dark); border: none; }
.section-tag.light { background: rgba(255,255,255,.18); color: var(--white); }
.slider-controls {
  position: absolute; right: 2rem; bottom: 2rem; display: flex; gap: .8rem; z-index: 5;
}
.slider-controls button {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.16); color: var(--white); font-size: 2rem; cursor: pointer; transition: .3s ease;
}
.slider-controls button:hover { background: rgba(255,255,255,.26); }
.slider-dots {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%); display: flex; gap: .6rem; z-index: 5;
}
.slider-dots button {
  width: 12px; height: 12px; border-radius: 50%; border: none; background: rgba(255,255,255,.45); cursor: pointer;
}
.slider-dots button.active { background: var(--white); }
.section { padding: 6rem 0; }
.alt-bg { background: var(--cream); }
.intro-grid, .split-grid, .contact-grid, .footer-grid {
  display: grid; gap: 2rem;
}
.intro-grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
.split-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.contact-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.section h2, .page-hero h1 {
  font-family: 'Playfair Display', serif; color: var(--dark); font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.18; margin-top: .9rem;
}
.page-hero {
  min-height: 55vh; display: flex; align-items: end; padding: 9rem 0 4rem; background-size: cover; background-position: center; color: var(--white);
}
.page-hero h1 { color: var(--white); max-width: 780px; }
.cards { display: grid; gap: 1.5rem; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.card, .product-card, .contact-form {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card, .service-card { padding: 2rem; }
.card h3, .product-card h3 { color: var(--dark); margin-bottom: .9rem; }
.product-card { overflow: hidden; }
.product-card img { width: 100%; height: 250px; object-fit: cover; }
.product-card h3, .product-card p { padding: 0 1.25rem; }
.product-card h3 { padding-top: 1.25rem; }
.product-card p { padding-bottom: 1.4rem; }
.product-card.large img { height: 280px; }
.image-panel img {
  border-radius: 28px; box-shadow: var(--shadow); min-height: 420px; object-fit: cover; width: 100%;
}
.feature-list { margin-top: 1.2rem; padding-left: 1.2rem; }
.feature-list li { margin-bottom: .8rem; }
.section-heading { margin-bottom: 2rem; }
.section-heading.center { text-align: center; }
.cta-section {
  padding: 1rem 0 6rem; background: linear-gradient(135deg, #d98ca1, #b5647a);
}
.cta-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 30px; padding: 2.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; color: var(--white);
}
.cta-box h2 { color: var(--white); max-width: 700px; }
.site-footer {
  background: #2f1f27; color: rgba(255,255,255,.8); padding-top: 4rem;
}
.site-footer h4, .footer-logo { color: var(--white); }
.site-footer a { display: block; margin: .55rem 0; }
.footer-bottom { text-align: center; padding: 1.2rem 0; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); }
.contact-form { padding: 2rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; color: var(--dark); margin-bottom: .45rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .95rem 1rem; border: 1px solid #ead7de; border-radius: 14px; font: inherit; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.contact-list p { margin-bottom: .7rem; }
@media (max-width: 992px) {
  .intro-grid, .split-grid, .contact-grid, .footer-grid, .three-col, .four-col, .two-col { grid-template-columns: 1fr; }
  .site-nav {
    position: absolute; top: 82px; left: 0; width: 100%; background: #fff; padding: 1rem; flex-direction: column; align-items: flex-start; display: none;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .hero-content h1 { font-size: 2.4rem; }
  .slider-controls { right: 1rem; bottom: 1rem; }
  .slider-dots { bottom: 1.25rem; }
  .section { padding: 4.5rem 0; }
}
