/* ═══════════════════════════════════════════════════════════
   IVY'S BEAUTY SECRET — SECONDARY PAGES STYLESHEET
   Extends styles.css. Shared patterns reused across About,
   Services, Gallery, Pricing, Testimonials, Contact.
═══════════════════════════════════════════════════════════ */

/* ── PAGE HERO (shared across all secondary pages) ────────── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* clears fixed nav */
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,8,16,0.55) 0%,
    rgba(255,79,154,0.30) 55%,
    rgba(255,240,246,0.92) 100%);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 var(--container-pad);
}

.page-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  margin-bottom: 16px;
}

.page-hero__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .page-hero { min-height: 50vh; }
  .page-hero__headline { font-size: 38px; }
  .page-hero__body { font-size: 14px; }
}

/* ── OUR STORY (About page — editorial split) ──────────────── */
.our-story {
  position: relative;
  background: var(--white);
  padding: 100px 0;
}
.our-story__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
.our-story__content { flex: 0 0 50%; }
.our-story__image-wrap { flex: 0 0 50%; }
.our-story__image {
  width: 100%;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--card-shadow-lg);
}

@media (max-width: 900px) {
  .our-story { padding: 64px 0; }
  .our-story__inner { flex-direction: column-reverse; gap: 40px; }
  .our-story__content, .our-story__image-wrap { flex: none; width: 100%; }
}

/* ── MISSION & VISION ───────────────────────────────────────── */
.mission {
  position: relative;
  background: var(--pink-blush);
  padding: 100px 0;
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.mission__card {
  background: var(--white);
  border-radius: var(--card-radius-lg);
  box-shadow: var(--card-shadow);
  padding: 44px 36px;
  text-align: center;
}
.mission__icon {
  font-size: 36px;
  color: var(--pink-primary);
  margin-bottom: 16px;
}
.mission__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.mission__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid-text);
}

@media (max-width: 768px) {
  .mission { padding: 64px 0; }
  .mission__grid { grid-template-columns: 1fr; gap: 20px; }
  .mission__card { padding: 32px 24px; }
}

/* ── TEAM ───────────────────────────────────────────────────── */
.team {
  position: relative;
  background: var(--white);
  padding: 100px 0;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-card__image-wrap {
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--card-shadow);
}
.team-card__image { width: 100%; aspect-ratio: 5/5.6; object-fit: cover; }
.team-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--dark-text);
  margin-bottom: 4px;
}
.team-card__role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--mid-text);
}

@media (max-width: 900px) {
  .team { padding: 64px 0; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── VALUES ─────────────────────────────────────────────────── */
.values {
  position: relative;
  background: var(--lavender);
  padding: 100px 0;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.values__card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.values__card:hover { box-shadow: var(--card-shadow-hover); }
.values__icon { font-size: 30px; color: var(--pink-primary); margin-bottom: 14px; display: block; }
.values__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.values__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.7;
  color: var(--mid-text);
}

@media (max-width: 900px) {
  .values { padding: 64px 0; }
  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── CTA STRIP (condensed booking prompt — used on secondary pages) ── */
.cta-strip {
  position: relative;
  background: var(--grad-booking);
  padding: 80px var(--container-pad);
  overflow: hidden;
  text-align: center;
}
.cta-strip__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.14), transparent 60%);
  pointer-events: none;
}
.cta-strip__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.18);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .cta-strip { padding: 56px var(--container-pad-m); }
  .cta-strip__headline { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — quicknav, service blocks, service lists
═══════════════════════════════════════════════════════════ */

.services-quicknav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0 var(--container-pad);
}
.services-quicknav__pill {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s ease;
}
.services-quicknav__pill:hover { background: rgba(255,255,255,0.30); }

@media (max-width: 768px) {
  .services-quicknav { padding: 0 var(--container-pad-m); gap: 8px; }
  .services-quicknav__pill { font-size: 12px; padding: 8px 16px; }
}

/* ── Service Block (alternating image/content) ────────────── */
.service-block {
  position: relative;
  background: var(--white);
  padding: 90px 0;
}
.service-block--alt { background: var(--pink-blush); }
.service-block--minimal { background: var(--lavender); }
.service-block--dark {
  background: var(--grad-dark-hair);
  overflow: hidden;
}
.service-block__bloom {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,79,154,0.14), transparent 60%);
  filter: blur(70px);
  pointer-events: none;
}
.service-block--dark .container { position: relative; z-index: 1; }

.service-block__inner {
  display: flex;
  align-items: center;
  gap: 70px;
}
.service-block__inner--reverse { flex-direction: row-reverse; }

.service-block__image-wrap { flex: 0 0 45%; }
.service-block__image {
  width: 100%;
  aspect-ratio: 9/10;
  object-fit: cover;
  border-radius: var(--card-radius-lg);
  box-shadow: var(--card-shadow-lg);
}
.img-dark-bg { filter: brightness(0.75) saturate(0.92); }

.service-block__content { flex: 0 0 55%; }

.service-list { margin-top: 8px; }
.service-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--pink-soft);
}
.service-list__item:first-child { border-top: 1px solid var(--pink-soft); }
.service-list__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--dark-text);
}
.service-list__book {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--pink-primary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.service-list__book:hover { transform: translateX(3px); }

.service-list--dark .service-list__item { border-color: rgba(255,255,255,0.15); }
.service-list--dark .service-list__name { color: var(--white); }
.service-list__book--gold { color: var(--gold); }

@media (max-width: 900px) {
  .service-block { padding: 56px 0; }
  .service-block__inner,
  .service-block__inner--reverse {
    flex-direction: column;
    gap: 32px;
  }
  .service-block__image-wrap, .service-block__content { flex: none; width: 100%; }
  .section-h2 { font-size: 34px; }
}

/* ── Minimal Service Cards (Threading & Waxing) ───────────── */
.service-minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-minimal-card {
  background: var(--white);
  border-radius: var(--card-radius-sm);
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-minimal-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--dark-text);
}

@media (max-width: 900px) {
  .service-minimal-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY PAGE — mini sliders, masonry, bridal scroll
═══════════════════════════════════════════════════════════ */

.gallery-page-sliders {
  position: relative;
  background: var(--white);
  padding: 90px 0;
}
.mini-sliders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mini-slider {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(255,79,154,0.14);
  touch-action: pan-y;
  user-select: none;
}
.mini-slider__before, .mini-slider__after {
  position: absolute;
  inset: 0;
}
.mini-slider__after { clip-path: inset(0 0 0 50%); }
.mini-slider img { width: 100%; height: 100%; object-fit: cover; }
.mini-slider__before img { filter: brightness(0.9) saturate(0.6); }
.mini-slider__after img { filter: brightness(1.06) saturate(1.12); }

.mini-slider__badge {
  position: absolute;
  top: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--white);
  z-index: 2;
}
.mini-slider__badge--before { left: 10px; background: rgba(0,0,0,0.55); }
.mini-slider__badge--after { right: 10px; background: var(--pink-primary); }

.mini-slider__divider {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 14px rgba(255,255,255,0.7);
  cursor: grab;
  z-index: 3;
}
.mini-slider__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink-primary);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(255,79,154,0.5);
}
.mini-slider__handle span { color: var(--white); font-size: 11px; font-family: var(--font-body); font-weight: 600; }

.mini-slider__label {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 900px) {
  .gallery-page-sliders { padding: 56px 0; }
  .mini-sliders { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Gallery category sections ───────────────────────────── */
.gallery-category {
  position: relative;
  background: var(--white);
  padding: 64px 0;
}
.gallery-category--alt { background: var(--pink-blush); }
.gallery-category--bridal {
  background: var(--grad-dark-hair);
  padding: 64px 0 0;
}
.gallery-category__header { margin-bottom: 32px; text-align: center; }

.masonry {
  columns: 4;
  column-gap: 12px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.masonry--square { columns: 4; }
.masonry__item {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  break-inside: avoid;
}
.masonry__item img { width: 100%; height: 100%; object-fit: cover; transition: filter 0.35s ease, transform 0.35s ease; }
.masonry__item:hover img { filter: brightness(1.10) saturate(1.14); transform: scale(1.03); }
.masonry__item--tall img { aspect-ratio: 3/4; }
.masonry__item:not(.masonry__item--tall) img { aspect-ratio: 1/1; }

@media (max-width: 900px) {
  .gallery-category { padding: 48px 0; }
  .masonry, .masonry--square { columns: 2; column-gap: 8px; }
  .masonry__item { margin-bottom: 8px; }
}

.bridal-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 var(--container-pad) 64px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.bridal-scroll img {
  flex: 0 0 380px;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .bridal-scroll { padding: 0 var(--container-pad-m) 48px; }
  .bridal-scroll img { flex: 0 0 280px; height: 320px; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE — featured package, price tables, price cards
═══════════════════════════════════════════════════════════ */

.featured-package {
  position: relative;
  background: var(--white);
  padding: 80px 0;
}
.featured-package__card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, #2C1020 0%, #1A0810 100%);
  border-radius: var(--card-radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(212,160,79,0.18);
}
.featured-package__ribbon {
  position: absolute;
  top: 24px; right: -8px;
  background: var(--grad-gold-cta);
  color: #1A0810;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px 0 0 50px;
}
.featured-package__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.featured-package__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin: 0 auto 24px;
}
.featured-package__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .featured-package { padding: 56px 0; }
  .featured-package__card { padding: 40px 24px; }
  .featured-package__title { font-size: 30px; }
}

/* ── Pricing Blocks ───────────────────────────────────────── */
.pricing-block {
  position: relative;
  background: var(--white);
  padding: 80px 0;
}
.pricing-block--alt { background: var(--pink-blush); }
.pricing-block--dark { background: var(--grad-dark-hair); }

.price-table {
  max-width: 720px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--pink-soft);
}
.price-row:first-child { border-top: 1px solid var(--pink-soft); }
.price-row__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-text);
}
.price-row__price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--pink-primary);
  flex-shrink: 0;
  margin-left: 20px;
}
.price-row--featured .price-row__name { color: var(--pink-deep); }
.price-row--featured .price-row__price {
  font-weight: 600;
  background: var(--pink-soft);
  padding: 4px 12px;
  border-radius: 50px;
}

.price-table--dark .price-row { border-color: rgba(255,255,255,0.15); }
.price-table--dark .price-row__name { color: var(--white); }
.price-row--gold .price-row__price { color: var(--gold); font-weight: 600; }

@media (max-width: 768px) {
  .pricing-block { padding: 56px 0; }
  .price-row__name { font-size: 16px; }
}

/* ── Price Cards (Nails grid) ─────────────────────────────── */
.price-table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border-radius: var(--card-radius-sm);
  box-shadow: var(--card-shadow);
  padding: 28px 20px;
  text-align: center;
}
.price-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark-text);
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--pink-primary);
}

@media (max-width: 768px) {
  .price-table-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS PAGE — rating summary, featured review, grid
═══════════════════════════════════════════════════════════ */

.page-hero--testimonials {
  min-height: 50vh;
  background: linear-gradient(135deg, #FFF0F6 0%, #FFD6E7 60%, #FFF8FB 100%);
}
.page-hero__bg-gradient { position: absolute; inset: 0; }
.page-hero__headline--dark {
  color: var(--dark-text);
  text-shadow: none;
}
.page-hero--testimonials .page-hero__content { position: relative; z-index: 1; }

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
}
.rating-summary__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: var(--pink-primary);
  letter-spacing: -0.02em;
}
.rating-summary__stars { color: var(--gold); font-size: 20px; }
.rating-summary__count {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--mid-text);
}

@media (max-width: 768px) {
  .page-hero--testimonials { min-height: 44vh; }
  .rating-summary__number { font-size: 38px; }
}

/* ── Featured Review (large pull-quote) ──────────────────── */
.featured-review {
  position: relative;
  background: var(--white);
  padding: 80px 0;
}
.featured-review__card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}
.featured-review__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 100px;
  line-height: 0.8;
  color: var(--pink-soft);
  margin-bottom: -20px;
}
.featured-review__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.5;
  color: var(--dark-text);
}
.featured-review__divider { width: 40px; height: 1px; background: var(--pink-soft); margin: 24px auto; }
.featured-review__author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--pink-primary);
  display: block;
  font-style: normal;
}
.featured-review__service {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: var(--light-text);
  margin-top: 2px;
}
.featured-review__stars { color: var(--gold); font-size: 16px; margin-top: 12px; }

@media (max-width: 768px) {
  .featured-review { padding: 56px 0; }
  .featured-review__text { font-size: 20px; }
  .featured-review__quote { font-size: 70px; }
}

/* ── Review Grid (masonry of 9 reviews) ──────────────────── */
.review-grid-section {
  position: relative;
  background: var(--pink-blush);
  padding: 80px 0;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
}
.review-card__stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
.review-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}
.review-card__author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--pink-primary);
}
.review-card__service {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: var(--light-text);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .review-grid-section { padding: 56px 0; }
  .review-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — dual booking, location/map, FAQ accordion
═══════════════════════════════════════════════════════════ */

.booking--contact-page {
  min-height: auto;
  padding: var(--space-xxl) var(--container-pad);
}
.booking__content--wide { max-width: 900px; margin-left: auto; }

.dual-booking {
  display: flex;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.14);
}
.dual-booking__panel { flex: 1; text-align: center; }
.dual-booking__panel--form { text-align: left; }
.dual-booking__divider { width: 1px; background: rgba(255,255,255,0.20); flex-shrink: 0; }

@media (max-width: 900px) {
  .booking--contact-page { padding: var(--space-xl) var(--container-pad-m); }
  .booking__content--wide { margin-left: 0; max-width: 100%; }
  .dual-booking { flex-direction: column; gap: 32px; padding: 28px 20px; }
  .dual-booking__divider { width: 100%; height: 1px; }
}

/* ── Location & Map ───────────────────────────────────────── */
.location {
  position: relative;
  background: var(--white);
  padding: 100px 0;
}
.location__inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.location__map-wrap {
  flex: 0 0 50%;
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-lg);
  min-height: 420px;
}
.location__map { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

.location__content { flex: 0 0 50%; }
.location__address {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid-text);
  margin: 16px 0 28px;
}

.location__hours { margin-bottom: 28px; }
.location__hours-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: 12px;
}
.location__hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--mid-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--pink-soft);
  max-width: 360px;
}

.location__contacts { display: flex; flex-direction: column; gap: 12px; }
.location__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-text);
  transition: color 0.2s ease;
}
.location__contact-item i { color: var(--pink-primary); font-size: 18px; }
.location__contact-item:hover { color: var(--pink-primary); }

@media (max-width: 900px) {
  .location { padding: 64px 0; }
  .location__inner { flex-direction: column; gap: 32px; }
  .location__map-wrap, .location__content { flex: none; width: 100%; min-height: 300px; }
  .location__map { min-height: 300px; }
}

/* ── FAQ Accordion ────────────────────────────────────────── */
.faq {
  position: relative;
  background: var(--lavender);
  padding: 100px 0;
}
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--white);
  border-radius: var(--card-radius-sm);
  box-shadow: var(--card-shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--dark-text);
  text-align: left;
}
.faq__icon { font-size: 18px; color: var(--pink-primary); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__answer p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--mid-text);
  padding: 0 26px 22px;
}
.faq__item.is-open .faq__answer { max-height: 300px; }

@media (max-width: 768px) {
  .faq { padding: 64px 0; }
  .faq__question { font-size: 15px; padding: 18px 20px; }
  .faq__answer p { padding: 0 20px 18px; font-size: 13px; }
}
