/* ===========================================================
   B&T BARBERSHOP — STATIC LANDING PAGE
   Palette : noir charbon / crème / or
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;1,6..96,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --stone:    #0C0A09;
  --stone-2:  #111110;
  --stone-3:  #1C1917;
  --gold:     #C49A1A;
  --gold-2:   #D4AA2A;
  --cream:    #F5F0E8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--stone);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.font-display {
  font-family: 'Bodoni Moda', serif;
  font-weight: 500;
}

.gold { color: var(--gold); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  background: rgba(12, 10, 9, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(12, 10, 9, 0.85);
  backdrop-filter: blur(10px);
  padding: 14px 32px;
  border-bottom: 1px solid rgba(196, 154, 26, 0.12);
}
.navbar__logo {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  z-index: 2;
}
.navbar__logo span { color: var(--gold); }

.navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

/* ----- Desktop nav links ----- */
.navbar__links {
  display: none;
  gap: 32px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}
.navbar__links a { transition: color 0.25s ease; white-space: nowrap; }
.navbar__links a:hover { color: var(--gold); }
.navbar__links-cta { display: none; }

@media (min-width: 900px) {
  .navbar__links { display: flex; }
}

.navbar__cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.navbar__cta:hover { background: var(--gold); color: var(--stone); }
@media (max-width: 560px) {
  .navbar__cta { display: none; }
}

/* ----- Mobile burger ----- */
.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.navbar__burger span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease;
}
.navbar__burger span:nth-child(2) { width: 70%; }
.navbar__burger.is-active span { width: 100%; background: var(--gold); }
.navbar__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) {
  .navbar__burger { display: none; }
}

/* ----- Mobile dropdown panel ----- */
@media (max-width: 899px) {
  .navbar__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: rgba(12, 10, 9, 0.98);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(196, 154, 26, 0.14);
    padding: 96px 36px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
    z-index: 95;
    overflow-y: auto;
  }
  .navbar__links.mobile-open {
    transform: translateX(0);
  }
  .navbar__links a {
    padding: 16px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
  }
  .navbar__links-cta {
    display: inline-block;
    margin-top: 28px;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold) !important;
    text-align: center;
    padding: 14px 0 !important;
  }
}
.navbar__overlay {
  display: none;
}
@media (max-width: 899px) {
  .navbar__overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(12, 10, 9, 0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 90;
  }
  .navbar__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(196,154,26,0.07), transparent 60%),
    var(--stone);
}
.hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.15fr 1fr; gap: 72px; }
}
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.4rem, 6.4vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  margin-top: 26px;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  max-width: 460px;
}
.hero__row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.hero__photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(196, 154, 26, 0.2);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
  max-width: 480px;
  margin: 0 auto;
}
.hero__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 680 / 510;
  object-fit: cover;
  object-position: center;
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12,10,9,0.35) 100%);
  pointer-events: none;
}
.hero__photo-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  z-index: 1;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--stone);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 34px;
  transition: background 0.3s ease, transform 0.25s ease;
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); }
.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.55);
}
.stars { color: var(--gold); letter-spacing: 2px; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---------- Section divider ---------- */
.divider {
  position: relative;
  height: 1px;
  background: var(--stone-2);
}
.divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(196,154,26,0.22), transparent);
}
.divider__diamond {
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.7;
}

/* ---------- Generic section header ---------- */
.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ---------- Team ---------- */
.team {
  background: var(--stone);
  padding: 110px 0;
}
.team__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .team__grid { grid-template-columns: 1.1fr 1fr; gap: 72px; }
}
.team__photo {
  position: relative;
  aspect-ratio: 268 / 510;
  overflow: hidden;
  border-radius: 6px;
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid rgba(196, 154, 26, 0.14);
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
@media (min-width: 980px) { .team__photo { margin: 0; max-width: 360px; } }
.team__text p.lead {
  margin: 26px 0 36px;
  color: rgba(245, 240, 232, 0.58);
  font-size: 1rem;
  max-width: 440px;
}
.team__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 380px;
  margin-bottom: 40px;
}
.team__stats .num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.team__stats .label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 6px;
  display: block;
}
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
  padding-bottom: 6px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.link-underline:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Salon ---------- */
.salon {
  background: var(--stone-2);
  padding: 110px 0;
}
.salon__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px) {
  .salon__grid { grid-template-columns: 1fr 1.15fr; gap: 72px; }
}
.salon__photo {
  position: relative;
  aspect-ratio: 680 / 510;
  overflow: hidden;
  border-radius: 6px;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(196, 154, 26, 0.14);
}
.salon__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 980px) { .salon__photo { margin: 0 0 0 auto; } }
.salon__text p.lead {
  margin: 26px 0 32px;
  color: rgba(245, 240, 232, 0.58);
  font-size: 1rem;
  max-width: 440px;
}
.salon__list { list-style: none; margin-bottom: 40px; }
.salon__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.58);
  padding: 6px 0;
}
.salon__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services { background: var(--stone); padding: 110px 0; }
.services__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.services__head p.lead { margin-top: 18px; color: rgba(245, 240, 232, 0.5); }
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}
.tab {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid rgba(245, 240, 232, 0.12);
  color: rgba(245, 240, 232, 0.55);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Jost', sans-serif;
}
.tab:hover { border-color: rgba(196, 154, 26, 0.4); color: var(--cream); }
.tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--stone);
}
.service-panel { display: none; max-width: 760px; margin: 0 auto; }
.service-panel.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }
.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.service-row:last-child { border-bottom: none; }
.service-row__name { font-family: 'Bodoni Moda', serif; font-size: 1.15rem; color: var(--cream); }
.service-row__detail { font-size: 0.82rem; color: rgba(245, 240, 232, 0.4); margin-top: 4px; }
.service-row__meta { display: flex; align-items: baseline; gap: 22px; white-space: nowrap; }
.service-row__duration { font-size: 0.78rem; color: rgba(245, 240, 232, 0.35); letter-spacing: 0.05em; }
.service-row__price { font-family: 'Bodoni Moda', serif; font-size: 1.2rem; color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--stone-2);
  padding: 120px 0;
  text-align: center;
}
.testimonials__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 28px; }
.testimonial-quote {
  display: none;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-quote.active { display: block; animation: fadeIn 0.6s ease; }
.testimonial-quote p {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.5;
  color: var(--cream);
}
.testimonial-quote .author {
  margin-top: 28px;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-quote .tag {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.35);
  text-transform: none;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ---------- Booking / Réservation ---------- */
.booking { background: var(--stone); padding: 110px 0; }
.booking__head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.booking__head p.lead { margin-top: 18px; color: rgba(245, 240, 232, 0.5); }
.booking__frame-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(196, 154, 26, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: var(--stone-3);
  min-height: 640px;
}
.booking__frame-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}
.booking__fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  padding: 40px;
  background: var(--stone-3);
}
.booking__fallback.show { display: flex; }

/* When the iframe is unusable (mobile, or load failure on desktop) the
   wrapper collapses to a clean standalone card around the fallback CTA. */
.booking__frame-wrap.is-mobile-fallback {
  min-height: 0;
}
.booking__frame-wrap.is-mobile-fallback iframe { display: none; }
.booking__frame-wrap.is-mobile-fallback .booking__fallback {
  position: static;
  min-height: 320px;
}
.booking__fallback p { color: rgba(245, 240, 232, 0.55); max-width: 380px; font-size: 0.92rem; }
.booking__note {
  text-align: center;
  margin-top: 22px;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: rgba(245, 240, 232, 0.3);
}

/* ---------- Location ---------- */
.location { background: var(--stone-2); padding: 110px 0; }
.location__grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 980px) {
  .location__grid { grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
}
.location__item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}
.location__item h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.location__item p { color: rgba(245, 240, 232, 0.6); font-size: 0.95rem; }
.location__map {
  border-radius: 6px;
  overflow: hidden;
  filter: grayscale(0.6) contrast(1.1) brightness(0.85);
  border: 1px solid rgba(196, 154, 26, 0.12);
}
.location__map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- CTA Final ---------- */
.cta-final {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(196,154,26,0.08), transparent 65%),
    var(--stone-2);
  border-top: 1px solid rgba(196, 154, 26, 0.1);
  border-bottom: 1px solid rgba(196, 154, 26, 0.1);
}
.cta-final__content { position: relative; z-index: 1; max-width: 720px; padding: 80px 24px; }
.cta-final__title {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.05;
}
.cta-final__title em { font-style: italic; color: var(--gold); }
.cta-final__row {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta-final address {
  margin-top: 30px;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--stone);
  padding: 56px 0 32px;
  text-align: center;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
}
.footer__logo { font-family: 'Bodoni Moda', serif; font-size: 1.2rem; margin-bottom: 14px; }
.footer__logo span { color: var(--gold); }
.footer p { font-size: 0.76rem; color: rgba(245, 240, 232, 0.32); letter-spacing: 0.04em; }
.footer__links { margin-top: 18px; display: flex; justify-content: center; gap: 26px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 240, 232, 0.4); }
.footer__links a:hover { color: var(--gold); }

/* ---------- Misc ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--stone);
  padding: 12px 20px;
  z-index: 999;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===========================================================
   RESPONSIVE POLISH — tablette & mobile
   =========================================================== */

/* ----- Tablette (≤ 900px) ----- */
@media (max-width: 900px) {
  .navbar { padding: 18px 24px; }
  .navbar.scrolled { padding: 14px 24px; }
  .container { padding: 0 20px; }

  .team, .salon, .services, .testimonials, .booking, .location {
    padding: 84px 0;
  }
  .hero { padding: 132px 0 64px; }
  .cta-final__content { padding: 70px 24px; }
}

/* ----- Mobile (≤ 640px) ----- */
@media (max-width: 640px) {
  body { font-size: 0.95rem; }

  .container { padding: 0 18px; }

  .team, .salon, .services, .testimonials, .booking, .location {
    padding: 64px 0;
  }
  .hero { padding: 118px 0 56px; min-height: auto; }
  .hero__grid { gap: 40px; }
  .hero__title { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero__sub { font-size: 0.92rem; }
  .hero__row { gap: 18px 24px; margin-top: 32px; }
  .hero__rating { font-size: 0.78rem; }
  .hero__photo { max-width: 100%; }
  .hero__scroll { display: none; }

  .section-title { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .section-eyebrow { font-size: 0.62rem; letter-spacing: 0.26em; }

  /* Team & Salon: photo above text, full-width but capped height */
  .team__grid, .salon__grid { gap: 36px; }
  .team__photo, .salon__photo { max-width: 320px; }
  .team__text p.lead, .salon__text p.lead { font-size: 0.92rem; max-width: none; }
  .team__stats { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px 18px; max-width: none; }

  /* Services: scrollable tab bar instead of wrapping */
  .tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -18px 36px;
    padding: 0 18px 6px;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab { flex: 0 0 auto; padding: 11px 18px; font-size: 0.66rem; }

  .service-row { flex-direction: column; align-items: flex-start; gap: 6px; padding: 18px 0; }
  .service-row__meta { gap: 16px; }
  .service-row__name { font-size: 1.05rem; }

  /* Testimonials */
  .testimonials__stars { font-size: 0.95rem; }
  .testimonial-quote p { font-size: clamp(1.1rem, 5.4vw, 1.5rem); }

  /* Booking */
  .booking__head p.lead { font-size: 0.92rem; }
  .booking__frame-wrap { border-radius: 6px; }
  .booking__frame-wrap iframe { height: 560px; }
  .booking__fallback { padding: 32px 24px; gap: 18px; }
  .booking__fallback p { font-size: 0.88rem; }

  /* Location */
  .location__grid { gap: 36px; }
  .location__map iframe { height: 280px; }
  .location__item p { font-size: 0.9rem; }

  /* CTA final */
  .cta-final { min-height: 50vh; }
  .cta-final__title { font-size: clamp(2rem, 11vw, 3rem); }
  .cta-final__row { margin-top: 32px; gap: 18px; }
  .cta-final address { font-size: 0.62rem; letter-spacing: 0.14em; }

  /* Footer */
  .footer { padding: 44px 0 26px; }
  .footer__links { flex-wrap: wrap; gap: 16px 22px; }

  .btn-gold { padding: 15px 28px; font-size: 0.74rem; }
  .link-underline { font-size: 0.7rem; }
}

/* ----- Very small phones (≤ 380px) ----- */
@media (max-width: 380px) {
  .hero__row { flex-direction: column; align-items: flex-start; }
  .team__stats { grid-template-columns: 1fr 1fr; }
  .navbar__logo { font-size: 1.05rem; }
}

/* ----- Touch-friendly tap targets everywhere ----- */
@media (hover: none) and (pointer: coarse) {
  .tab, .dot, .btn-gold, .navbar__cta, .link-underline, .navbar__links a {
    min-height: 38px;
  }
}
