/* ===========================
   Butterfly Lou Beauty – CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Lato:wght@300;400;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blush:      #f2ebe0;
  --rose:       #c9aa8c;
  --rose-deep:  #8b6b4a;
  --rose-hover: #6e5238;
  --gold:       #b89880;
  --cream:      #faf6f0;
  --white:      #ffffff;
  --dark:       #2e2319;
  --mid:        #7a6348;
  --light-text: #a8917a;
  --shadow:     0 4px 24px rgba(46,35,25,.10);
  --radius:     12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

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

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 900;
  background: #ffffff;
  border-bottom: 1px solid #e0d4c0;
  padding: 0 2rem;
}

.header-inner {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 110px;
}

.logo {
  display: flex; align-items: center;
  line-height: 1;
}

.logo img {
  display: block;
  height: 100px;
  width: auto;
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
  font-size: .9rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mid);
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--rose-deep); }

.btn-book-header {
  background: var(--rose-deep);
  color: var(--white) !important;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, transform .15s;
  cursor: pointer; border: none;
}
.btn-book-header:hover { background: var(--rose-hover); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all .3s;
}

/* ── Mobile nav ── */
.mobile-nav {
  display: none; flex-direction: column; align-items: center; gap: 1.2rem;
  background: var(--white); padding: 1.5rem;
  border-bottom: 1px solid #e0d4c0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mid);
}
.mobile-nav a:hover { color: var(--rose-deep); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--rose-deep); color: var(--white);
  padding: .85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: .9rem; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(139,107,74,.30);
}
.btn:hover { background: var(--rose-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,107,74,.40); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--rose-deep);
  color: var(--rose-deep);
  box-shadow: none;
}
.btn-outline:hover { background: var(--rose-deep); color: var(--white); }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #faf4ea 0%, #f5ece0 40%, #f0e8d8 100%);
}

/* Full-bleed 16:9 hero */
.hero-fullbleed {
  aspect-ratio: 16/9;
  min-height: unset;
  width: 100%;
  align-items: flex-end;
  padding-bottom: 0;
}

.hero-fullbleed-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 0;
}

.hero-fullbleed-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20,12,5,.75) 0%,
    rgba(20,12,5,.35) 40%,
    rgba(20,12,5,.10) 70%,
    transparent 100%
  );
}

.hero-fullbleed-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,170,140,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(184,152,120,.20) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: auto; padding: 6rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

@media (max-width: 768px) {
  .hero-fullbleed { aspect-ratio: 9/14; }
  .hero-fullbleed-content { padding: 2rem 1.2rem 3rem; }
}

.hero-text { z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--rose-deep); }

.hero-subtitle {
  font-size: 1.1rem; color: var(--mid);
  max-width: 460px; margin-bottom: 2.4rem; line-height: 1.8;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-note {
  margin-top: 1.2rem; font-size: .82rem; color: var(--light-text); letter-spacing: .04em;
}
.hero-note span { color: var(--rose-deep); font-weight: 700; }

.hero-image {
  position: relative; z-index: 1;
}

.hero-img-wrap {
  position: relative;
  border-radius: 30px 80px 30px 80px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(139,107,74,.22);
  aspect-ratio: 4/5;
  background: var(--rose);
}

.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #e0ccaa, #c9aa8c);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; text-align: center; padding: 2rem;
  gap: .5rem;
}
.hero-img-placeholder svg { opacity: .6; margin-bottom: .5rem; }

.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--white); border-radius: 16px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .7rem;
  font-size: .82rem;
}
.hero-badge-icon { font-size: 1.4rem; }
.hero-badge strong { display: block; font-size: .9rem; color: var(--dark); }
.hero-badge span { color: var(--light-text); }

.floating-butterfly {
  position: absolute; top: -20px; right: -20px;
  opacity: .25; pointer-events: none;
}

/* ── Section Shared ── */
section { padding: 6rem 2rem; }

.section-inner { max-width: 1200px; margin: auto; }

.section-tag {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rose-deep);
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--dark); line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem; color: var(--mid); max-width: 540px; line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ── Services Preview (Home) ── */
.services-preview { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid #e0d4c0;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-card-img {
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #e8d5b8, #c9aa8c);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.service-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.service-card-body .btn { margin-top: auto; align-self: flex-start; }
.service-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--dark); margin-bottom: .4rem;
}
.service-card-body p { font-size: .9rem; color: var(--mid); margin-bottom: 1rem; line-height: 1.6; }
.service-price {
  font-size: 1.1rem; font-weight: 700; color: var(--rose-deep); margin-bottom: 1rem;
}

/* ── Why Choose Section ── */
.why-section { background: linear-gradient(135deg, #faf5ec 0%, #f5f0e8 100%); }

.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 3rem;
}

.why-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid #ead8c4;
}
.why-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--dark); margin-bottom: .5rem;
}
.why-card p { font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* ── About Preview ── */
.about-preview { background: var(--cream); }

.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}

.about-img-wrap {
  border-radius: 60px 20px 60px 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, #e8d5b8, #c9aa8c);
}

.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1rem; text-align: center; padding: 2rem; gap: .5rem;
}

.about-text blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-style: italic; color: var(--rose-deep);
  border-left: 3px solid var(--rose);
  padding-left: 1.2rem; margin: 1.5rem 0;
  line-height: 1.6;
}

/* ── CTA Band ── */
.cta-band {
  background: var(--rose-deep);
  text-align: center; padding: 5rem 2rem;
}

.cta-band .section-title { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-band .btn { background: var(--white); color: var(--rose-deep); }
.cta-band .btn:hover { background: var(--cream); }

/* ── Full About Page ── */
.about-hero {
  background: linear-gradient(135deg, #faf4ea, #f5ece0);
  padding: 7rem 2rem 5rem;
  text-align: center;
}
.about-hero .section-title { max-width: 700px; margin: .5rem auto 1rem; }
.about-hero p { max-width: 560px; margin: 0 auto 2rem; color: var(--mid); font-size: 1.05rem; line-height: 1.8; }

.about-bio-section { background: var(--white); }
.about-bio-layout {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start;
}

.bio-img-wrap {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, #e8d5b8, #c9a880);
}

.bio-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1rem; text-align: center; padding: 2rem; gap: .5rem;
}

.bio-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--dark); margin-bottom: .4rem;
}
.bio-role { color: var(--rose-deep); font-weight: 700; letter-spacing: .08em; font-size: .9rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.bio-text p { color: var(--mid); line-height: 1.85; margin-bottom: 1.2rem; }

.credentials {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .7rem;
}
.credential-tag {
  background: var(--blush);
  color: var(--rose-deep);
  padding: .4rem .9rem; border-radius: 50px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
}

.values-section { background: var(--cream); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.value-card {
  padding: 2rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid #ead8c4;
}
.value-icon { font-size: 2rem; margin-bottom: .8rem; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* ── Services Full Page ── */
.services-hero {
  background: linear-gradient(135deg, #faf4ea, #f5ece0);
  padding: 7rem 2rem 5rem; text-align: center;
}
.services-hero .section-title { max-width: 700px; margin: .5rem auto 1rem; }
.services-hero p { max-width: 520px; margin: 0 auto; color: var(--mid); font-size: 1.05rem; line-height: 1.8; }

.services-note {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.5rem; background: var(--white);
  padding: .5rem 1.2rem; border-radius: 50px;
  font-size: .85rem; color: var(--mid);
  border: 1px solid #e0d4c0;
}

.services-full { background: var(--white); }

.services-category { margin-bottom: 4rem; }
.services-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--dark);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--rose);
  margin-bottom: 2rem; display: flex; align-items: center; gap: .6rem;
}

.service-item {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0e8d8;
}
.service-item:last-child { border-bottom: none; }

.service-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--dark); margin-bottom: .3rem;
}
.service-info p { font-size: .9rem; color: var(--mid); line-height: 1.6; }
.service-duration { font-size: .8rem; color: var(--light-text); margin-top: .3rem; display: flex; align-items: center; gap: .3rem; }

.service-action { display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; min-width: 130px; }
.service-price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--rose-deep);
}
.service-price-from { font-size: .8rem; color: var(--light-text); font-weight: 400; }

/* ── Contact / Footer ── */
.contact-section { background: linear-gradient(135deg, #faf5ec, #f5f0e8); }

.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--dark); margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem;
}
.contact-detail-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--blush); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-detail strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: .1rem; }
.contact-detail span { font-size: .88rem; color: var(--mid); }

.social-links { display: flex; gap: .8rem; margin-top: 1.5rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rose-deep); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background .2s, transform .15s;
}
.social-btn:hover { background: var(--rose-hover); transform: translateY(-2px); }

.quick-contact-form { background: var(--white); border-radius: 20px; padding: 2.5rem; box-shadow: var(--shadow); }
.quick-contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 1.5rem; }

footer {
  background: var(--blush); color: var(--mid);
  padding: 3rem 2rem;
  border-top: 1px solid var(--rose);
}
.footer-inner {
  max-width: 1200px; margin: auto;
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: center;
}
.footer-logo { color: var(--rose-deep); font-family: 'Playfair Display', serif; font-size: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: .85rem; color: var(--mid); transition: color .2s; }
.footer-links a:hover { color: var(--rose-deep); }
.footer-copy { font-size: .8rem; width: 100%; text-align: center; color: var(--light-text); padding-top: 1.5rem; border-top: 1px solid var(--rose); margin-top: 1.5rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .83rem; font-weight: 700;
  letter-spacing: .05em; color: var(--mid); margin-bottom: .4rem;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #ddd0be; border-radius: 8px;
  font-family: 'Lato', sans-serif; font-size: .95rem;
  color: var(--dark); background: var(--cream);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose-deep); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Booking Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(46,35,25,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white); border-radius: 20px;
  width: 100%; max-width: 620px; max-height: 92vh;
  overflow-y: auto; padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(46,35,25,.22);
  position: relative;
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--blush); border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--rose-deep); transition: background .2s;
}
.modal-close:hover { background: var(--rose); }

.modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--dark); margin-bottom: .4rem;
}
.modal-sub { font-size: .9rem; color: var(--mid); margin-bottom: 2rem; }

/* Steps */
.steps-indicator {
  display: flex; gap: 0; margin-bottom: 2.5rem; border-radius: 50px;
  overflow: hidden; border: 1.5px solid #e0d4c0;
}
.step-pill {
  flex: 1; text-align: center; padding: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--light-text);
  background: var(--cream); transition: all .2s; cursor: default;
}
.step-pill.active { background: var(--rose-deep); color: var(--white); }
.step-pill.done { background: var(--rose); color: var(--white); }

.modal-step { display: none; }
.modal-step.active { display: block; }

.step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e0d4c0;
}

/* Payment step */
.payment-summary {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.payment-summary h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dark); margin-bottom: .8rem; }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--mid); padding: .3rem 0; }
.summary-row.total { font-weight: 700; color: var(--dark); font-size: 1rem; border-top: 1px solid #ddd0be; margin-top: .5rem; padding-top: .8rem; }

.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.payment-option {
  border: 2px solid #e0d4c0; border-radius: var(--radius);
  padding: 1rem; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.payment-option:hover { border-color: var(--rose); background: var(--blush); }
.payment-option.selected { border-color: var(--rose-deep); background: #f5ede0; }
.payment-option-icon { font-size: 1.8rem; margin-bottom: .3rem; }
.payment-option-name { font-size: .85rem; font-weight: 700; color: var(--dark); }
.payment-option-note { font-size: .75rem; color: var(--light-text); }

/* Confirmation screen */
.confirm-screen {
  text-align: center; padding: 1.5rem 0;
}
.confirm-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirm-screen h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: .6rem; }
.confirm-screen p { color: var(--mid); line-height: 1.7; max-width: 380px; margin: 0 auto 1.5rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-subtitle { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-image { order: -1; max-width: 380px; margin: auto; }
  .hero-badge { bottom: -10px; left: 10px; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 360px; margin: auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-bio-layout { grid-template-columns: 1fr; gap: 3rem; }
  .bio-img-wrap { max-width: 300px; margin: auto; }
}

@media (max-width: 640px) {
  nav { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.2rem; }
  .section-inner { text-align: center; }
  .section-sub { margin-left: auto; margin-right: auto; }
  .form-row { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 1fr; text-align: center; }
  .service-action { align-items: center; flex-direction: row; justify-content: center; }
  .payment-options { grid-template-columns: 1fr; }
  .modal { padding: 1.5rem; }
  .contact-form, .contact-info { text-align: left; }
}

/* ── Reviews ── */
.reviews-section { background: var(--white); }

.reviews-carousel {
  position: relative; min-height: 180px;
  max-width: 680px; margin: 2.5rem auto 1.5rem;
}

.review-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.review-slide.active { opacity: 1; pointer-events: auto; }

.review-stars { font-size: 1.3rem; color: var(--rose-deep); letter-spacing: .1em; margin-bottom: 1rem; }

.review-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic; color: var(--dark);
  line-height: 1.6; margin-bottom: 1rem;
}

.review-name {
  font-size: .9rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--rose-deep);
}

.review-dots {
  display: flex; justify-content: center; gap: .6rem; margin-top: 1rem;
}
.review-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); opacity: .4; cursor: pointer;
  transition: opacity .2s, background .2s;
}
.review-dot.active { opacity: 1; background: var(--rose-deep); }

/* ── Page visibility ── */
.page { display: none; }
.page.active { display: block; }

/* ── Divider butterfly ── */
.butterfly-divider {
  text-align: center; padding: 1rem 0;
  font-size: 1.4rem; color: var(--rose);
  opacity: .7;
}

/* ── Accessibility ── */
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* Smooth page transitions */
.page { animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
