/* ═══════════════════════════════════════════
   FABO CHI — styles.css
═══════════════════════════════════════════ */

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

:root {
  --stone:      #88837C;
  --stone-lt:   #b0aba4;
  --stone-dk:   #5a5650;
  --cream:      #f2ede6;
  --dark:       #1a1917;
  --darker:     #0f0e0c;
  --accent:     #c8a96e;
  --accent-dk:  #a8894e;
  --text-muted: #9e9890;
}

html { scroll-behavior: smooth; }

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

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1.5rem;
  background: rgba(15,14,12,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(136,131,124,0.15);
  transition: all .3s;
}

.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px; justify-self: start;
}
.hamburger span {
  display: block; height: 2px; background: var(--cream);
  transition: all .35s cubic-bezier(.77,0,.18,1);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.logo-link {
  text-decoration: none;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; justify-self: center;
}
.logo-main {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.7rem;
  color: var(--cream);
  line-height: 1;
  transition: color .25s;
  letter-spacing: .04em;
}
.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: .5rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--stone); transition: color .25s;
}
.logo-link:hover .logo-main { color: var(--accent); }
.logo-link:hover .logo-sub  { color: var(--accent); }

.book-btn {
  justify-self: end;
  font-family: 'Outfit', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--darker); background: var(--accent);
  text-decoration: none;
  padding: .5rem 1.2rem;
  border-radius: 2px;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.book-btn:hover { background: var(--accent-dk); transform: translateY(-1px); }

/* ═══════════════════════════════
   NAV DRAWER
═══════════════════════════════ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(10,9,8,.7);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 999;
  width: min(340px, 92vw);
  background: var(--dark);
  border-right: 1px solid rgba(136,131,124,.15);
  padding: 5rem 2.5rem 3rem;
  display: flex; flex-direction: column; gap: .2rem;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
  overflow: hidden;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600;
  color: var(--cream); text-decoration: none;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(136,131,124,.1);
  transition: color .25s, padding-left .25s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-drawer a:hover { color: var(--accent); padding-left: .4rem; }
.nav-drawer a.active { color: var(--accent); }
.nav-drawer a[data-page="merch"] { font-size: 1.55rem; }

.nav-footer {
  margin-top: auto;
  font-size: .7rem; letter-spacing: .12em;
  color: var(--stone-dk); text-transform: uppercase;
}

/* ═══════════════════════════════
   PAGES
═══════════════════════════════ */
.page { display: none; padding-top: 72px; min-height: 100vh; }
.page.active { display: block; }

/* ─── SHARED ─── */
.btn-gold {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent); color: var(--darker);
  padding: .9rem 2.2rem;
  text-decoration: none; display: inline-block;
  border-radius: 2px;
  transition: background .25s, transform .2s;
}
.btn-gold:hover { background: var(--accent-dk); transform: translateY(-2px); }

.btn-outline {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--cream);
  padding: .9rem 2.2rem;
  text-decoration: none; display: inline-block;
  border: 1px solid rgba(136,131,124,.35);
  border-radius: 2px;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.section-eyebrow {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .7rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 4rem 6vw; text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(136,131,124,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,169,110,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-lines {
  position: absolute; right: 8vw; top: 0; bottom: 0;
  display: flex; gap: 18px; align-items: stretch;
  opacity: .05; pointer-events: none; z-index: 0;
}
.hero-lines span {
  display: block; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--cream) 30%, var(--cream) 70%, transparent);
}
.hero-content {
  position: relative; z-index: 1; max-width: 720px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-tag {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .35em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .7s .1s forwards;
  justify-content: center;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 9vw, 8rem);
  font-weight: 700; line-height: .92;
  opacity: 0; animation: fadeUp .8s .25s forwards;
}
.hero h1 em { font-style: italic; color: var(--stone-lt); display: block; }

.hero-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 2rem auto;
  opacity: 0; animation: fadeUp .7s .4s forwards;
}
.hero p {
  font-size: 1.05rem; line-height: 1.8;
  color: var(--stone-lt); max-width: 420px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
  text-align: center;
}
.hero-actions {
  margin-top: 2.8rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s .65s forwards;
  justify-content: center;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(136,131,124,.1);
  border-bottom: 1px solid rgba(136,131,124,.1);
  padding: 2.5rem 6vw;
  display: flex; justify-content: center;
}
.stat {
  flex: 1; max-width: 220px;
  text-align: center; padding: 0 2rem; position: relative;
}
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px; background: rgba(136,131,124,.15);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: .05em;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); margin-top: .4rem;
}

/* ─── SERVICES ─── */
.services-section { padding: 5rem 6vw; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--dark);
  border: 1px solid rgba(136,131,124,.1);
  border-radius: 4px; overflow: hidden;
  transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(200,169,110,.3); }

.service-img {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: var(--stone-dk);
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
  display: block;
}
.service-card:hover .service-img img { transform: scale(1.05); }

.service-info { padding: 1.4rem 1.5rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem;
}
.service-desc { font-size: .85rem; color: var(--stone-lt); line-height: 1.6; flex: 1; }
.service-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .06em;
  color: var(--accent); margin-top: .8rem;
}
.service-book-btn {
  display: block; margin-top: .8rem; text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--darker); background: var(--accent);
  text-decoration: none; padding: .6rem;
  border-radius: 2px; transition: background .2s;
}
.service-book-btn:hover { background: var(--accent-dk); }

/* ─── FABO / MEET PAGE ─── */
.fabo-page { padding-top: 0; }

.fabo-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100vh - 72px);
}
.fabo-hero-text {
  padding: 5rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(136,131,124,.1);
}
.fabo-hero-text h2 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cream); line-height: 1; margin-bottom: .5rem;
}
.fabo-title {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
}
.fabo-hero-text p {
  font-size: 1rem; line-height: 1.8;
  color: var(--stone-lt); max-width: 440px;
}
.fabo-hero-img {
  background: var(--stone-dk);
  position: relative; overflow: hidden;
}
.fabo-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
  min-height: 500px;
}
.barber-photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--stone-dk);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.barber-photo-placeholder {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem; letter-spacing: .1em;
  color: rgba(136,131,124,.25);
}
.barber-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,14,12,.6) 0%, transparent 60%);
}
.barber-specialties { display: flex; flex-wrap: wrap; gap: .4rem; }
.specialty-tag {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(136,131,124,.1); color: var(--stone-lt);
  padding: .3rem .8rem; border-radius: 2px;
  border: 1px solid rgba(136,131,124,.18);
}

/* ─── MERCH PAGE ─── */
.merch-banner {
  padding: 5rem 6vw 3rem;
  border-bottom: 1px solid rgba(136,131,124,.1);
}
.merch-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700;
}
.merch-banner p {
  color: var(--stone-lt); margin-top: .8rem;
  max-width: 400px; line-height: 1.6; font-size: .95rem;
}
.merch-filter {
  display: flex; gap: .5rem; flex-wrap: wrap;
  padding: 1.5rem 6vw;
  border-bottom: 1px solid rgba(136,131,124,.08);
}
.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: .73rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--stone-lt);
  border: 1px solid rgba(136,131,124,.2);
  padding: .45rem 1.1rem; border-radius: 2px;
  cursor: pointer; transition: all .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent); color: var(--darker); border-color: var(--accent);
}
.merch-grid {
  padding: 3rem 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.merch-card {
  background: var(--dark);
  border: 1px solid rgba(136,131,124,.1);
  border-radius: 4px; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.merch-card:hover { border-color: rgba(200,169,110,.28); transform: translateY(-3px); }
.merch-img {
  aspect-ratio: 1; background: var(--stone-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.merch-badge {
  position: absolute; top: .8rem; right: .8rem;
  font-family: 'Outfit', sans-serif;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  background: #8b4040; color: white;
  padding: .25rem .6rem; border-radius: 2px;
}
.merch-badge.new { background: var(--accent); color: var(--darker); }
.merch-details { padding: 1.2rem 1.4rem 1.6rem; }
.merch-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; }
.merch-category {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--stone); margin-top: .2rem;
}
.merch-row { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; }
.merch-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .06em; color: var(--accent); }
.add-btn {
  font-family: 'Outfit', sans-serif;
  font-size: .73rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(200,169,110,.1); color: var(--accent);
  border: 1px solid rgba(200,169,110,.25);
  padding: .45rem .9rem; border-radius: 2px;
  cursor: pointer; transition: all .2s;
}
.add-btn:hover { background: var(--accent); color: var(--darker); }

/* ─── ABOUT PAGE ─── */
.about-hero {
  padding: 5rem 6vw;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  border-bottom: 1px solid rgba(136,131,124,.1);
}
.about-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1;
}
.about-hero h2 em { font-style: italic; color: var(--stone-lt); display: block; }
.about-hero > div:first-child p { font-size: 1rem; line-height: 1.85; color: var(--stone-lt); margin-top: 1.2rem; }

/* Gallery Slider */
.gallery-slider {
  position: relative;
  border-radius: 4px; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--stone-dk);
}
.gallery-track { position: relative; width: 100%; height: 100%; }
.gallery-track img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0; transition: opacity .9s ease;
}
.gallery-track img.active { opacity: 1; }
.gallery-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .4rem; z-index: 2;
}
.gallery-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: background .3s, transform .3s; padding: 0;
}
.gallery-dot.active { background: var(--accent); transform: scale(1.4); }

/* Reviews */
.reviews-section { padding: 5rem 6vw; border-bottom: 1px solid rgba(136,131,124,.1); }
.reviews-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; text-align: center;
  margin-bottom: 3rem; color: var(--accent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.review-card {
  background: var(--dark);
  border: 1px solid rgba(136,131,124,.1);
  border-radius: 4px; padding: 1.6rem 1.8rem;
  display: flex; flex-direction: column; gap: .6rem;
  transition: border-color .3s, transform .3s;
}
.review-card:hover { border-color: rgba(200,169,110,.3); transform: translateY(-2px); }
.review-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: .05em; }
.review-text { font-size: .9rem; line-height: 1.65; color: var(--cream); flex: 1; font-style: italic; }
.review-author { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }

/* ─── DIRECTIONS ─── */
.directions-section {
  padding: 5rem 6vw;
  background: var(--darker);
  border-top: 1px solid rgba(136,131,124,.1);
  border-bottom: 1px solid rgba(136,131,124,.1);
}
.directions-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.directions-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 1rem;
}
.directions-text > p { color: var(--stone-lt); line-height: 1.7; margin-bottom: 2rem; font-size: .95rem; }
.directions-details { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
.direction-item { display: flex; gap: 1rem; align-items: flex-start; }
.direction-icon { font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.direction-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .3rem;
}
.direction-value { font-size: .9rem; color: var(--stone-lt); line-height: 1.6; }
.directions-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.directions-map {
  height: 380px; border-radius: 3px; overflow: hidden;
  border: 1px solid rgba(136,131,124,.15);
}
.directions-map iframe { width: 100%; height: 100%; display: block; }

/* ─── ABOUT CTA ─── */
.about-cta {
  padding: 5rem 6vw; text-align: center;
  background: var(--dark);
  border-top: 1px solid rgba(136,131,124,.1);
}
.about-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; margin-bottom: 1rem;
}
.about-cta p {
  color: var(--stone-lt); margin-bottom: 2.5rem;
  font-size: 1rem; max-width: 400px; margin-inline: auto; line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(136,131,124,.12);
  padding: 2.5rem 6vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: 1.3rem; color: var(--stone);
}
.footer-copy { font-size: .72rem; color: var(--stone-dk); letter-spacing: .08em; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--accent); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .fabo-hero { grid-template-columns: 1fr; min-height: auto; }
  .fabo-hero-text { padding: 4rem 2.5rem 2.5rem; border-right: none; border-bottom: 1px solid rgba(136,131,124,.1); }
  .fabo-hero-img img { min-height: 380px; }

  .about-hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-slider { aspect-ratio: 4/3; }

  .directions-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .directions-map { height: 300px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { flex-wrap: wrap; }
  .stat { min-width: 50%; padding: 1.5rem 1rem; }
}

/* Phone (≤ 768px) */
@media (max-width: 768px) {
  header { padding: 0 1rem; }
  .logo-main { font-size: 1.35rem; }
  .logo-sub { display: none; }
  .book-btn { font-size: .68rem; padding: .45rem .85rem; }

  .hero { padding: 3rem 1.4rem; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero p { font-size: .95rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; max-width: 280px; text-align: center; }

  .stats-bar { padding: 2rem 1.4rem; }
  .stat { min-width: 50%; padding: 1.2rem .8rem; }
  .stat-num { font-size: 2.2rem; }

  .services-section { padding: 3.5rem 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .fabo-hero-text { padding: 3rem 1.4rem 2rem; }
  .fabo-hero-text h2 { font-size: 2.8rem; }
  .fabo-hero-img img { min-height: 300px; }

  .merch-banner { padding: 3.5rem 1.4rem 2rem; }
  .merch-filter { padding: 1.2rem 1.4rem; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; padding: 2rem 1.4rem; }

  .about-hero { padding: 3.5rem 1.4rem; }
  .gallery-slider { aspect-ratio: 1/1; }
  .reviews-section { padding: 3.5rem 1.4rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-cta { padding: 3.5rem 1.4rem; }

  .directions-section { padding: 3.5rem 1.4rem; }
  .directions-map { height: 250px; }
  .directions-btns { flex-direction: column; }
  .directions-btns a { text-align: center; }

  footer { flex-direction: column; text-align: center; padding: 2rem 1.4rem; }
  .footer-links { justify-content: center; }
}

/* Small phone (≤ 480px) */
@media (max-width: 480px) {
  .logo-main { font-size: 1.15rem; }
  .book-btn { font-size: .62rem; padding: .4rem .7rem; }
  .hero h1 { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .merch-grid { grid-template-columns: 1fr; }
  .stat { min-width: 50%; }
  .nav-drawer { width: 100%; }
  .btn-gold, .btn-outline { padding: .8rem 1.5rem; font-size: .76rem; }
  .service-img { aspect-ratio: 16/9; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   EVERYTHINGCUSTOMCHI PAGE
═══════════════════════════════ */
.ecc-page {
  min-height: calc(100vh - 72px);
  display: flex; flex-direction: column;
}

.ecc-header {
  padding: 5rem 6vw 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(136,131,124,.1);
}
.ecc-header h2 {
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--cream); margin-bottom: .8rem;
  letter-spacing: .04em;
}
.ecc-header p {
  color: var(--stone-lt); font-size: 1rem;
  max-width: 420px; margin: 0 auto; line-height: 1.7;
}

/* Slideshow */
.ecc-slideshow {
  position: relative;
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 3rem auto 0;
  padding: 0 6vw;
}

.ecc-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark);
  border: 1px solid rgba(136,131,124,.12);
  border-radius: 4px;
  overflow: hidden;
}

.ecc-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex; flex-direction: column;
}
.ecc-slide.active { opacity: 1; }

.ecc-slide-img {
  flex: 1;
  width: 100%; overflow: hidden;
}
.ecc-slide-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.ecc-placeholder {
  background: var(--stone-dk);
  display: flex; align-items: center; justify-content: center;
}
.ecc-placeholder span {
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(136,131,124,.4);
}

.ecc-slide-label {
  background: rgba(15,14,12,.75);
  backdrop-filter: blur(6px);
  padding: .6rem 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: .15em;
  color: var(--accent);
  text-align: center;
  position: absolute; bottom: 0; left: 0; right: 0;
}

/* Arrows */
.ecc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(15,14,12,.6);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(136,131,124,.2);
  color: var(--cream); font-size: 1.2rem;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; transition: background .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.ecc-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--darker); }
.ecc-prev { left: calc(6vw + 10px); }
.ecc-next { right: calc(6vw + 10px); }

/* Dots */
.ecc-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.2rem;
}
.ecc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(136,131,124,.3); border: none;
  cursor: pointer; transition: background .3s, transform .3s; padding: 0;
}
.ecc-dot.active { background: var(--accent); transform: scale(1.35); }

/* CTA */
.ecc-cta {
  text-align: center;
  padding: 3.5rem 6vw 5rem;
}
.ecc-cta p {
  color: var(--stone-lt); font-size: .95rem;
  margin-bottom: 1.5rem; line-height: 1.6;
}
.ecc-shop-btn {
  font-size: .95rem;
  padding: 1rem 3rem;
  letter-spacing: .12em;
}

/* Responsive */
@media (max-width: 768px) {
  .ecc-header { padding: 3.5rem 1.4rem 2rem; }
  .ecc-slideshow { padding: 0 1.4rem; margin-top: 2rem; }
  .ecc-prev { left: 1.4rem; }
  .ecc-next { right: 1.4rem; }
  .ecc-cta { padding: 2.5rem 1.4rem 4rem; }
  .ecc-arrow { width: 36px; height: 36px; font-size: 1rem; }
}
