/* ==========================================================================
   Aces Barbershop — Refined Light Luxury (Apple-inspired)
   Colors: White · Gold · Black · Army Green
   ========================================================================== */

:root {
  --white: #ffffff;
  --apple-gray: #f5f5f7;
  --off-white: #f7f5f0;
  --cream: #f2ead3;
  --gold: #a8893f;
  --gold-light: #c9a962;
  --gold-dark: #8a6f2e;
  --black: #1d1d1f;
  --ink: #1d1d1f;
  --army: #2d5630;
  --army-light: #3c6b3f;
  --army-mid: #4a7d4d;
  --army-dark: #1e3c21;
  --promo-height: 2.125rem;

  --bg-primary: var(--white);
  --bg-secondary: var(--apple-gray);
  --bg-elevated: var(--white);
  --text-primary: var(--ink);
  --text-secondary: rgba(29, 29, 31, 0.78);
  --text-muted: rgba(29, 29, 31, 0.55);
  --accent: var(--gold);
  --accent-hover: var(--gold-dark);
  --border: rgba(29, 29, 31, 0.08);
  --border-strong: rgba(168, 137, 63, 0.35);

  --glass-bg: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(29, 29, 31, 0.06);
  --glass-blur: 20px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-script: "Italianno", "Segoe Script", cursive;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --space-3xl: 10rem;

  --container: min(100% - 2.5rem, 68rem);
  --container-narrow: min(100% - 2.5rem, 40rem);
  --header-height: 4rem;
  --radius: 0.875rem;
  --radius-lg: 1.5rem;

  /* Apple-like easing */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.45s;
  --duration-fast: 0.28s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@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;
  }

  .hero-animate,
  .hero-logo-animate {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.011em;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

a:hover,
a:focus-visible {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 9999;
  padding: var(--space-xs) var(--space-sm);
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--duration-fast) var(--ease);
}

.skip-link:focus {
  top: var(--space-sm);
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb {
  padding-top: calc(var(--promo-height) + var(--header-height) + 0.75rem);
  padding-bottom: 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: var(--text-muted);
  pointer-events: none;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--text-primary);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--container-narrow);
  margin-inline: auto;
}

/* Typography */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.55;
  max-width: 34rem;
  margin-inline: auto;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.text-gold {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.625rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease),
    color var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease);
  white-space: nowrap;
}

.btn-lg {
  padding: 1.05rem 1.9rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.8125rem;
  margin-top: auto;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-dark);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(168, 137, 63, 0.28);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-glass {
  background: transparent;
  border: 1px solid rgba(29, 29, 31, 0.16);
  color: var(--text-primary);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(29, 29, 31, 0.04);
  border-color: rgba(29, 29, 31, 0.28);
  color: var(--text-primary);
  transform: scale(1.02);
}

/* Soft panels */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.03);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.section {
  padding-block: clamp(4.5rem, 10vw, var(--space-2xl));
  position: relative;
}

.section--soft {
  background: var(--bg-secondary);
}

.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--promo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--army);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.promo-banner p {
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: var(--promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition:
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--text-primary);
}

.logo:hover,
.logo:focus-visible {
  color: var(--text-primary);
}

.logo-ace {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Navigation — Mobile First */
.nav-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1002;
  overflow: visible;
  transition: border-color var(--duration-fast) var(--ease), background var(--duration-fast) var(--ease);
}

.nav-toggle:hover {
  background: rgba(29, 29, 31, 0.03);
  border-color: rgba(29, 29, 31, 0.16);
}

.nav-toggle-bar {
  position: absolute;
  left: 50%;
  width: 1.125rem;
  height: 1.5px;
  margin-left: -0.5625rem;
  background: var(--ink);
  border-radius: 1px;
  transform-origin: center;
  transition:
    transform 0.28s var(--ease-out),
    top 0.28s var(--ease-out),
    opacity 0.2s var(--ease);
}

.nav-toggle-bar:nth-child(1) {
  top: calc(50% - 7px);
}

.nav-toggle-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle-bar:nth-child(3) {
  top: calc(50% + 7px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  top: calc(var(--promo-height) + var(--header-height));
  z-index: 1001;
  background: #fff;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition:
    opacity 0.3s var(--ease-out),
    visibility 0.3s var(--ease-out);
}

.site-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding: 0.35rem;
  transition: color var(--duration-fast) var(--ease);
}

@media (max-width: 63.99rem) {
  .site-nav .nav-list a,
  .site-nav .nav-cta {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.35s var(--ease-out),
      transform 0.35s var(--ease-out),
      color var(--duration-fast) var(--ease);
  }

  .site-nav.open .nav-list a,
  .site-nav.open .nav-cta {
    opacity: 1;
    transform: none;
  }

  .site-nav.open .nav-list li:nth-child(1) a { transition-delay: 0.04s; }
  .site-nav.open .nav-list li:nth-child(2) a { transition-delay: 0.08s; }
  .site-nav.open .nav-list li:nth-child(3) a { transition-delay: 0.12s; }
  .site-nav.open .nav-list li:nth-child(4) a { transition-delay: 0.16s; }
  .site-nav.open .nav-list li:nth-child(5) a { transition-delay: 0.2s; }
  .site-nav.open .nav-list li:nth-child(6) a { transition-delay: 0.24s; }
  .site-nav.open .nav-list li:nth-child(7) a { transition-delay: 0.28s; }
  .site-nav.open .nav-cta { transition-delay: 0.32s; }

  .site-nav:not(.open) .nav-list a,
  .site-nav:not(.open) .nav-cta {
    transition-delay: 0s;
  }
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--gold);
}

.nav-cta {
  width: 100%;
  max-width: 16rem;
  margin-top: 0.5rem;
}

@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    overflow: visible;
    z-index: auto;
  }

  .site-nav .nav-list a,
  .site-nav .nav-cta {
    opacity: 1;
    transform: none;
    transition: color var(--duration-fast) var(--ease), opacity var(--duration-fast) var(--ease);
  }

  .nav-list {
    flex-direction: row;
    gap: 1.35rem;
    width: auto;
  }

  .nav-list a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    opacity: 0.82;
  }

  .nav-list a:hover {
    opacity: 1;
  }

  .nav-cta {
    width: auto;
    max-width: none;
    margin-top: 0;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(84svh, 48rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--promo-height) + var(--header-height));
  padding-bottom: var(--space-xl);
}

.hero-content {
  text-align: center;
  padding-block: clamp(2.25rem, 7vw, 4.5rem) clamp(2rem, 6vw, 3.75rem);
  max-width: 42rem;
}

.hero-title {
  margin: 0 auto 2.75rem;
  max-width: min(62%, 16.5rem);
}

.hero-logo {
  width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

@media (min-width: 48rem) {
  .hero-title {
    max-width: 18.5rem;
  }
}

@media (min-width: 64rem) {
  .hero-title {
    max-width: 20rem;
  }
}

.hero-desc {
  font-size: clamp(1.0625rem, 2.4vw, 1.25rem);
  color: rgba(29, 29, 31, 0.74);
  max-width: 28rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
}

@media (min-width: 30rem) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Motion + GSAP take over once JS is ready */
.hero-logo-animate,
.hero-animate {
  opacity: 0;
}

.about-image-wrap,
.shop-item {
  overflow: hidden;
}

.team-photo,
.shop-item img,
.about-image {
  will-change: transform;
}

/* Legacy reveal class unused by JS — keep safe defaults */
.reveal {
  opacity: 1;
  transform: none;
}

/* Memorial */
.memorial {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) var(--space-sm);
  background: var(--army);
  font-family: var(--font-script);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
}

.memorial span {
  color: #fff;
}

/* Stats */
.stats {
  position: relative;
  z-index: 2;
  padding-block: clamp(2rem, 5vw, 3.5rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  background: var(--bg-secondary);
  border: none;
  box-shadow: none;
}

.stat-item {
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem) 0.75rem;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 48rem) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Services */
.services-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-image-wrap {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-secondary);
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-image {
  transform: scale(1.04);
}

.service-card h3,
.service-card p,
.service-pricing,
.service-card .btn {
  margin-inline: clamp(1.5rem, 3vw, 2.25rem);
}

.service-card h3 {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.service-card .btn {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  align-self: flex-start;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(168, 137, 63, 0.22);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.service-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.service-price {
  display: block;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.service-time {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 40rem) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About */
.about-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.03);
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.about-content .section-eyebrow {
  text-align: left;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 36rem;
}

.about-signoff {
  margin-top: 1.5rem;
  color: var(--army) !important;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.55;
}

.about-signoff em {
  color: var(--gold);
  font-style: italic;
}

@media (min-width: 64rem) {
  .about-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 4.5rem;
  }
}

/* Team */
.team-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
  padding: 1rem 1rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.team-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.35rem);
  margin-bottom: 0.875rem;
  border: none;
}

.team-photo--negini {
  object-position: 78% 42%;
}

.team-photo--adoom {
  object-position: 42% 38%;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--army-light);
  margin-bottom: 0.4rem;
}

.team-contact {
  font-size: 0.8125rem;
  margin-bottom: 0.2rem;
}

.team-contact a {
  color: var(--text-secondary);
}

.team-social {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

@media (min-width: 40rem) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .team-card {
    padding: 1.25rem;
  }
}

@media (min-width: 64rem) {
  .team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial {
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease);
}

.testimonial:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.testimonial footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.testimonial footer span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 48rem) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Shop */
.shop-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(2, 1fr);
}

.shop-item {
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.shop-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.shop-item:hover img {
  transform: scale(1.04);
}

.shop-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 48rem) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Booking */
.booking-wrap {
  overflow: hidden;
  padding: 0;
}

.booking-iframe {
  width: 100%;
  height: min(70svh, 42rem);
  min-height: 28rem;
  border: none;
  background: var(--white);
}

.booking-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  transition: color var(--duration-fast) var(--ease);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--gold);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform var(--duration) var(--ease-out), opacity var(--duration-fast) var(--ease);
}

.faq-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer[hidden] {
  display: none;
}

/* Map */
.map-wrap {
  overflow: hidden;
  padding: 0;
}

.map-wrap--tall .map-iframe {
  min-height: 28rem;
}

.map-iframe {
  width: 100%;
  height: 20rem;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

.map-cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 30rem) {
  .map-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* Contact Page */
.page-hero {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: 1rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.contact-phone:hover {
  color: var(--gold);
}

.contact-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.hours-list dt {
  color: var(--text-primary);
  font-weight: 500;
}

.hours-list dd {
  color: var(--text-secondary);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 30rem) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition:
    border-color var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(29, 29, 31, 0.18);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(168, 137, 63, 0.12);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-note {
  margin-top: 0.875rem;
  font-size: 0.9375rem;
  color: var(--army-light);
}

@media (min-width: 64rem) {
  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

/* Footer */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 0.875rem;
  max-width: 16rem;
  line-height: 1.55;
}

.footer-nav h3,
.footer-hours h3,
.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.footer-nav ul,
.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  transition: color var(--duration-fast) var(--ease);
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-hours li,
.footer-contact p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (max-width: 39.99rem) {
  .container {
    width: min(100% - 1.75rem, 72rem);
  }

  .btn-lg {
    width: min(100%, 20rem);
  }

  .hero-actions {
    width: 100%;
  }

  .booking-iframe {
    min-height: 32rem;
  }
}
