@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/karla-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/bodoni-moda-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/bodoni-moda-italic.woff2') format('woff2');
}

/* This site intentionally always shows the light pink + off-white palette —
   it does not switch to a dark theme based on device/browser settings. */
:root {
  --ink: #2c1e22;
  --ink-soft: #6b4f56;
  --paper: #faf8f6;
  --surface: #ffffff;
  --surface-tint: #f1eeea;
  --blush: #e6aab8;
  --blush-deep: #b8687c;
  --gold: #c2447a;
  --gold-soft: #e28fb0;
  --line: rgba(44, 30, 34, 0.13);
  --shadow: 0 20px 50px -25px rgba(44, 20, 26, 0.35);
}

/* fixed, theme-independent tokens: the closing band and every photo-placeholder
   panel are designed to read consistently whether the visitor is in light or dark mode */
:root {
  --band-ink: #1f1417;
  --band-surface: rgba(255, 255, 255, 0.06);
  --band-surface-strong: rgba(255, 255, 255, 0.1);
  --band-line: rgba(255, 255, 255, 0.15);
  --band-paper: #fdf4f0;
  --band-paper-soft: #f0dcd6;
  --band-gold: #f0a8c8;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Karla', ui-sans-serif, system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; }
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}
.eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
html { scroll-padding-top: 96px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* staggered children: a group fades in as a whole (.reveal above), then its
   items cascade in one after another rather than popping in together */
.rev-card, .stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease, box-shadow .35s ease;
}
.rev-grid.is-in .rev-card, .about.is-in .stat {
  opacity: 1;
  transform: none;
}
.rev-grid .rev-card:nth-child(1) { transition-delay: .05s; }
.rev-grid .rev-card:nth-child(2) { transition-delay: .16s; }
.rev-grid .rev-card:nth-child(3) { transition-delay: .27s; }
.stat-row .stat:nth-child(1) { transition-delay: .05s; }
.stat-row .stat:nth-child(2) { transition-delay: .14s; }
.stat-row .stat:nth-child(3) { transition-delay: .23s; }
.stat-row .stat:nth-child(4) { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .rev-card, .stat { opacity: 1; transform: none; transition: none; }
}

/* service cards: fade/rise in whenever their panel becomes active — on first
   load for the default tab, and again every time a different tab is picked */
@keyframes svcCardIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.svc-panel .svc-card { opacity: 0; animation: svcCardIn .5s ease forwards; }
.svc-panel .svc-card:nth-child(1) { animation-delay: .04s; }
.svc-panel .svc-card:nth-child(2) { animation-delay: .1s; }
.svc-panel .svc-card:nth-child(3) { animation-delay: .16s; }
.svc-panel .svc-card:nth-child(4) { animation-delay: .22s; }
.svc-panel .svc-card:nth-child(5) { animation-delay: .28s; }
.svc-panel .svc-card:nth-child(6) { animation-delay: .34s; }
.svc-panel .svc-card:nth-child(7) { animation-delay: .4s; }
.svc-panel .svc-card:nth-child(8) { animation-delay: .46s; }
.svc-panel .svc-card:nth-child(9) { animation-delay: .52s; }
.svc-panel .svc-card:nth-child(10) { animation-delay: .58s; }
.svc-panel .svc-card:nth-child(11) { animation-delay: .64s; }
.svc-panel .svc-card:nth-child(12) { animation-delay: .7s; }
@media (prefers-reduced-motion: reduce) {
  .svc-panel .svc-card { opacity: 1; animation: none; }
}

/* hero + banner: slow cinematic drift on the photo layer, decoupled from the
   text sitting on top of it so copy never moves */
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}
.hero-photo .photo-bg, .cta-photo .photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: kenburns 18s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .photo-bg { animation: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes starPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.18); }
  65% { transform: scale(0.94); }
  100% { transform: scale(1); }
}

/* ---------- photo placeholder system ----------
   Real photography (interior, stylists, service shots) will slot into these
   panels later. Until then each panel carries the salon's own palette plus a
   faint monogram, so the layout reads as designed rather than "missing image". */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.5) 0 2px, transparent 2px 26px);
}
.ph::after {
  content: attr(data-mono);
  position: absolute;
  right: -0.12em;
  bottom: -0.28em;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: min(38cqw, 220px);
  color: rgba(255,255,255,0.16);
  line-height: 1;
  pointer-events: none;
}
.ph { container-type: inline-size; }
/* real photography: fills the same slots as .ph, cropped with object-fit */
.photo-bg img, .real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo, .visit-photo { overflow: hidden; }
.svc-card-photo { overflow: hidden; }
.svc-card-photo .real-photo { position: absolute; inset: 0; z-index: 0; }

.ph-1 { background: radial-gradient(120% 100% at 20% 10%, #f3cdd6, #c98198 55%, #7c3f52 100%); }
.ph-2 { background: radial-gradient(120% 100% at 80% 0%, #f6b9cf, #c2447a 60%, #5c1a38 100%); }
.ph-3 { background: radial-gradient(120% 100% at 30% 90%, #4a323a, #2c1e22 65%, #170f12 100%); }
.ph-4 { background: radial-gradient(120% 100% at 70% 20%, #f0dfe3, #d79cae 55%, #79475a 100%); }
.ph-5 { background: radial-gradient(120% 100% at 50% 100%, #f0a8c2, #b8507e 55%, #5c1a38 100%); }
.ph-6 { background: radial-gradient(120% 100% at 25% 25%, #efc9d3, #b8687c 60%, #582c3a 100%); }

/* ---------- utility bar ---------- */
.utility {
  background: var(--band-ink);
  color: var(--band-paper-soft);
  font-size: 0.8rem;
}
.utility .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.utility-item { display: flex; align-items: center; gap: 7px; }
.utility-item svg { width: 13px; height: 13px; color: var(--band-gold); flex: none; }
.utility a:hover { color: var(--band-gold); }

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s ease, border-color .35s ease;
}
header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 12px 30px -22px rgba(20, 10, 12, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
  transition: padding .35s ease;
}
header.is-scrolled .nav { padding: 11px 0; }
.navlinks { display: flex; align-items: center; gap: 30px; }
.navlinks a { position: relative; font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); padding-bottom: 3px; }
.navlinks a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .3s ease;
}
.navlinks a:hover { color: var(--ink); }
.navlinks a:hover::after { right: 0; }
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 4vw, 1.28rem);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.wordmark em { color: var(--gold); font-style: italic; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn { transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #3a1626;
  box-shadow: 0 10px 24px -12px rgba(194, 68, 122, 0.55);
}
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }
.btn-light { background: var(--band-paper); color: var(--band-ink); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 0; }
.hero-photo {
  position: relative;
  overflow: hidden;
  height: clamp(440px, 78vh, 760px);
  display: flex;
  align-items: flex-end;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,8,10,0) 22%, rgba(15,8,10,0.42) 62%, rgba(12,6,8,0.86) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(36px, 6vw, 64px); color: var(--band-paper); }
.hero-inner > * { opacity: 0; animation: fadeUp .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero-inner > .eyebrow { animation-delay: .1s; }
.hero-inner > h1 { animation-delay: .22s; }
.hero-inner > .hero-services { animation-delay: .32s; }
.hero-inner > .hero-tagline { animation-delay: .44s; }
.hero-inner > .rating-pill { animation-delay: .58s; }
.hero-inner > .hero-ctas { animation-delay: .74s; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * { opacity: 1; animation: none; }
}
.hero .eyebrow { display: block; margin-bottom: 14px; color: var(--band-gold); text-shadow: 0 2px 14px rgba(0,0,0,0.65), 0 1px 2px rgba(0,0,0,0.8); }
.hero h1 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6.6vw, 4.4rem);
  letter-spacing: -0.01em;
  max-width: 820px;
  color: #fff;
  text-shadow: 0 6px 30px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.7);
}
.hero h1 em { font-style: italic; color: var(--band-gold); font-weight: 500; }
.hero-services {
  display: inline-block;
  margin: 20px 0 0;
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--band-ink);
  background: var(--band-gold);
  padding: 7px 20px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(240, 168, 200, 0.65);
}
.hero-tagline {
  margin: 16px 0 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  letter-spacing: 0.01em;
  color: var(--band-gold);
  text-shadow: 0 2px 14px rgba(0,0,0,0.65), 0 1px 2px rgba(0,0,0,0.8);
}
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 0;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: rgba(20,10,12,0.35);
  backdrop-filter: blur(6px);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.rating-pill .stars { display: inline-block; color: var(--band-gold); letter-spacing: 1px; animation: starPop .7s ease 1.5s 1; }
@media (prefers-reduced-motion: reduce) { .rating-pill .stars { animation: none; } }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- section heads ---------- */
section { padding: clamp(56px, 9vw, 108px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 6vw, 56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-top: 10px; }

/* ---------- about + stats ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.about-photo { aspect-ratio: 4 / 5; border-radius: 28px; box-shadow: var(--shadow); }
.about-eth { font-family: 'Fraunces', serif; font-style: italic; font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.4; }
.about-copy { margin-top: 18px; color: var(--ink-soft); font-size: 1rem; max-width: 46ch; }
.stat-row { display: grid; grid-template-columns: repeat(2, auto); gap: 40px; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 32px; }
.stat b { display: block; font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--gold); font-weight: 600; font-variant-numeric: tabular-nums; }
.stat span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- services (photo tiles) ---------- */
.services { background: var(--surface-tint); }

/* category tabs */
.svc-tabs {
  display: flex;
  gap: clamp(20px, 4vw, 36px);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(28px, 5vw, 40px);
}
.svc-tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 0 0 14px;
  position: relative;
  transition: color .25s ease;
}
.svc-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-tab:hover { color: var(--ink); }
.svc-tab.is-active { color: var(--gold); }
.svc-tab.is-active::after { transform: scaleX(1); }
.svc-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* panels */
.svc-panel { display: none; }
.svc-panel.is-active { display: block; }

.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { display: flex; flex-direction: column; gap: 12px; }
.svc-card-photo {
  position: relative;
  aspect-ratio: 3 / 3.4;
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.svc-card:hover .svc-card-photo { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card-photo::after { content: attr(data-mono); font-size: min(40cqw, 110px); }
.svc-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -8px rgba(0,0,0,0.4);
  transition: background .3s ease, color .3s ease;
}
.svc-card:hover .svc-badge { background: var(--gold); color: #fff; }
.svc-card-label {
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color .3s ease;
}
.svc-card:hover .svc-card-label { color: var(--gold); }
.menu-note { margin-top: 34px; font-size: 0.85rem; color: var(--ink-soft); text-align: center; }

/* ---------- cta banner ---------- */
.cta-banner { position: relative; padding: 0; }
.cta-photo { position: relative; overflow: hidden; min-height: clamp(340px, 46vw, 520px); display: flex; align-items: center; }
.cta-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,8,10,0.82) 0%, rgba(15,8,10,0.35) 55%, rgba(15,8,10,0.1) 100%); z-index: 1; }
.cta-inner { position: relative; z-index: 2; max-width: 520px; padding: 0 clamp(20px, 6vw, 72px); color: #fff; }
.cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: #fff; }
.cta-inner p { margin-top: 16px; color: rgba(255,255,255,0.82); font-size: 1.02rem; }
.cta-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- reviews ---------- */
.rev-stat { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 44px; }
.rev-stat .num { font-family: 'Fraunces', serif; font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 600; color: var(--gold); font-variant-numeric: tabular-nums; }
.rev-stat .lbl { color: var(--ink-soft); font-size: 0.95rem; max-width: 200px; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 26px; box-shadow: var(--shadow); }
.rev-grid.is-in .rev-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -22px rgba(44, 20, 26, 0.4); }
.rev-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.rev-card p { margin-top: 14px; font-size: 0.98rem; }
.rev-card .who { margin-top: 18px; font-weight: 700; font-size: 0.87rem; color: var(--ink-soft); }

/* ---------- visit ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; }
.visit-photo { border-radius: 24px; min-height: 380px; box-shadow: var(--shadow); }
.visit-info { display: flex; flex-direction: column; justify-content: center; }
.visit-block + .visit-block { margin-top: 24px; }
.visit-label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.visit-value { font-size: 1.02rem; color: var(--ink-soft); }
.visit-value a:hover { color: var(--gold); }
.visit-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- footer ---------- */
footer.site-footer { background: var(--band-ink); color: var(--band-paper-soft); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr; gap: clamp(28px, 5vw, 48px); padding: clamp(48px, 8vw, 80px) 0 40px; }
.footer-brand .wordmark { color: var(--band-paper); }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 34ch; color: var(--band-paper-soft); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--band-line);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--band-gold); color: var(--band-gold); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--band-gold); font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 0.92rem; }
.footer-col a:hover { color: var(--band-gold); }
.footer-bottom {
  border-top: 1px solid var(--band-line);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(253, 244, 240, 0.55);
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; margin: 0 auto; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .navlinks { display: none; }
}
@media (max-width: 640px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .utility .wrap { justify-content: center; text-align: center; }
}
@media (max-width: 420px) {
  .nav { padding: 12px 0; gap: 10px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding: 9px 14px; }
}

/* ---------- floating action buttons ---------- */
.floating-actions {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(20, 10, 12, 0.5);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease;
}
.fab:hover { transform: translateY(-3px) scale(1.06); }
.fab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.fab svg { width: 26px; height: 26px; }
.fab-whatsapp { background: #25d366; color: #fff; }
.fab-call { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #3a1626; }
@media (max-width: 640px) {
  .fab { width: 50px; height: 50px; }
  .fab svg { width: 23px; height: 23px; }
}
