/* ============================================================
   PAO BOSCÁN BEAUTY STUDIO — Stylesheet
   Layout language borrowed from thereformeryclinic.com:
   photo-led tiles with a caption bar, generous rounding,
   pill buttons, white-dominant sections, lots of air.
   Colours stay Pao's own: dusty rose, blush, mauve, charcoal.
   ============================================================ */

:root {
  /* --- Brand palette (unchanged) ---------------------------- */
  --rose:       #c9a3a3;   /* primary dusty rose from the logo */
  --rose-deep:  #b08383;   /* deeper rose for hovers */
  --mauve:      #8d6e6e;   /* caption bars + CTAs: 4.6:1 with white */
  --blush:      #f6ecec;   /* soft background */
  --blush-2:    #fbf6f4;   /* lighter background */
  --cream:      #fffdfb;
  --charcoal:   #2e2828;   /* headings */
  --gray:       #6f6868;   /* body copy: 5.6:1 on white */
  --gray-soft:  #9a8f8f;   /* meta, captions */
  --white:      #ffffff;
  --line:       #ece0e0;
  --whatsapp:   #25d366;

  --display: "Quicksand", "Trebuchet MS", sans-serif;
  --body:     "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 5vw, 60px);

  /* generous rounding is the signature of the reference layout */
  --r-tile: 25px;
  --r-card: 20px;
  --r-pill: 40px;

  --lift: 0 20px 50px -24px rgba(141, 110, 110, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 0.32s var(--ease);
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 1.125rem;              /* 18px, matching the reference */
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--mauve); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- TYPE ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.005em;
}

.section { padding: clamp(72px, 8vw, 120px) 0; }

.section__eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-deep);
  text-align: center;
  margin-bottom: 16px;
}
.section__eyebrow.light { color: rgba(255,255,255,0.85); }

.section__title {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  text-align: center;
  margin-bottom: 22px;
}
.section__title.light { color: var(--white); }

.section__intro {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto clamp(44px, 5vw, 68px);
  color: var(--gray);
}

/* ---------- BUTTONS — pills, roomy padding ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 21px 44px; font-size: 1rem; }

.btn--primary { background: var(--mauve); color: var(--white); }
.btn--primary:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn--ghost { border-color: rgba(255,255,255,0.65); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--charcoal); }

.btn--ghost-dark { background: var(--blush); border-color: var(--blush); color: var(--charcoal); }
.btn--ghost-dark:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { background: #1eb858; transform: translateY(-2px); }

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 253, 251, 0.9);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid var(--line);
  transition: var(--t);
}
/* .nav also carries .container — use longhands so the shorthand doesn't
   wipe out the container's horizontal gutter */
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; gap: 24px; }

.nav__logo {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  line-height: 1;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.nav__logo span { color: var(--rose-deep); }
.nav__logo small {
  font-family: var(--body);
  font-size: 0.48rem;
  letter-spacing: 0.3em;
  color: var(--gray-soft);
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav__menu { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 4px 0;
  transition: color var(--t);
}
.nav__link:hover { color: var(--rose-deep); }

.nav__cta {
  background: var(--mauve);
  color: var(--white) !important;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.nav__cta:hover { background: var(--charcoal); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; border-radius: 2px; background: var(--charcoal); transition: var(--t); }

/* ---------- NAV DROPDOWN ---------- */
.nav__item--has-dropdown { position: relative; }
.nav__caret { font-size: 0.7rem; transition: transform var(--t); display: inline-block; margin-left: 4px; opacity: 0.65; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 252px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--lift);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -20px;
  height: 22px;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__dropdown:hover {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__item--has-dropdown:hover .nav__caret { transform: rotate(180deg); }
.nav__dropdown li a {
  display: block;
  padding: 12px 18px;
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 12px;
  transition: background var(--t), color var(--t);
}
.nav__dropdown li a:hover { background: var(--blush); color: var(--rose-deep); }
.nav__dropdown-all {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  color: var(--rose-deep) !important;
  font-weight: 700 !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--blush) 0%, var(--blush-2) 60%, var(--white) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(132px, 14vw, 168px);
  padding-bottom: clamp(80px, 9vw, 116px);
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--rose-deep);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 48ch;
  margin: 0 0 34px;
  color: var(--gray);
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  color: var(--gray);
}
.hero__stars { color: var(--rose); letter-spacing: 0.12em; }
.hero__rating strong { color: var(--charcoal); font-weight: 700; }

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__actions .btn--ghost { background: var(--white); border-color: var(--white); color: var(--charcoal); }
.hero__actions .btn--ghost:hover { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

.hero__badges {
  display: flex; flex-wrap: wrap;
  column-gap: 26px; row-gap: 10px;
  margin-top: 40px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: var(--gray-soft);
  text-transform: uppercase;
  font-weight: 700;
}
.hero__badges li { display: flex; align-items: center; gap: 9px; }
.hero__badges li::before { content: ""; flex: 0 0 14px; height: 2px; border-radius: 2px; background: var(--rose); }

/* portrait as a big soft-cornered panel */
.hero__photo { position: relative; }
.hero__photo img {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-tile);
}

/* ============================================================
   SERVICES — photo tile + caption bar (the reference pattern)
   ============================================================ */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 3vw, 44px);
}
.service-card { display: flex; flex-direction: column; text-align: left; }

.service-card__tile {
  display: block;
  position: relative;
  border-radius: var(--r-tile);
  overflow: hidden;
  background: var(--blush);
  margin-bottom: 24px;
}
.service-card__tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card__tile:hover img { transform: scale(1.04); }

/* the caption bar sits flush at the foot of the tile */
.service-card__name {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  color: var(--white);
  background: var(--mauve);
  text-align: center;
  padding: 20px 18px;
  margin: 0;
  transition: background var(--t);
}
.service-card__tile:hover .service-card__name { background: var(--charcoal); }

.service-card p { font-size: 1rem; line-height: 1.65; }
.service-card__price {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--rose-deep);
  font-size: 0.95rem;
  font-weight: 700;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap var(--t), color var(--t);
}
.service-card__more:hover { gap: 14px; color: var(--rose-deep); }
.service-card--link .btn { margin-top: 20px; align-self: flex-start; }
.services__cta { text-align: center; margin-top: clamp(44px, 5vw, 64px); }

/* the three icon cards on About keep the line icons */
.service-card--plain {
  background: var(--blush-2);
  border-radius: var(--r-card);
  padding: 38px 32px;
}
.service-card__icon {
  width: 42px; height: 42px;
  margin: 0 0 20px;
  color: var(--rose-deep);
}
.service-card__icon svg { width: 100%; height: 100%; display: block; }
.service-card--plain h3 { font-size: 1.4rem; margin-bottom: 10px; }

/* ---------- ABOUT ---------- */
.about { background: var(--blush-2); }
.about__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about__image img {
  border-radius: var(--r-tile);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  background: var(--blush);
}
.about__text .section__eyebrow,
.about__text .section__title { text-align: left; }
.about__text p { margin-bottom: 18px; max-width: 56ch; }
.about__list { margin: 28px 0 32px; display: grid; gap: 12px; max-width: 56ch; }
.about__list li {
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 14px 24px;
  color: var(--charcoal);
  font-size: 1rem;
}

/* ---------- ACADEMY ---------- */
.academy { background: var(--white); }
.academy__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(22px, 2.5vw, 34px);
}
.academy__card {
  background: var(--blush);
  padding: 40px 34px;
  border-radius: var(--r-card);
  transition: transform var(--t), box-shadow var(--t);
}
.academy__card:hover { transform: translateY(-5px); box-shadow: var(--lift); }
.academy__card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.academy__card p { font-size: 1rem; }
.academy__cta { text-align: center; margin-top: clamp(40px, 5vw, 58px); }

/* ---------- GALLERY ---------- */
.gallery { background: var(--blush-2); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--r-tile);
  aspect-ratio: 1/1;
  background: var(--blush);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__note { text-align: center; margin-top: 36px; color: var(--gray-soft); font-size: 1rem; }
.gallery__note a { color: var(--rose-deep); font-weight: 700; }

/* ---------- REVIEWS ---------- */
.reviews { background: var(--white); }
.reviews__rating {
  display: flex; flex-direction: column; align-items: center;
  margin: 18px auto 52px;
  gap: 4px;
}
.reviews__score { font-family: var(--display); font-size: 3.6rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.reviews__stars { color: var(--rose); font-size: 1.3rem; letter-spacing: 0.18em; }
.reviews__count { color: var(--gray-soft); font-size: 0.95rem; }
.reviews__link { color: var(--rose-deep); font-weight: 700; font-size: 0.95rem; margin-top: 10px; }
.reviews__link:hover { text-decoration: underline; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.review-card {
  background: var(--blush-2);
  padding: 40px 34px;
  border-radius: var(--r-card);
}
.review-card__stars { color: var(--rose); font-size: 1.05rem; margin-bottom: 14px; letter-spacing: 0.14em; }
.review-card p { font-size: 1.05rem; margin-bottom: 18px; color: var(--charcoal); }
.review-card cite { font-style: normal; font-size: 0.9rem; color: var(--gray-soft); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { background: var(--blush-2); }
.faq__list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 6px 30px;
}
.faq__item summary {
  cursor: pointer;
  padding: 22px 40px 22px 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  list-style: none;
  position: relative;
  transition: color var(--t);
}
.faq__item summary:hover { color: var(--rose-deep); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute; right: 4px; top: 50%;
  width: 14px; height: 2px; border-radius: 2px;
  background: var(--rose-deep);
  transform: translateY(-50%);
}
.faq__item summary::before {
  content: "";
  position: absolute; right: 10px; top: 50%;
  width: 2px; height: 14px; border-radius: 2px;
  background: var(--rose-deep);
  transform: translateY(-50%);
  transition: transform var(--t), opacity var(--t);
}
.faq__item[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq__item p { padding: 0 30px 24px 0; }

/* ---------- BOOKING ---------- */
.booking { background: var(--blush); text-align: center; }
.booking .section__eyebrow { color: var(--rose-deep); }
.booking .section__title { color: var(--charcoal); }
.booking__intro { color: var(--gray); max-width: 56ch; margin: 0 auto 36px; }
.booking__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
}
.contact__info .section__eyebrow,
.contact__info .section__title { text-align: left; }
.contact__details { margin: 28px 0; display: grid; gap: 12px; }
.contact__details li {
  background: var(--blush-2);
  border-radius: var(--r-card);
  padding: 16px 24px;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.55;
}
.contact__details strong {
  display: block;
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-soft); font-weight: 700; margin-bottom: 3px;
}
.contact__details a { color: var(--rose-deep); font-weight: 700; }
.contact__social { display: flex; gap: 10px; flex-wrap: wrap; }
.contact__social a {
  color: var(--charcoal); font-weight: 700; font-size: 0.9rem;
  background: var(--blush); padding: 13px 26px; border-radius: var(--r-pill);
  transition: var(--t);
}
.contact__social a:hover { background: var(--rose); color: var(--white); }
.contact__map {
  min-height: 420px;
  border-radius: var(--r-tile);
  overflow: hidden;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.62); padding: 76px 0 34px; text-align: center; }
.footer__brand {
  font-family: var(--display);
  font-size: 1.7rem; font-weight: 700; color: var(--white);
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  letter-spacing: 0.06em;
}
.footer__brand span { color: var(--rose); }
.footer__brand small { font-family: var(--body); font-size: 0.48rem; letter-spacing: 0.3em; margin-top: 7px; color: var(--rose); text-transform: uppercase; font-weight: 700; }
.footer__tag { margin: 18px 0 28px; color: var(--rose); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer__links {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 30px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer__links a { font-family: var(--display); font-size: 0.98rem; font-weight: 500; transition: color var(--t); }
.footer__links a:hover { color: var(--rose); }
.footer__copy { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 999;
  transition: transform var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- STICKY MOBILE CTA BAR ---------- */
.mobile-bar { display: none; }
@media (max-width: 860px) {
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 12px;
    gap: 10px;
  }
  .mobile-bar__btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 10px;
    border-radius: var(--r-pill);
    font-size: 0.9rem;
    font-weight: 700;
  }
  .mobile-bar__call { flex: 0 0 32%; background: var(--blush); color: var(--charcoal); }
  .mobile-bar__book { background: var(--mauve); color: var(--white); }
  .whatsapp-float { bottom: 90px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  padding: clamp(136px, 15vw, 184px) 0 clamp(60px, 7vw, 88px);
  background: linear-gradient(165deg, var(--blush) 0%, var(--blush-2) 70%, var(--white) 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-hero p { max-width: 60ch; margin: 0 auto; color: var(--gray); }
.page-hero .btn { margin-top: 30px; }
.page-hero__price {
  display: inline-block; margin-top: 20px;
  padding: 11px 26px; background: var(--white); color: var(--charcoal);
  border-radius: var(--r-pill); font-weight: 700; font-size: 0.95rem;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb { font-size: 0.88rem; color: var(--gray-soft); margin-bottom: 16px; }
.breadcrumb a { color: var(--rose-deep); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ---------- PROSE ---------- */
.prose { max-width: 74ch; margin: 0 auto; }
.prose h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin: 50px 0 18px; text-align: left; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 20px; }
.prose ul.ticks { margin: 10px 0 28px; display: grid; gap: 10px; }
.prose ul.ticks li {
  background: var(--blush-2);
  border-radius: var(--r-pill);
  padding: 14px 24px 14px 50px;
  color: var(--charcoal);
  position: relative;
  font-size: 1rem;
}
.prose ul.ticks li::before {
  content: "✓";
  position: absolute; left: 24px; top: 14px;
  color: var(--rose-deep); font-weight: 700;
}

/* ---------- PROCESS STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 22px; margin: 14px 0 24px; }
.step { background: var(--blush-2); border-radius: var(--r-card); padding: 34px 30px; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--rose); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { font-size: 1rem; }

/* ---------- PRICE TABLE ---------- */
.price-table { max-width: 700px; margin: 26px auto 0; background: var(--white); border-radius: var(--r-card); box-shadow: var(--lift); overflow: hidden; }
.price-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 30px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: none; }
.price-row__name { color: var(--charcoal); }
.price-row__cost { color: var(--rose-deep); font-weight: 700; white-space: nowrap; }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--blush); text-align: center; }
.cta-band h2 { color: var(--charcoal); }
.cta-band p { color: var(--gray); max-width: 56ch; margin: 0 auto 32px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- ANIMATIONS ON SCROLL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr 0.88fr; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__image { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 70px; right: -100%;
    width: 82%; max-width: 340px;
    height: calc(100vh - 70px);
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 34px 28px;
    gap: 22px;
    overflow-y: auto;
    transition: right 0.4s var(--ease);
  }
  .nav__menu.open { right: 0; }
  .nav__link { font-size: 1.08rem; }
  .nav__cta { text-align: center; justify-content: center; }

  .nav__item--has-dropdown { width: 100%; }
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    margin: 8px 0 0;
    background: var(--blush-2);
    border-radius: 14px;
    transition: max-height 0.4s var(--ease);
  }
  .nav__dropdown::before { display: none; }
  .nav__item--has-dropdown.open .nav__dropdown { max-height: 640px; padding: 8px; }
  .nav__item--has-dropdown.open .nav__caret { transform: rotate(180deg); }
  .nav__caret { float: right; padding: 4px 8px; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__content { order: 2; }
  .hero__photo { order: 1; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__badges { justify-content: center; }
  .hero__photo img { margin: 0 auto; max-width: 340px; }

  .about__text .section__eyebrow,
  .about__text .section__title,
  .contact__info .section__eyebrow,
  .contact__info .section__title { text-align: center; }
  .about__text p, .about__list { margin-left: auto; margin-right: auto; }
  .contact__social { justify-content: center; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  body { padding-bottom: 72px; }   /* clear the sticky CTA bar */
}

@media (max-width: 520px) {
  body { font-size: 1.05rem; }
  .hero__badges { flex-direction: column; align-items: center; }
  .btn { padding: 16px 28px; font-size: 0.9rem; }
  .faq__item summary { font-size: 1.1rem; }
  .faq__item { padding: 4px 22px; }
}
