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

:root {
  --rose: #C48793;
  --rose-dark: #A86D79;
  --rose-light: #F2DDE2;
  --rose-pale: #FDF6F8;
  --gold: #C9A96E;
  --gold-light: #F5ECD7;
  --dark: #2D2A2B;
  --dark-soft: #4A4546;
  --gray: #8A8283;
  --gray-light: #B5AEAE;
  --white: #FFFFFF;
  --bg: #FDFBFB;
  --bg-warm: #F9F5F4;
  --shadow-sm: 0 2px 8px rgba(45,42,43,0.06);
  --shadow-md: 0 8px 30px rgba(45,42,43,0.08);
  --shadow-lg: 0 20px 60px rgba(45,42,43,0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,135,147,0.35);
}
.btn-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 6px 24px rgba(196,135,147,0.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose-pale);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.btn-gold:hover {
  background: #b8995e;
  box-shadow: 0 6px 24px rgba(201,169,110,0.4);
  transform: translateY(-1px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,251,251,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,135,147,0.10);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.logo span { color: var(--rose); }

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-soft);
  transition: color var(--transition);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-list a:hover { color: var(--rose); }
.nav-list a:hover::after { transform: scaleX(1); }

.header .btn { padding: 10px 24px; font-size: 14px; }

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--rose-pale) 0%, var(--bg-warm) 40%, var(--bg) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(196,135,147,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-content { max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.hero-badge svg { color: var(--gold); }

.hero-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-content h1 em { font-style: normal; color: var(--rose); }

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
}

.hero-feature { display: flex; align-items: center; gap: 10px; }

.hero-feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-light);
  border-radius: 12px;
  flex-shrink: 0;
}

.hero-feature-icon svg { color: var(--rose); }

.hero-feature-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-soft);
  line-height: 1.2;
}

.hero-feature-text strong { display: block; color: var(--dark); font-weight: 700; }

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--rose-light) 0%, #F5E8EB 40%, var(--gold-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(196,135,147,0.25);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.hero-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--rose);
  opacity: 0.5;
  margin-bottom: 12px;
}

.hero-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--rose);
  opacity: 0.6;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -10px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-float-stars { display: flex; gap: 2px; color: var(--gold); }

.hero-float-text { font-size: 13px; font-weight: 600; color: var(--dark); }
.hero-float-text small { display: block; font-weight: 400; color: var(--gray); }

/* ===== SECTION COMMON ===== */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-header h2 {
  font-size: 38px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 17px;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--rose-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.service-icon svg { color: var(--rose); }

.service-card h3 { font-size: 22px; margin-bottom: 10px; }

.service-card p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--rose);
  margin-bottom: 4px;
}

.service-duration { font-size: 13px; color: var(--gray-light); }

.service-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about { background: var(--bg-warm); }

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual { position: relative; }

.about-image-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--rose-light) 0%, #EDD9DE 50%, var(--bg-warm) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.about-image-placeholder svg { width: 72px; height: 72px; color: var(--rose); opacity: 0.45; }

.about-image-placeholder span {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--rose);
  opacity: 0.55;
}

.about-stats {
  position: absolute;
  bottom: 30px;
  right: -16px;
  display: flex;
  gap: 12px;
}

.about-stat {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.about-stat-number { font-family: var(--font-heading); font-size: 30px; color: var(--rose); line-height: 1; }

.about-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; font-weight: 500; }

.about-content h2 {
  font-size: 38px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-content h2 em { font-style: normal; color: var(--rose); }

.about-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-perk { display: flex; align-items: flex-start; gap: 12px; }

.about-perk-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-light);
  border-radius: 10px;
  flex-shrink: 0;
}

.about-perk-icon svg { color: var(--rose); }

.about-perk-text { font-size: 14px; color: var(--dark-soft); line-height: 1.5; }
.about-perk-text strong { display: block; color: var(--dark); font-weight: 650; }

/* ===== BOOKING FORM ===== */
.booking { background: var(--white); }

.booking-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-warm);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rose-light);
}

.booking-wrapper h3 { font-size: 26px; text-align: center; margin-bottom: 8px; }

.booking-wrapper > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-soft);
  letter-spacing: 0.02em;
}

.form-group label .required { color: var(--rose); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid #E8E0E1;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(196,135,147,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8283' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group textarea { min-height: 100px; resize: vertical; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-submit { width: 100%; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success h4 { font-size: 24px; color: var(--rose); margin-bottom: 10px; }
.form-success p { color: var(--gray); font-size: 15px; }

.form-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg { color: var(--rose); width: 36px; height: 36px; }

.form-error {
  display: none;
  padding: 14px 18px;
  background: #FFF0F0;
  border: 1px solid #FFD4D4;
  border-radius: var(--radius-sm);
  color: #C44;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-warm); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 14px; }

.review-text {
  font-size: 15px;
  color: var(--dark-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.review-author { font-size: 14px; font-weight: 600; color: var(--dark); }
.review-date { font-size: 12px; color: var(--gray-light); margin-top: 2px; }

.reviews-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--gray);
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ===== CONTACTS ===== */
.contacts { background: var(--white); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacts-info h2 {
  font-size: 34px;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.contacts-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rose-light);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-icon svg { color: var(--rose); }

.contact-detail h4 { font-size: 15px; font-weight: 650; margin-bottom: 2px; }
.contact-detail p { font-size: 15px; color: var(--gray); line-height: 1.5; }

.contact-detail a {
  color: var(--rose);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail a:hover { color: var(--rose-dark); }

.contacts-map {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--rose-light) 0%, var(--bg-warm) 50%, var(--gold-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contacts-map::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 2px dashed rgba(196,135,147,0.2);
  border-radius: calc(var(--radius-lg) - 18px);
  pointer-events: none;
}

.contacts-map-pin { width: 40px; height: 40px; color: var(--rose); margin-bottom: 8px; }

.contacts-map span {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--rose);
  opacity: 0.6;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--rose-light);
  border-radius: 50%;
  color: var(--rose);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta-banner h2 { font-size: 36px; color: var(--white); margin-bottom: 12px; }

.cta-banner p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--rose);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-banner .btn:hover {
  background: var(--rose-pale);
  box-shadow: 0 6px 28px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 14px; display: block; }

.footer-brand p { font-size: 14px; line-height: 1.7; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 650;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a { font-size: 14px; transition: color var(--transition); }

.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a { color: var(--rose); transition: opacity var(--transition); }
.footer-bottom a:hover { opacity: 0.8; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 90;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }

.back-to-top:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }

  .hero-content h1 { font-size: 34px; }
  .hero-visual { order: -1; }
  .hero-image-placeholder { max-width: 280px; margin: 0 auto; }

  section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
  .section-header h2 { font-size: 30px; }

  .services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-image-placeholder { max-width: 320px; margin: 0 auto; }
  .about-stats { right: 0; }

  .contacts-grid { grid-template-columns: 1fr; gap: 36px; }
  .contacts-map { max-height: 300px; }

  .booking-wrapper { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

  .nav-list { display: none; }

  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--rose-light);
  }

  .mobile-toggle { display: flex; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-features { flex-direction: column; gap: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .hero-float-card { left: 0; bottom: 20px; }

  .about-perks { grid-template-columns: 1fr; }
  .about-stat { padding: 14px 18px; }
  .about-stat-number { font-size: 24px; }
}
