/* ============================================================
   BRIDEOCITY BY TUBA — brideocitybytuba.com
   Design system inspired by soft pastel salon aesthetic.
   Mobile-first. No frameworks.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream: #FDF7F4;
  --blush: #FAEDE9;
  --white: #ffffff;
  --ink: #33232B;
  --muted: #7D6670;
  --rose: #B4506B;
  --rose-dark: #93384F;
  --rose-soft: #F4DCE2;
  --rose-faint: #FBEFF2;
  --gold: #C89A5E;
  --grad-hero: linear-gradient(108deg, #FBF2D8 0%, #FAE3E0 55%, #F6CDD6 100%);
  --grad-band: linear-gradient(115deg, #B4506B 0%, #C96A82 100%);
  --shadow-card: 0 12px 34px rgba(90, 35, 52, 0.09);
  --shadow-soft: 0 6px 18px rgba(90, 35, 52, 0.07);
  --radius: 10px;
  --font-display: 'Prata', 'Georgia', serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;
  --container: 1140px;
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--rose); text-decoration: none; }
a:hover { color: var(--rose-dark); }
button { font: inherit; cursor: pointer; }
ul[class], ol[class] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 6.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { color: var(--muted); }
.lead { font-size: 1.1rem; }
strong { color: var(--ink); }

.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.9rem;
}
.on-rose .eyebrow { color: #FBE3D9; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: clamp(58px, 9vw, 104px); }
.section-tight { padding-block: clamp(40px, 6vw, 70px); }
.section-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head p { margin-top: 0.8rem; }
.bg-blush { background: var(--blush); }
.bg-white { background: var(--white); }
.bg-rose { background: var(--grad-band); }
.on-rose h1, .on-rose h2, .on-rose h3, .on-rose h4 { color: #fff; }
.on-rose p { color: #FBE3E3; }
/* white cards placed on rose sections keep their own text colors */
.on-rose .service-card h3, .on-rose .service-card h3 a { color: var(--ink); }
.on-rose .service-card p { color: var(--muted); }

.grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Split rows (text + media) */
.split { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split.split-40-60 { grid-template-columns: 2fr 3fr; }
  .split.split-60-40 { grid-template-columns: 3fr 2fr; }
  .split > .order-first-desktop { order: -1; }
}

/* ---------- Decorative waves ---------- */
.waves {
  width: 130px;
  height: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 44' fill='none' stroke='%23B4506B' stroke-width='1.4'%3E%3Cpath d='M2 6 Q 34 -4 66 6 T 128 6'/%3E%3Cpath d='M2 17 Q 34 7 66 17 T 128 17'/%3E%3Cpath d='M2 28 Q 34 18 66 28 T 128 28'/%3E%3Cpath d='M2 39 Q 34 29 66 39 T 128 39'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.55;
}
.waves-light { filter: brightness(4); opacity: 0.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border: 1.5px solid var(--rose);
  border-radius: 6px;
  background: var(--rose);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-outline { background: transparent; color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-white { background: #fff; border-color: #fff; color: var(--rose); }
.btn-white:hover { background: var(--rose-faint); border-color: var(--rose-faint); color: var(--rose-dark); }
.btn-lg { padding: 1rem 2.1rem; font-size: 0.88rem; }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}
.text-link::after { content: '→'; transition: transform 0.2s; }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.25s;
}
.site-header.scrolled { box-shadow: 0 4px 22px rgba(90, 35, 52, 0.08); }
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand svg { width: 42px; height: 42px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 2px;
}
.main-nav { display: none; }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 8px;
  background: none;
  border: 0;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: absolute;
  inset-inline: 0;
  top: 100%;
  background: var(--cream);
  border-top: 1px solid var(--rose-soft);
  box-shadow: 0 24px 40px rgba(90, 35, 52, 0.12);
  padding: 0.6rem 20px 1.4rem;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.8rem 0.2rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(180, 80, 107, 0.12);
}
.mobile-nav a[aria-current="page"] { color: var(--rose); }
.mobile-nav .subnav a { padding-left: 1.2rem; font-size: 0.95rem; color: var(--muted); }
.mobile-nav .btn { margin-top: 1.1rem; width: 100%; }

@media (min-width: 1000px) {
  .nav-toggle, .mobile-nav { display: none !important; }
  .main-nav { display: flex; align-items: center; gap: 1.7rem; }
  .main-nav > li { position: relative; }
  .main-nav a {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0.4rem 0;
  }
  .main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--rose); }
  .has-sub > a::after { content: ' ▾'; font-size: 0.7em; }
  .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: -14px;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }
  .has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .sub-menu a { display: block; padding: 0.55rem 1.1rem; text-transform: none; letter-spacing: 0.02em; font-size: 0.95rem; font-weight: 500; }
  .sub-menu a:hover { background: var(--rose-faint); }
  .header-cta { display: inline-flex; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--grad-hero);
  text-align: center;
  padding-block: clamp(56px, 9vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero .waves { position: absolute; top: 26px; left: 50%; transform: translateX(-110%); }
.page-hero p { max-width: 560px; margin: 0.9rem auto 0; }
.breadcrumbs { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.7rem; color: var(--rose); }
.breadcrumbs a { color: var(--rose); }

/* ---------- Home hero ---------- */
.home-hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}
.home-hero .container {
  display: grid;
  gap: 2.6rem;
  padding-block: clamp(48px, 7vw, 90px);
  align-items: center;
}
@media (min-width: 880px) {
  .home-hero .container { grid-template-columns: 1.1fr 1fr; }
}
.hero-copy .waves { margin-bottom: 1.4rem; }
.hero-copy h1 em { font-style: normal; color: var(--rose); }
.hero-copy p { margin: 1.2rem 0 1.8rem; max-width: 46ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.1rem 1.8rem; margin-top: 1.9rem; font-size: 0.92rem; color: var(--muted); }
.hero-meta li { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta svg { width: 18px; height: 18px; color: var(--rose); flex: none; }

.hero-visual { position: relative; max-width: 430px; margin-inline: auto; width: 100%; }
.hero-visual .hero-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 999px 999px var(--radius) var(--radius);
  box-shadow: var(--shadow-card);
}

/* Hero image slider (arch-shaped crossfade) */
.hero-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  touch-action: pan-y; /* vertical page scroll stays native; horizontal swipes drive the slider */
}
.hero-slider .hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slider .hero-img.active { opacity: 1; }
.hero-dots {
  position: absolute;
  bottom: 14px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.hero-dots button.active { background: #fff; transform: scale(1.3); }
.hero-card {
  position: absolute;
  left: -8px;
  bottom: 26px;
  max-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.1rem;
  font-size: 0.88rem;
}
.hero-card .quote-mark { font-family: var(--font-display); font-size: 2rem; line-height: 0.6; color: var(--rose); display: block; margin-bottom: 0.5rem; }
.hero-card figcaption { margin-top: 0.55rem; font-weight: 600; color: var(--rose); font-size: 0.85rem; }
.hero-badge {
  position: absolute;
  top: 18px;
  right: -6px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero-badge .stars { color: var(--gold); letter-spacing: 0.08em; }

/* ---------- Feature icons row ---------- */
.feature { text-align: center; padding: 1.2rem 1rem; }
.feature .icon-ring {
  width: 66px;
  height: 66px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--rose-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.feature .icon-ring svg { width: 30px; height: 30px; }
.feature h3 { margin-bottom: 0.45rem; }
.feature p { font-size: 0.95rem; }

/* Facilities (icon left, text right) */
.facility { display: flex; gap: 0.95rem; align-items: flex-start; }
.facility .icon-ring {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-faint);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.facility .icon-ring svg { width: 22px; height: 22px; }
.facility h4 { margin-bottom: 0.2rem; }
.facility p { font-size: 0.92rem; }

/* ---------- Service cards ---------- */
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; }
.service-card .card-body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.service-card h3 a { color: var(--ink); }
.service-card h3 a::after { content: ''; position: absolute; inset: 0; }
.service-card p { font-size: 0.94rem; flex: 1; }
.service-card .text-link { margin-top: 0.3rem; }

/* Service list (detail pages) */
.service-list { display: grid; gap: 0.7rem; }
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 0.95rem 1.2rem;
}
.service-item .name { font-weight: 600; color: var(--ink); }
.service-item .note { display: block; font-size: 0.85rem; color: var(--muted); font-weight: 400; }
.service-item .price { font-family: var(--font-display); color: var(--rose); white-space: nowrap; }

/* ---------- Price list ---------- */
.price-group h3 { margin-bottom: 1.1rem; }
.price-table { display: grid; gap: 0.15rem; }
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(180, 80, 107, 0.25);
}
.price-row .name { color: var(--ink); font-weight: 500; }
.price-row .dots { flex: 1; }
.price-row .price { font-family: var(--font-display); color: var(--rose); white-space: nowrap; }
.price-note { font-size: 0.9rem; margin-top: 1.2rem; }

/* Open hours card */
.hours-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.7rem 1.6rem;
  text-align: center;
}
.hours-card h3 { margin-bottom: 1rem; }
.hours-card .hours-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--rose-faint);
  font-size: 0.95rem;
}
.hours-card .hours-row strong { letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem; }
.hours-card .hours-row span { color: var(--rose); font-weight: 500; }

/* ---------- Stats ---------- */
.stats-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 720px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 1.6rem 0.8rem; }
.stat + .stat { border-left: 1px solid var(--rose-faint); }
@media (max-width: 719px) { .stat:nth-child(3) { border-left: 0; } .stat:nth-child(n+3) { border-top: 1px solid var(--rose-faint); } }
.stat .num { font-family: var(--font-display); font-size: 2rem; color: var(--ink); }
.stat .label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-top: 0.3rem; }

/* ---------- Location / contact cards ---------- */
.loc-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.15rem 1.3rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.93rem;
}
.loc-card svg { width: 20px; height: 20px; color: var(--rose); flex: none; margin-top: 3px; }
.loc-card h4 { margin-bottom: 0.15rem; }
.loc-card p { font-size: 0.9rem; }
.loc-card a { font-weight: 500; }

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
  text-align: center;
}
.contact-card .icon-ring {
  width: 54px; height: 54px; margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--rose-faint);
  color: var(--rose);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .icon-ring svg { width: 24px; height: 24px; }
.contact-card h4 { margin-bottom: 0.3rem; }
.contact-card p, .contact-card a { font-size: 0.95rem; word-break: break-word; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.6rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  color: var(--rose-soft);
  position: absolute;
  top: 0.6rem;
  left: 1.1rem;
}
.testimonial blockquote { position: relative; font-size: 0.98rem; color: var(--muted); padding-top: 1.4rem; }
.testimonial .stars { color: var(--gold); letter-spacing: 0.1em; margin-top: 0.9rem; }
.testimonial .who { margin-top: 0.5rem; }
.testimonial .who strong { color: var(--rose); font-weight: 600; }
.testimonial .who span { display: block; font-size: 0.82rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
/* On phones: swipeable snap carousel instead of a grid */
@media (max-width: 719px) {
  .gallery-grid {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.4rem;
    margin-inline: -20px;      /* let slides reach the screen edges */
    padding-inline: 20px;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-grid img {
    flex: 0 0 76%;
    scroll-snap-align: center;
  }
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .tall img { height: 100%; aspect-ratio: auto; }

/* ---------- Video showcase ---------- */
.video-frame {
  position: relative;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--ink);
  max-width: 380px;
  margin-inline: auto;
}
.video-frame.rect { border-radius: var(--radius); }
.video-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.video-caption { text-align: center; font-size: 0.9rem; margin-top: 0.8rem; }

/* ---------- Offer / CTA bands ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-band);
  border-radius: var(--radius);
  padding: clamp(2.4rem, 6vw, 4rem) clamp(1.4rem, 5vw, 4rem);
  text-align: center;
}
.cta-band .waves { position: absolute; opacity: 0.35; }
.cta-band .waves.tl { top: 20px; left: 22px; }
.cta-band .waves.br { bottom: 20px; right: 22px; transform: rotate(180deg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #FBE3E3; max-width: 560px; margin: 0.8rem auto 1.6rem; }
.cta-band .eyebrow { color: #FBDCC9; }

/* Offer cards */
.offer-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.4rem;
  text-align: center;
  border-top: 3px solid var(--rose);
}
.offer-card .icon-ring { width: 54px; height: 54px; margin: 0 auto 0.9rem; border-radius: 50%; background: var(--rose-faint); color: var(--rose); display: flex; align-items: center; justify-content: center; }
.offer-card .icon-ring svg { width: 24px; height: 24px; }
.offer-card p { font-size: 0.93rem; margin-top: 0.35rem; }

/* ---------- Brands strip ---------- */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem 2.6rem;
}
.brand-pill {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--muted);
  opacity: 0.85;
  white-space: nowrap;
}
.brand-pill span { font-size: 0.7em; vertical-align: super; }

/* ---------- Steps ---------- */
.step { display: flex; gap: 1.1rem; align-items: flex-start; padding-block: 1rem; border-bottom: 1px solid var(--rose-faint); }
.step:last-child { border-bottom: 0; }
.step .step-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--rose); flex: none; line-height: 1.3; }
.step h4 { margin-bottom: 0.25rem; }
.step p { font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--font-body); font-size: 1.4rem; color: var(--rose); transition: transform 0.2s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.2rem; font-size: 0.97rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--rose-soft);
  border-radius: 6px;
  background: var(--rose-faint);
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.85rem; margin-top: 0.9rem; }

/* Inline band form (on rose background) */
.band-form { text-align: left; }
.band-form .field label { color: #fff; }
.band-form .field input, .band-form .field select {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.92);
}

/* ---------- Founder / quote ---------- */
.founder-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: grid;
}
@media (min-width: 760px) { .founder-card { grid-template-columns: 2fr 3fr; } }
.founder-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.founder-card .card-body { padding: clamp(1.5rem, 4vw, 2.4rem); align-self: center; }
.founder-card .role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin: 0.3rem 0 1rem; }

.big-quote { max-width: 620px; }
.big-quote blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 3.4vw, 1.8rem); line-height: 1.4; color: var(--ink); }
.big-quote .who { margin-top: 1.2rem; font-weight: 600; color: var(--ink); }
.big-quote .who span { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-top: 0.2rem; }

/* ---------- Map ---------- */
.map-embed {
  border: 0;
  width: 100%;
  height: 340px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: block;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--blush); padding-top: clamp(3rem, 7vw, 4.5rem); }
.footer-brand { text-align: center; max-width: 520px; margin-inline: auto; }
.footer-brand .brand { justify-content: center; }
.footer-brand > p { margin-top: 1rem; font-size: 0.97rem; }
.footer-social { display: flex; justify-content: center; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--rose); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-top: clamp(2.4rem, 5vw, 3.4rem);
  padding-top: clamp(2rem, 4vw, 2.8rem);
  border-top: 1px solid rgba(180, 80, 107, 0.16);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.3fr; } }
.footer-col h4 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); font-family: var(--font-body); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: var(--muted); font-size: 0.95rem; }
.footer-col a:hover { color: var(--rose); }
.footer-col p, .footer-col li { color: var(--muted); font-size: 0.95rem; }
.footer-col .contact-line { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-col .contact-line svg { width: 17px; height: 17px; color: var(--rose); flex: none; margin-top: 4px; }

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 2.6rem);
  padding: 1.2rem 0 calc(1.2rem + 64px);
  border-top: 1px solid rgba(180, 80, 107, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
}
@media (min-width: 1000px) { .footer-bottom { padding-bottom: 1.2rem; } }

/* ---------- WhatsApp widget (bottom-left) ---------- */
.wa-widget { position: fixed; left: 18px; bottom: 84px; z-index: 80; }
@media (min-width: 1000px) { .wa-widget { bottom: 22px; } }
.wa-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.6s infinite;
}
.wa-fab svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-chat {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: min(300px, calc(100vw - 36px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(20, 40, 30, 0.25);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}
.wa-widget.open .wa-chat { opacity: 1; visibility: visible; transform: translateY(0); }
.wa-chat-head { background: #075E54; color: #fff; padding: 0.9rem 1rem; display: flex; align-items: center; gap: 0.7rem; }
.wa-chat-head .wa-avatar { width: 38px; height: 38px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; flex: none; }
.wa-chat-head .wa-avatar svg { width: 22px; height: 22px; }
.wa-chat-head strong { display: block; font-size: 0.92rem; line-height: 1.2; }
.wa-chat-head span { font-size: 0.75rem; opacity: 0.85; }
.wa-chat-body { padding: 1rem; background: #ECE5DD; }
.wa-msg {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: #333;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  max-width: 92%;
}
.wa-chat-foot { padding: 0.85rem 1rem; background: #fff; }
.wa-chat-foot .btn { width: 100%; background: #25D366; border-color: #25D366; }
.wa-chat-foot .btn:hover { background: #1EBE5A; border-color: #1EBE5A; }

/* ---------- Mobile sticky action bar ---------- */
.sticky-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: 0 -6px 24px rgba(90, 35, 52, 0.14);
}
@media (min-width: 1000px) { .sticky-bar { display: none; } }
.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sticky-bar a svg { width: 18px; height: 18px; }
.sticky-bar .bar-call { color: var(--rose); }
.sticky-bar .bar-book { background: var(--rose); color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-fab { animation: none; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; } .mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1.2rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
