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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #161616;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --gray: #888;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-book {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.025) 80px,
      rgba(201,168,76,0.025) 81px
    );
  pointer-events: none;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.92;
  font-weight: 900;
  color: var(--white);
  max-width: 750px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.btn-secondary:hover { opacity: 1; }
.hero-number {
  position: absolute;
  right: 3rem; bottom: 3rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── PAGE HEADER (sub-pages) ── */
.page-header {
  padding: 11rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.025) 80px,
      rgba(201,168,76,0.025) 81px
    );
  pointer-events: none;
}
.page-header .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  font-weight: 900;
  color: var(--white);
  position: relative;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p {
  margin: 1.75rem auto 0;
  max-width: 520px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  position: relative;
}

/* ── STRIP ── */
.strip {
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--dark);
}
.strip-inner {
  display: flex; gap: 3rem;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}
.strip-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.strip-inner span.dot { color: rgba(201,168,76,0.4); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding: 7rem 3rem;
  max-width: 1200px; margin: 0 auto;
  align-items: center;
}
.about-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--gray);
  margin-bottom: 1rem;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat {
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}
.about-visual {
  position: relative;
}
.about-box {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3rem;
  position: relative;
}
.about-box::before {
  content: '✦';
  position: absolute; top: -0.8rem; left: 2rem;
  color: var(--gold); font-size: 1.4rem;
  background: var(--black); padding: 0 0.5rem;
}
.about-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-box p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray);
  font-style: italic;
}
.about-box-sig {
  margin-top: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── TEAM / MEET THE BARBERS ── */
.team {
  background: var(--dark);
  padding: 7rem 3rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.barber-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.barber-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.barber-avatar {
  width: 90px; height: 90px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}
.barber-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.barber-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.barber-bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ── SERVICES ── */
.services {
  background: var(--dark);
  padding: 7rem 3rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  max-width: 1100px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.15);
}
.service-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { background: #1a1a1a; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.service-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1rem;
  margin-top: auto;
}
.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.service-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── BOOKING CTA ── */
.booking-cta {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.booking-cta .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.booking-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.booking-cta h2 em { font-style: italic; color: var(--gold); }
.booking-cta p {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 400px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.btn-large {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 3.5rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-large:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ── REVIEWS ── */
.review-bar {
  background: #0d0d0d;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem 3rem;
  display: flex; justify-content: center; align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.review-bar-stars { font-size: 1.1rem; color: var(--gold); letter-spacing: 0.1em; }
.review-bar-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aaa;
}
.review-bar-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}

.reviews {
  background: var(--dark);
  padding: 6rem 3rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '"';
  position: absolute; top: -5%; left: -2%;
  font-family: 'Playfair Display', serif;
  font-size: 35vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.04);
  pointer-events: none;
  line-height: 1;
}
.reviews-header {
  max-width: 1100px; margin: 0 auto 3rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 1rem;
  position: relative; z-index: 1;
}
.reviews-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.reviews-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.reviews-header h2 em { font-style: italic; color: var(--gold); }
.reviews-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.75rem 1.25rem;
}
.reviews-badge-stars { font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; }
.reviews-badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
}
.reviews-carousel-wrap {
  max-width: 700px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
  position: relative; z-index: 1;
}
.reviews-carousel {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border: 1px solid rgba(201,168,76,0.15);
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.carousel-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.carousel-arrow:hover { background: rgba(201,168,76,0.18); transform: scale(1.05); }
.carousel-arrow:active { transform: scale(0.95); }
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin: 1.5rem auto 0;
  position: relative; z-index: 1;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.25); }
.review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #0d0d0d;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
}
.review-stars { font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; }
.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.8;
  flex: 1;
}
.review-footer {
  display: flex; align-items: center; gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
.review-meta { font-size: 0.72rem; color: #666; margin-top: 0.2rem; }
.review-source {
  margin-left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.35);
}
.reviews-cta {
  max-width: 1100px; margin: 2rem auto 0;
  text-align: center;
  position: relative; z-index: 1;
}
.reviews-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
}

/* ── HOURS + INFO ── */
.info {
  background: var(--dark);
  padding: 6rem 3rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
  max-width: 1000px; margin: 0 auto;
}
.info-block .info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hours-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.hours-row .day { color: var(--cream); }
.hours-row .time { color: var(--gray); }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: var(--gray);
}
.contact-item .icon { font-size: 1rem; color: var(--gold); width: 20px; }
.contact-item a { color: var(--gold); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.map-box {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 2;
}
.map-box strong { color: var(--cream); display: block; font-size: 1rem; margin-bottom: 0.5rem; }

/* ── FAQ ── */
.faq {
  padding: 7rem 3rem;
  background: var(--dark);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.faq-item { border-bottom: 1px solid rgba(201,168,76,0.15); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary .faq-icon {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.6rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--gray);
  max-width: 92%;
}
.faq-answer a { color: var(--gold); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  color: rgba(136,136,136,0.5);
  letter-spacing: 0.08em;
}

/* ── LOYALTY SIGNUP ── */
.loyalty-fab {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  z-index: 90;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.85rem 1.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: background 0.2s, transform 0.2s;
}
.loyalty-fab:hover { background: var(--gold-light); transform: translateY(-2px); }
.loyalty-fab-icon { font-size: 1rem; }

.loyalty-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.loyalty-modal[hidden] { display: none; }
.loyalty-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
}
.loyalty-modal-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.25);
  max-width: 460px;
  width: 100%;
  padding: 2.75rem 2.25rem 2.25rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
}
.loyalty-modal-close {
  position: absolute; top: 0.75rem; right: 0.9rem;
  background: none; border: none;
  color: var(--gray);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.loyalty-modal-close:hover { color: var(--gold); }
.loyalty-modal-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.loyalty-modal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.loyalty-modal-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray);
}
.loyalty-modal-card p strong { color: var(--gold); font-weight: 600; }
.loyalty-modal-note {
  font-size: 0.8rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1rem 0;
}
.loyalty-modal-cta { width: 100%; }
.loyalty-modal-dismiss {
  background: none; border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem;
}
.loyalty-modal-dismiss:hover { color: var(--cream); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-number { display: none; }
  .page-header { padding: 8rem 1.5rem 3.5rem; }
  .about { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .team { padding: 4rem 1.5rem; }
  .services { padding: 4rem 1.5rem; }
  .review-bar { padding: 1.25rem 1.5rem; }
  .reviews { padding: 4rem 1.5rem; }
  .reviews-carousel-wrap { gap: 0.5rem; }
  .carousel-arrow { width: 34px; height: 34px; font-size: 1.3rem; }
  .review-card { padding: 2rem 1.5rem; }
  .loyalty-fab { right: 1rem; bottom: 1rem; padding: 0.7rem 1.1rem; font-size: 0.72rem; }
  .loyalty-modal-card { padding: 2.25rem 1.5rem 1.75rem; }
  .faq { padding: 4rem 1.5rem; }
  .booking-cta { padding: 5rem 1.5rem; }
  .info { padding: 4rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
