/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy: #7B1540;
  --burgundy-dark: #5C0F30;
  --burgundy-light: #9B2060;
  --blush: #F2D0DC;
  --blush-light: #FBE8EE;
  --blush-dark: #E8A0BF;
  --cream: #FFF8F5;
  --cream-dark: #FFF0EA;
  --white: #FFFFFF;
  --text-dark: #3D1525;
  --text-mid: #6B3045;
  --text-light: #9A6075;
  --text-muted: #B88095;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(123, 21, 64, 0.06);
  --shadow-md: 0 4px 20px rgba(123, 21, 64, 0.10);
  --shadow-lg: 0 8px 40px rgba(123, 21, 64, 0.14);
  --shadow-card: 0 2px 16px rgba(123, 21, 64, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.25; color: var(--text-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--burgundy); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-sm);
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 21, 64, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 700; color: var(--burgundy); letter-spacing: -0.01em;
}
.logo-accent { color: var(--blush-dark); }

.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 8px 16px; border-radius: var(--radius-xl);
  font-weight: 600; font-size: 0.9rem; color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: var(--blush-light); color: var(--burgundy); }

/* Nav toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--burgundy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-body); font-weight: 700;
  border-radius: var(--radius-xl); border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

.btn-burgundy {
  background: var(--burgundy); color: var(--white);
  border-color: var(--burgundy);
}
.btn-burgundy:hover {
  background: var(--burgundy-dark); border-color: var(--burgundy-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-blush {
  background: var(--blush); color: var(--burgundy);
  border-color: var(--blush);
}
.btn-blush:hover {
  background: var(--blush-dark); border-color: var(--blush-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-white {
  background: var(--white); color: var(--burgundy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--burgundy); color: var(--white); border-color: var(--burgundy);
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #FDF0F4 0%, #FCE4EC 40%, #F8D0E0 100%);
  overflow: hidden; padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(242, 208, 220, 0.6) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(123, 21, 64, 0.06) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: radial-gradient(circle, var(--burgundy) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0 100px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123, 21, 64, 0.08); color: var(--burgundy);
  padding: 8px 18px; border-radius: var(--radius-xl);
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge svg { opacity: 0.7; }

.hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.text-gradient {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--blush-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 36px; max-width: 500px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating stat cards */
.hero-cards {
  position: relative; height: 420px;
  perspective: 1000px;
}
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 6px;
  animation: float 6s ease-in-out infinite;
}
.float-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy); margin-bottom: 4px;
}
.float-card-stat {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--burgundy);
}
.float-card-stat span { font-size: 1rem; }
.float-card-label {
  font-size: 0.8rem; color: var(--text-light);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.float-card--1 { top: 0; left: 20px; animation-delay: 0s; }
.float-card--2 { top: 110px; right: 0; animation-delay: -2s; }
.float-card--3 { bottom: 20px; left: 60px; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  color: var(--cream);
}
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--burgundy); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush-dark));
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 560px; line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header--centered { text-align: center; }
.section-header--centered .section-label { justify-content: center; }
.section-header--centered .section-label::before { display: none; }
.section-header--centered .section-sub { margin: 0 auto; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 620px; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; border-radius: var(--radius-lg);
  overflow: hidden; border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-experience-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 2px;
}
.exp-number {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; color: var(--burgundy); line-height: 1;
}
.exp-number span { font-size: 1rem; }
.exp-label { font-size: 0.72rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }

.about-content .section-title { margin-top: 8px; }
.about-content > p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.85; }
.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.pill {
  background: var(--blush-light); color: var(--burgundy);
  padding: 8px 18px; border-radius: var(--radius-xl);
  font-size: 0.82rem; font-weight: 700;
  border: 1px solid rgba(123, 21, 64, 0.1);
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(123, 21, 64, 0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(123, 21, 64, 0.5) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-body { padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.product-card-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
}
.product-card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.product-card-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--cream); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid rgba(123, 21, 64, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy); margin-bottom: 20px;
}
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #FDF0F4 0%, #FCE4EC 50%, #F8D0E0 100%);
}
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 4px; color: #F5A623; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--blush);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.8rem; color: var(--text-muted); }

/* ===== VISIT / CTA ===== */
.visit { padding: 100px 0; background: var(--cream); }
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.visit-desc { color: var(--text-mid); margin-bottom: 32px; line-height: 1.85; font-size: 1.05rem; }
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--burgundy);
}
.contact-item dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); font-weight: 700; margin-bottom: 4px; }
.contact-item dd { font-size: 1rem; color: var(--text-dark); font-weight: 600; line-height: 1.6; }
.contact-item a { color: var(--burgundy); transition: color var(--transition); }
.contact-item a:hover { color: var(--burgundy-dark); text-decoration: underline; }
.visit-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ===== FOOTER ===== */
.site-footer { background: var(--text-dark); color: rgba(255, 255, 255, 0.7); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.75; max-width: 280px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-accent { color: var(--blush); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-body); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--blush); margin-bottom: 16px; font-weight: 700;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: rgba(255, 255, 255, 0.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { display: none; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child { grid-column: span 2; max-width: 500px; margin: 0 auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(255, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(123, 21, 64, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 12px 16px; width: 100%; text-align: center; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 80px; }
  .hero-heading { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }

  .product-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { grid-column: auto; max-width: none; }

  .about-img-accent { width: 140px; height: 140px; right: -10px; bottom: -20px; }
  .about-experience-badge { top: -12px; left: -10px; padding: 12px 16px; }
  .exp-number { font-size: 1.4rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 80px; padding-bottom: 60px; }
  .about, .products, .why-us, .testimonials, .visit { padding: 64px 0; }
  .product-card-body { flex-direction: column; }
  .product-card-icon { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: no-preference) {
  .float-card { animation-duration: 6s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .float-card { animation: none; }
}
