/* ==========================================================================
   Duo Barbers — 5-Page Website
   Classic-sharp barbershop: heritage barbering, modern edge.
   Matte navy / cream / crimson barber-pole accent.
   Shared stylesheet across index / services / gallery / about / contact.
   ========================================================================== */

:root {
  --navy: #17222E;
  --navy-2: #202E3C;          /* slightly lifted navy — cards on dark */
  --cream: #F3EDE2;
  --cream-2: #EAE1CF;          /* deeper cream — alternating sections */
  --crimson: #A8322F;
  --crimson-dark: #862722;
  --crimson-light: #D97873;    /* crimson text-on-navy — 5.2:1 AA */
  --steel: #8798A8;            /* decorative secondary — icons, thin rules */
  --ink: #17222E;              /* body text on cream/white */
  --ink-muted: #4C5A68;        /* secondary text on cream — 6:1+ AA */
  --white: #FFFFFF;
  --radius: 2px;
  --shadow: 0 10px 28px rgba(23, 34, 46, 0.16);
  --shadow-lg: 0 24px 54px rgba(23, 34, 46, 0.26);
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.14;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
p { margin: 0; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 300;
  background: var(--crimson);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 600;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 2px;
}

/* ===== Motion ===== */
.reveal { opacity: 1; transform: none; }
.hero-anim { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 380ms ease-out, transform 380ms ease-out;
  }
  html.js .reveal.is-visible { opacity: 1; transform: none; }

  html.js .hero-anim {
    opacity: 0;
    transform: translateY(14px);
    animation: heroFadeUp 380ms ease-out forwards;
  }
  @keyframes heroFadeUp { to { opacity: 1; transform: none; } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(168, 50, 47, 0.34);
}
.btn--primary:hover { background: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(168, 50, 47, 0.42); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-dark:hover { background: var(--navy); color: var(--cream); }
.btn--lg { padding: 15px 32px; font-size: 0.98rem; min-height: 52px; }
.btn--block { width: 100%; }

/* ===== Topbar ===== */
.topbar {
  background: var(--navy);
  color: rgba(243,237,226,0.82);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(168,50,47,0.35);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  gap: 12px;
}
.topbar__item a { font-weight: 600; color: var(--cream); }
.topbar__item a:hover { color: var(--crimson); }
.topbar__badge { display: none; letter-spacing: 0.03em; }
@media (min-width: 720px) { .topbar__badge { display: block; } }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 34, 46, 0.97);
  border-bottom: 1px solid rgba(168,50,47,0.28);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.brand__text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.03em;
  white-space: nowrap;
  text-transform: uppercase;
}
.brand__text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-top: 3px;
}
.nav {
  display: none;
  gap: 30px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav a { color: rgba(243,237,226,0.85); position: relative; padding: 8px 0; transition: color 0.2s ease; }
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] { color: var(--crimson); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__cta { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; margin-left: auto; margin-right: 24px; }
  .header__cta { display: inline-flex; }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); }
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav--mobile-open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-width: 100vw;
  background: var(--navy);
  flex-direction: column;
  padding: 10px 24px 24px;
  gap: 2px;
  box-shadow: var(--shadow-lg);
  overflow-x: hidden;
}
.nav--mobile-open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); min-height: 44px; display: flex; align-items: center; }
.nav--mobile-open a::after { display: none; }

/* ===== Hero (home page) ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(23,34,46,0.95) 22%, rgba(23,34,46,0.82) 55%, rgba(23,34,46,0.55) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 130px 24px 84px; max-width: 700px; }

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(168,50,47,0.6);
  background: rgba(168,50,47,0.14);
  padding: 8px 16px 8px 12px;
  margin-bottom: 22px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.feature-badge svg { color: var(--crimson); flex-shrink: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--crimson);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--crimson); }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; display: inline-block; }
.eyebrow--center { justify-content: center; }
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 3.8rem); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--crimson); }
.hero__lede { font-family: var(--font-body); font-size: 1.1rem; color: rgba(243,237,226,0.88); max-width: 540px; margin-bottom: 34px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0; font-size: 0.87rem; color: rgba(243,237,226,0.92); font-weight: 500; padding-top: 22px; border-top: 1px solid rgba(243,237,226,0.22); }
.hero__trust li { position: relative; padding: 0 22px; display: flex; align-items: center; gap: 8px; }
.hero__trust li:first-child { padding-left: 0; }
.hero__trust li:not(:last-child)::after {
  content: "";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 15px; background: rgba(243,237,226,0.25);
}
.hero__trust svg { flex-shrink: 0; color: var(--crimson); }

@media (max-width: 619px) {
  .hero { min-height: auto; }
  .hero__content { padding: 100px 24px 56px; }
  .hero__lede { font-size: 1rem; margin-bottom: 26px; }
  .hero__actions { flex-direction: column; margin-bottom: 28px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 12px; border: none; border-left: 3px solid var(--crimson); padding-left: 14px; padding-top: 0; }
  .hero__trust li { padding: 0; }
  .hero__trust li::after { display: none; }
}

/* ===== Page hero (inner pages: services / gallery / about / contact) ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 150px 0 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--crimson);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); }
.page-hero p { font-family: var(--font-body); color: rgba(243,237,226,0.82); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; line-height: 1.6; }
.breadcrumb { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(243,237,226,0.6); margin-top: 14px; }
.breadcrumb a { color: var(--crimson); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Sections ===== */
.section { padding: 100px 0; scroll-margin-top: 90px; }
@media (max-width: 719px) { .section { padding: 60px 0; } }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--navy); color: var(--white); }
.section__title {
  text-align: center;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  max-width: 680px;
  margin: 0 auto 18px;
  color: var(--ink);
}
.section--dark .section__title { color: var(--white); }
.section__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--crimson);
  margin: 20px auto 0;
}
.section__title--left { text-align: left; margin: 0 0 18px; max-width: none; }
.section__title--left::after { margin-left: 0; margin-right: auto; }
.section__lede {
  text-align: center;
  color: var(--ink-muted);
  max-width: 580px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: normal;
}
.section--dark .section__lede, .section--dark p { color: rgba(243,237,226,0.8); }

/* Thin rule divider */
.rule {
  width: 100%;
  height: 1px;
  background: rgba(23,34,46,0.14);
  border: none;
  margin: 0;
}
.rule--crimson { height: 2px; background: var(--crimson); width: 64px; margin: 0 auto; }
.section--dark .rule { background: rgba(243,237,226,0.16); }

/* ===== Price board (services) ===== */
.price-board {
  max-width: 820px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--cream);
  padding: 46px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-board::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--crimson) 0 18px, var(--cream) 18px 36px);
}
.price-board__group + .price-board__group { margin-top: 8px; }
.price-board__heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 0 0 14px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 2px;
  border-bottom: 1px solid rgba(243,237,226,0.14);
}
.price-row:first-of-type { border-top: 1px solid rgba(243,237,226,0.14); }
.price-row__name { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); }
.price-row__copy { display: block; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: normal; color: rgba(243,237,226,0.68); font-size: 0.86rem; margin-top: 4px; }
.price-row__leader { flex: 1; border-bottom: 2px dotted rgba(135,152,168,0.5); margin-bottom: 6px; min-width: 24px; }
.price-row__price { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--crimson-light); white-space: nowrap; }
.price-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 30px;
  font-style: italic;
}

/* ===== Gallery ===== */
.gallery {
  columns: 1;
  gap: 18px;
}
@media (min-width: 620px) { .gallery { columns: 2; } }
@media (min-width: 980px) { .gallery { columns: 3; } }
.gallery__item {
  margin: 0 0 18px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.gallery__item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.gallery__item:hover img, .gallery__item:focus-within img { transform: scale(1.03); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(23,34,46,0.92), transparent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .gallery__item figcaption { opacity: 1; transform: none; }
}

/* ===== Why choose us ===== */
.why__grid { display: grid; gap: 48px; align-items: center; }
.why__media { position: relative; }
.why__media img { box-shadow: var(--shadow-lg); }
.why__media::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 70px; height: 70px;
  border-top: 3px solid var(--crimson);
  border-left: 3px solid var(--crimson);
  z-index: 1;
}
.why__list { display: flex; flex-direction: column; gap: 18px; margin: 26px 0 32px; }
.why__list li { padding-left: 32px; position: relative; color: var(--ink-muted); line-height: 1.55; }
.why__list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px;
  background: var(--crimson);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.why__list strong { color: var(--ink); }
@media (min-width: 860px) { .why__grid { grid-template-columns: 1fr 1.05fr; } }

/* ===== Badge (12 Best Barbers feature) ===== */
.badge-strip { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 0 auto 50px; flex-wrap: wrap; text-align: center; }
.badge-seal { width: 92px; height: 92px; flex-shrink: 0; color: var(--crimson); }
.badge-strip__text { text-align: left; }
.badge-strip__text strong { display: block; font-family: var(--font-head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); }
.badge-strip__text span { display: block; font-size: 0.86rem; color: var(--ink-muted); margin-top: 2px; }
@media (max-width: 520px) { .badge-strip { flex-direction: column; } .badge-strip__text { text-align: center; } }

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid rgba(23,34,46,0.1);
  border-top: 3px solid var(--crimson);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.review-card__stars { color: var(--crimson); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-card p { color: var(--ink); line-height: 1.6; font-size: 0.98rem; font-style: italic; }
.review-card__author { margin-top: 20px; font-family: var(--font-head); font-weight: 500; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--crimson); }
.review-card__author span { color: var(--ink-muted); font-weight: 400; text-transform: none; letter-spacing: normal; font-family: var(--font-body); }

/* ===== About ===== */
.about__grid { display: grid; gap: 48px; align-items: center; }
.about__media img { box-shadow: var(--shadow-lg); }
.about__content p { color: var(--ink-muted); line-height: 1.7; margin-bottom: 16px; font-family: var(--font-body); text-transform: none; letter-spacing: normal; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 28px; background: rgba(23,34,46,0.1); }
.about__stats div { background: var(--cream-2); padding: 18px 10px; text-align: center; }
.about__stats strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--crimson); }
.about__stats span { display: block; font-size: 0.74rem; color: var(--ink-muted); margin-top: 4px; letter-spacing: 0.02em; }
@media (min-width: 860px) { .about__grid { grid-template-columns: 1.05fr 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { background: var(--white); box-shadow: var(--shadow); padding: 26px; text-align: center; border-bottom: 3px solid var(--crimson); }
.team-card__name { font-family: var(--font-head); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink); }
.team-card__role { display: block; font-size: 0.84rem; color: var(--ink-muted); margin-top: 6px; }

/* ===== Visit / Book CTA ===== */
.visit__grid { display: grid; gap: 48px; }
.visit__address {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.6vw, 3.4rem);
  line-height: 1.05;
  color: var(--white);
  margin: 8px 0 22px;
}
.visit__address span { display: block; }
.visit__address .visit__number { color: var(--crimson); }
.visit__list { display: flex; flex-direction: column; gap: 16px; margin: 0 0 30px; }
.visit__list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; }
.visit__list a:hover { color: var(--crimson); }
.visit__list svg { flex-shrink: 0; color: var(--crimson); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.map-placeholder {
  border: 2px dashed rgba(243,237,226,0.35);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
  color: rgba(243,237,226,0.72);
}
.map-placeholder svg { color: var(--crimson); }
.map-placeholder strong { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); font-size: 0.95rem; }
.map-placeholder span { font-size: 0.85rem; max-width: 320px; }
@media (min-width: 860px) { .visit__grid { grid-template-columns: 1fr 1fr; } }

/* ===== Contact page ===== */
.contact-grid { display: grid; gap: 40px; }
.contact-card { background: var(--white); box-shadow: var(--shadow); padding: 36px 32px; }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 18px; color: var(--ink); }
.contact-list { display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink-muted); font-size: 1rem; line-height: 1.5; }
.contact-list svg { flex-shrink: 0; color: var(--crimson); margin-top: 2px; }
.contact-list a:hover { color: var(--crimson); }
.contact-list strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ===== Footer ===== */
.footer { background: var(--navy); color: rgba(243,237,226,0.72); padding: 48px 0 30px; border-top: 1px solid rgba(168,50,47,0.28); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer__cols { display: flex; flex-direction: column; gap: 28px; width: 100%; }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--crimson); margin-bottom: 12px; }
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { display: flex; flex-direction: column; gap: 14px; align-items: center; font-size: 0.85rem; padding-top: 22px; border-top: 1px solid rgba(243,237,226,0.12); width: 100%; text-align: center; }
.footer__bottom a { font-weight: 600; color: var(--white); }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(243,237,226,0.28); color: var(--white); }
.footer__social a:hover { border-color: var(--crimson); color: var(--crimson); }
@media (min-width: 760px) {
  .footer__cols { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ===== Mobile FAB cluster ===== */
.fab-cluster { position: fixed; bottom: 20px; right: 20px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.fab {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  transition: transform 0.16s ease;
}
.fab:active { transform: scale(0.94); }
.fab--call { background: var(--navy); border: 2px solid var(--crimson); }
.fab--book { background: var(--crimson); }
@media (min-width: 900px) { .fab-cluster { display: none; } }
