/* ==========================================================================
   City Center Barbershop & Hair Salon
   Dark editorial theme — charcoal + gold, clean sans-serif, fully responsive
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #131313;
  --bg-2: #1a1a1a;
  --bg-3: #202020;
  --card: #191919;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(212, 175, 55, 0.35);

  --gold: #d4af37;
  --gold-2: #e8c86a;
  --gold-dim: #a8872a;

  --text: #f4f1ea;
  --text-muted: #a8a49a;
  --text-faint: #6f6c64;

  --font-sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;

  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: #141210;
  font-weight: 700;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  will-change: transform;
}

.btn svg {
  flex: 0 0 auto;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-dim));
  color: #16130a;
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 30px;
  font-size: 1.02rem;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(19, 19, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header-h);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  color: var(--gold);
  background: linear-gradient(145deg, #232323, #171717);
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
}

.brand-sub {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 22px 6% 30px;
  animation: menuIn 0.25s ease;
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--line);
}

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

/* ---------- Section scaffolding ---------- */
.section {
  padding: 110px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  margin-bottom: 18px;
  max-width: 640px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head .eyebrow {
  margin-bottom: 14px;
}

.section-head .section-title {
  margin-inline: auto;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Reveal-on-scroll animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Stars ---------- */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 1rem;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.stars.is-js::before,
.review-stars.is-js::before {
  content: none;
}

/* Fractional star rows rendered by script.js */
.star-row {
  display: inline-flex;
  gap: 2px;
}

.star {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.star-bg {
  color: #3d3a33;
}

.star-fg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
}

.stars .star-bg {
  font-size: inherit;
}

.review-stars {
  display: inline-block;
  font-size: 0.8rem;
}

.review-stars .star-bg {
  font-size: inherit;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% -10%, rgba(212, 175, 55, 0.14), transparent 60%),
    radial-gradient(700px 420px at 12% 110%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, #161616 0%, var(--bg) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shine {
  position: absolute;
  top: -30%;
  right: -12%;
  width: 56vw;
  height: 56vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, transparent 62%);
  animation: drift 9s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-3vw, 2vh) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0 90px;
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  letter-spacing: -0.03em;
  max-width: 860px;
  margin: 0 auto 26px;
}

.hero-title .gold {
  position: relative;
  display: inline-block;
}

.hero-title .gold::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 9px;
  background: rgba(212, 175, 55, 0.28);
  z-index: -1;
  border-radius: 4px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-rating .stars {
  font-size: 1.15rem;
}

.rating-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.rating-text strong {
  color: var(--text);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 38px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--text-faint);
}

.marquee-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 0.7rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .hero-shine {
    animation: none;
  }
}

/* ---------- About ---------- */
.about {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.03rem;
  max-width: 56ch;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 1.1rem;
  color: var(--gold-dim);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 4.6;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.10), transparent 45%),
    linear-gradient(180deg, #232323, #161616);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.frame::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  pointer-events: none;
}

.frame-label {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  z-index: 2;
}

/* Stylized barber chair illustration */
.barber-chair {
  position: relative;
  width: 200px;
  height: 250px;
  z-index: 1;
}

.chair-back {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 128px;
  height: 118px;
  background: linear-gradient(180deg, #2c2c2c, #1d1d1d);
  border: 1px solid var(--line-strong);
  border-radius: 40px 40px 12px 12px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.07), 0 14px 26px rgba(0, 0, 0, 0.45);
}

.head-rest {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 34px;
  background: #222;
  border: 1px solid var(--line-strong);
  border-radius: 18px 18px 8px 8px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.06);
}

.chair-seat {
  position: absolute;
  top: 112px;
  left: 50%;
  transform: translateX(-50%);
  width: 176px;
  height: 34px;
  background: linear-gradient(180deg, #3a3a3a, #262626);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.09), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.chair-stem {
  position: absolute;
  top: 144px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 56px;
  background: linear-gradient(90deg, #2f2f2f, #1c1c1c);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.chair-base {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 22px;
  background: linear-gradient(180deg, #2c2c2c, #1a1a1a);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.5);
}

/* ---------- Services / pricing ---------- */
.services {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}

.pricing-card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-3), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.card-icon {
  color: var(--gold);
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 6px 16px;
  border-radius: 10px;
}

.pricing-card h3 {
  font-size: 1.3rem;
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

.card-link {
  margin-top: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.card-link span {
  transition: transform 0.2s ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

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

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
}

.rating-summary .stars {
  font-size: 1.2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.review-card {
  background: linear-gradient(180deg, var(--bg-3), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #16130a;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-dim));
  flex: 0 0 auto;
}

.review-head > div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-name {
  font-size: 1.02rem;
  margin-bottom: 3px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.review-stars::before {
  content: "\2605\2605\2605\2605\2605";
}

.review-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.review-quote {
  color: var(--text-muted);
  font-size: 0.96rem;
  flex-grow: 1;
}

.review-meta {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

/* ---------- Visit ---------- */
.visit {
  background: var(--bg);
}

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

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0 38px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  font-size: 1.25rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.contact-value {
  font-weight: 600;
  font-size: 1.02rem;
}

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

.visit-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stylized map placeholder */
.map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background:
    linear-gradient(rgba(19, 19, 19, 0.55), rgba(19, 19, 19, 0.55)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 56px),
    linear-gradient(160deg, #3a3527, #191919 60%);
  aspect-ratio: 1 / 0.9;
}

.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 320px at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.map-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.map-streets {
  position: absolute;
  inset: 0;
}

.street {
  position: absolute;
  background: rgba(240, 236, 220, 0.1);
  border-radius: 4px;
  height: 7px;
}

.street-1 { top: 22%; left: 0; width: 100%; transform: rotate(-6deg); }
.street-2 { top: 58%; left: 0; width: 100%; transform: rotate(8deg); }
.street-3 { top: 8%; left: 18%; width: 7px; height: 84%; transform: rotate(74deg); }
.street-4 { top: 6%; left: 66%; width: 7px; height: 88%; transform: rotate(-72deg); }

.map-pin {
  position: relative;
  z-index: 2;
  color: var(--gold);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
  animation: pinBounce 2.4s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.map-tag {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: max-content;
  max-width: 86%;
  text-align: center;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.map-tag strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.map-tag span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e0e0e;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding: 70px 0 50px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 34ch;
  margin-bottom: 16px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-faint);
}

.footer-rating .stars {
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hours li span:last-child {
  color: var(--text);
  font-weight: 600;
}

.hours li.closed span:last-child {
  color: var(--text-faint);
  font-weight: 500;
}

.footer-contact li {
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-faint);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    order: -1;
  }

  .frame {
    max-width: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .main-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 84px 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 68px;
  }

  .hero-inner {
    padding: 24px 0 70px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 40px;
  }

  .pricing-card {
    padding: 24px 22px;
  }

  .visit-actions .btn {
    width: 100%;
  }
}
