/* ═══════════════════════════════════════════════════
   KINGSWAY BARBERSHOP — DARK LUXE STYLESHEET
   ═══════════════════════════════════════════════════ */

/* ── ROOT VARIABLES ─────────────────────────────── */
:root {
  --black:       #090909;
  --dark:        #0e0e0e;
  --dark-card:   #131313;
  --dark-card-2: #181818;
  --border:      #1e1e1e;
  --border-mid:  #252525;

  --gold:        #C9A052;
  --gold-light:  #DDB96A;
  --gold-dark:   #9A7230;
  --gold-subtle: rgba(201, 160, 82, 0.10);
  --gold-faint:  rgba(201, 160, 82, 0.05);

  --white:       #F0EDE6;
  --white-dim:   rgba(240, 237, 230, 0.65);
  --white-faint: rgba(240, 237, 230, 0.35);

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --transition:  0.5s var(--ease-out);
  --transition-fast: 0.25s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── SCROLL PROGRESS ────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9997;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── CONTAINER ──────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white-dim);
  border-color: var(--border-mid);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── SHARED TYPOGRAPHY ──────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}
.section-title.center { text-align: center; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-eyebrow.center { justify-content: center; }

.eyebrow-line-short {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-header { margin-bottom: 72px; }
.section-header .section-eyebrow { margin-bottom: 16px; }

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Book Button */
.nav-book {
  flex-shrink: 0;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition-fast);
}

.nav-book:hover {
  background: var(--gold);
  color: var(--black);
}

/* Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: var(--transition-fast);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 40px 40px;
  background: rgba(9, 9, 9, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
}

.mobile-menu.open {
  display: flex;
  max-height: 600px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition-fast);
}

.mobile-link:hover {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Golden glow radiating from top */
.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center top, rgba(201, 160, 82, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 160, 82, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 160, 82, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px 40px 120px;
  max-width: 1000px;
  width: 100%;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Title */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.title-main {
  font-family: var(--font-serif);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: var(--white);
  display: block;
  padding-bottom: 14px;
}

.title-sub {
  font-family: var(--font-italic);
  font-size: clamp(20px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Rating block */
.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rating-stars {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 4px;
}

.rating-text {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rating-score {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.rating-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column */
.about-left .section-title {
  margin-bottom: 56px;
}

.about-stats {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 30px);
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* Right column */
.about-lead {
  font-family: var(--font-italic);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.about-right .btn-gold-outline {
  margin-top: 20px;
}

/* ═══════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.services-list {
  margin-bottom: 64px;
}

.service-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast);
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition-fast);
}

.service-item:hover {
  background: var(--gold-faint);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-num {
  font-family: var(--font-italic);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold-dark);
  opacity: 0.7;
  letter-spacing: 0.05em;
  text-align: right;
}

.service-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 5px;
  transition: color var(--transition-fast);
}

.service-item:hover .service-name {
  color: var(--gold-light);
}


.service-price {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.02em;
  text-align: right;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.service-item:hover .service-price {
  color: var(--gold-light);
  transform: translateX(-4px);
}

/* CTA below services */
.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.services-note {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white-faint);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   HOURS GRID (inside location detail)
   ═══════════════════════════════════════════════════ */
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  margin-top: 4px;
}

.hours-day {
  font-size: 13px;
  font-weight: 400;
  color: var(--white-dim);
}

.hours-time {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-faint);
}

.hours-closed {
  color: rgba(201, 100, 80, 0.7) !important;
}

/* ═══════════════════════════════════════════════════
   GALLERY + CAROUSEL
   ═══════════════════════════════════════════════════ */
.gallery {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

/* Carousel */
.carousel {
  position: relative;
  width: 55%;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  overflow: hidden;
  background: var(--black);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s var(--ease-out);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s linear;
}

.carousel-slide.active img {
  transform: scale(1.04);
}


/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201, 160, 82, 0.35);
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.55);
  backdrop-filter: blur(8px);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.carousel-btn:hover {
  background: rgba(201, 160, 82, 0.15);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-prev { left: 28px; }
.carousel-next { right: 28px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 237, 230, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}


/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 44px 36px 36px;
  position: relative;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.t-quote-mark {
  font-family: var(--font-serif);
  font-size: 100px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 28px;
  right: 28px;
  pointer-events: none;
  user-select: none;
}

.t-text {
  font-family: var(--font-italic);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--white-dim);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.t-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-stars {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
}

.t-author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
}

/* ═══════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════ */
.location {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-info .section-title {
  margin-bottom: 48px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 44px;
}

.loc-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.loc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.loc-icon svg {
  width: 16px;
  height: 16px;
}

.loc-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 8px;
}

.loc-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.loc-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
}

.loc-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--white-faint);
  margin-top: 2px;
}

.loc-closed { color: rgba(201, 100, 80, 0.7); }

.loc-link:hover { color: var(--gold); }

.loc-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Map */
.location-map {
  height: 520px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.map-wrapper iframe {
  display: block;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
  transition: color var(--transition-fast);
}

.footer-nav a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.footer-contact a,
.footer-contact span {
  font-size: 12px;
  font-weight: 300;
  color: var(--white-faint);
  transition: color var(--transition-fast);
}

.footer-contact a:hover { color: var(--gold); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom span,
.footer-bottom a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.2);
  letter-spacing: 0.05em;
}

.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-stats { gap: 28px; }

  .carousel { width: 80%; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .location-grid { grid-template-columns: 1fr; gap: 56px; }
  .location-map { height: 380px; }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-logo { justify-content: center; }
  .footer-contact { text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 18px 24px; }

  /* Hero */
  .hero-content { padding: 120px 24px 100px; }
  .title-main { font-size: clamp(56px, 16vw, 100px); }
  .title-sub { letter-spacing: 0.2em; }
  .rating-score { font-size: 28px; }
  .rating-stars { font-size: 18px; }

  /* About */
  .about { padding: 80px 0; }
  .about-stats { flex-direction: row; gap: 20px; flex-wrap: wrap; }

  /* Services */
  .services { padding: 80px 0; }
  .service-item {
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 22px 8px;
  }
  .service-price {
    grid-column: 2;
    text-align: left;
    font-size: 22px;
  }

  /* Gallery */
  .gallery { padding-top: 80px; }
  .carousel { width: 100%; }
  .carousel-prev { left: 16px; }
  .carousel-next { right: 16px; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Location */
  .location { padding: 80px 0; }
  .location-map { height: 300px; }
  .loc-actions { flex-direction: column; }
  .loc-actions .btn { text-align: center; justify-content: center; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .about-stats { justify-content: space-between; }
}
