/* ==========================================================================
   All Star Fadez Barber Shop — College Station, TX
   ========================================================================== */

:root {
  /* Brand palette pulled from the shop sign & interior */
  --red:        #e01b24;
  --red-deep:   #b3121a;
  --red-glow:   rgba(224, 27, 36, .35);
  --gold:       #f8b820;
  --gold-soft:  #ffd25e;
  --blue:       #2b6fd6;

  --ink:        #0a0a0c;
  --ink-2:      #121216;
  --ink-3:      #1b1b21;
  --line:       rgba(255, 255, 255, .09);
  --line-strong:rgba(255, 255, 255, .16);

  --white:      #ffffff;
  --text:       #e9e9ee;
  --text-dim:   #a3a3ae;

  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 18px 50px rgba(0, 0, 0, .5);
  --maxw:       1180px;
  --nav-h:      74px;

  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Anton', 'Inter', sans-serif;
  --font-script:  'Kaushan Script', cursive;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: 104px 0; position: relative; }

/* Fallback when a photo file hasn't been added yet */
.img-missing {
  visibility: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: .01em; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .02em;
}

h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }

.section-header h2 { position: relative; padding-bottom: 22px; }

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 74px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.section-sub { color: var(--text-dim); font-size: 1.03rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  box-shadow: 0 10px 28px var(--red-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 38px var(--red-glow); }

.btn-ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  border: 1.5px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-3px); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ==========================================================================
   NAV
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 12, .9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Wordmark */
.brand { display: flex; align-items: center; gap: 11px; }

.brand-star {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e39a00);
  color: var(--ink);
  font-size: .95rem;
  box-shadow: 0 4px 16px rgba(248, 184, 32, .3);
  flex-shrink: 0;
}

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

.brand-script {
  font-family: var(--font-script);
  font-size: 1.12rem;
  color: var(--red);
  transform: rotate(-3deg);
  transform-origin: left center;
  margin-bottom: 1px;
}

.brand-block {
  font-family: var(--font-display);
  font-size: 1.34rem;
  letter-spacing: .07em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 30px; }

.nav-links > li > a:not(.btn) {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}

.nav-links > li > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease;
}

.nav-links > li > a:not(.btn):hover { color: var(--white); }
.nav-links > li > a:not(.btn):hover::after { width: 100%; }

.btn-nav { padding: 10px 20px; font-size: .88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .25s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 90px;
  overflow: hidden;
  /* Branded backdrop shows through if the photo is missing */
  background:
    radial-gradient(circle at 20% 15%, rgba(224, 27, 36, .28), transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(248, 184, 32, .16), transparent 52%),
    var(--ink);
}

.hero-media { position: absolute; inset: 0; z-index: 0; }

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(.25) brightness(.5);
  animation: heroZoom 22s ease-out forwards;
}

@keyframes heroZoom { from { transform: scale(1.1); } to { transform: scale(1); } }

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,12,.82) 0%, rgba(10,10,12,.55) 42%, rgba(10,10,12,.96) 100%),
    radial-gradient(circle at 50% 45%, transparent 20%, rgba(10,10,12,.6) 100%);
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; }

/* Open / closed pill */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  margin-bottom: 26px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.status-pill.is-open .status-dot {
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, .7);
  animation: pulse 2s infinite;
}

.status-pill.is-closed .status-dot { background: var(--red); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, .65); }
  70%  { box-shadow: 0 0 0 11px rgba(46, 204, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Hero wordmark */
.hero h1 { display: flex; flex-direction: column; align-items: center; margin-bottom: 8px; }

.h1-script {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  color: var(--red);
  transform: rotate(-4deg);
  text-shadow: 0 4px 22px rgba(224, 27, 36, .5), 0 2px 0 rgba(0,0,0,.4);
  margin-bottom: -.12em;
}

.h1-block {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 13vw, 8rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 35%, #c9c9d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .6);
}

.hero-tag {
  font-size: clamp(.82rem, 2vw, .98rem);
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 36px;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  font-size: .88rem;
  color: var(--text-dim);
}

.hero-meta i { color: var(--gold); margin-right: 6px; }
.dot-sep { opacity: .4; }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  animation: bob 2.4s ease-in-out infinite;
  transition: color .2s ease, border-color .2s ease;
}

.scroll-cue:hover { color: var(--gold); border-color: var(--gold); }

@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 9px); } }

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust {
  background: var(--ink-2);
  border-block: 1px solid var(--line);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.trust-item { display: flex; align-items: center; gap: 15px; }

.trust-item i {
  font-size: 1.35rem;
  color: var(--gold);
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(248, 184, 32, .1);
  flex-shrink: 0;
}

.trust-item div { display: flex; flex-direction: column; line-height: 1.4; }
.trust-item strong { color: var(--white); font-size: .97rem; }
.trust-item span { color: var(--text-dim); font-size: .85rem; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--ink); }

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

.service-card {
  position: relative;
  padding: 34px 28px 30px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(224, 27, 36, .13);
  color: var(--red);
  font-size: 1.3rem;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  transform: scale(1.06) rotate(-5deg);
}

/* the doubled icon in "Shave & Enhancements" — show only one */
.service-icon i + i { display: none; }

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: .93rem; margin-bottom: 18px; }

.service-price {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(248, 184, 32, .11);
  border: 1px solid rgba(248, 184, 32, .28);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.services-note {
  margin-top: 40px;
  text-align: center;
  color: var(--text-dim);
  font-size: .93rem;
}

.services-note i { color: var(--gold); margin-right: 7px; }
.services-note a { color: var(--gold); font-weight: 700; border-bottom: 1px solid rgba(248,184,32,.4); }
.services-note a:hover { color: var(--gold-soft); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--ink-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: pointer;
  background:
    linear-gradient(150deg, rgba(224,27,36,.22), rgba(248,184,32,.12)),
    var(--ink-3);
}

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* A tile whose photo hasn't been added yet isn't clickable */
.gal-item:has(img.img-missing) { cursor: default; }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.3,1), filter .4s ease;
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,12,.9) 100%);
  opacity: .75;
  transition: opacity .35s ease;
  pointer-events: none;
}

.gal-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gal-item:hover::after { opacity: .95; }

.gal-item figcaption {
  position: absolute;
  left: 18px; bottom: 15px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--ink); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 62px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(150deg, rgba(224,27,36,.25), rgba(248,184,32,.12)),
    var(--ink-3);
  box-shadow: var(--shadow);
}

.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  right: 18px; bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
  text-align: center;
  line-height: 1.15;
}

.ab-num { font-family: var(--font-display); font-size: 2.1rem; color: var(--white); }
.ab-label { font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.9); }

.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--text-dim); margin-bottom: 16px; }

.about-list { margin: 26px 0 32px; display: grid; gap: 12px; }

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-size: .95rem;
}

.about-list i {
  color: var(--gold);
  font-size: .72rem;
  margin-top: .42em;
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 184, 32, .13);
  flex-shrink: 0;
}

/* ==========================================================================
   HOURS & LOCATION
   ========================================================================== */
.visit { background: var(--ink-2); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.visit-card {
  padding: 32px 30px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
}

.visit-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.visit-card h3 i { color: var(--red); font-size: 1.05rem; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: .94rem;
  color: var(--text-dim);
  transition: background .2s ease;
}

.hours-list li + li { border-top: 1px solid var(--line); }

.hours-list li.today {
  background: rgba(224, 27, 36, .12);
  color: var(--white);
  font-weight: 700;
  border-top-color: transparent;
}

.hours-list li.today span:last-child { color: var(--gold); }

.hours-status {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
}

.hours-status.open   { color: #2ecc71; border-color: rgba(46, 204, 113, .3); background: rgba(46,204,113,.08); }
.hours-status.closed { color: #ff6b6b; border-color: rgba(255, 107, 107, .3); background: rgba(255,107,107,.07); }

address {
  font-style: normal;
  color: var(--text-dim);
  font-size: .98rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

address strong { color: var(--white); font-size: 1.05rem; }

.visit-actions { display: grid; gap: 11px; }

.pluscode {
  margin-top: 18px;
  font-size: .8rem;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: .02em;
}

.visit-map {
  grid-column: 1 / -1;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-3);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.35) invert(.9) hue-rotate(180deg) contrast(.9);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  position: relative;
  padding: 86px 0;
  text-align: center;
  background:
    radial-gradient(circle at 22% 20%, rgba(224, 27, 36, .3), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(248, 184, 32, .16), transparent 55%),
    var(--ink);
  border-block: 1px solid var(--line);
}

.cta-inner h2 { margin-bottom: 14px; }
.cta-inner p { color: var(--text-dim); margin-bottom: 32px; font-size: 1.03rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink-2); padding-top: 62px; border-top: 1px solid var(--line); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand-text { margin-bottom: 14px; }
.footer-brand .brand-script { font-size: 1.3rem; }
.footer-brand .brand-block { font-size: 1.6rem; }
.footer-brand p { color: var(--text-dim); font-size: .9rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col p { color: var(--text-dim); font-size: .9rem; margin-bottom: 10px; }

.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: .9rem;
  padding: 3px 0;
  transition: color .2s ease, transform .2s ease;
}

.footer-col a:hover { color: var(--gold); transform: translateX(3px); }

.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom p { color: var(--text-dim); font-size: .84rem; text-align: center; }

/* ==========================================================================
   MOBILE CALL BAR
   ========================================================================== */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 880;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .45);
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 6, 8, .95);
  backdrop-filter: blur(6px);
  padding: 60px 20px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: min(92vw, 900px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.lb-close, .lb-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.lb-close:hover, .lb-nav:hover { background: var(--red); transform: scale(1.08); }

.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px; }
.lb-next  { right: 24px; }

.lb-caption {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  color: var(--text-dim);
  font-size: .92rem;
  text-align: center;
  padding-inline: 20px;
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}

.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-img, .scroll-cue, .status-pill.is-open .status-dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gal-wide { grid-column: span 2; }
  .gal-tall { grid-row: span 1; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 26px;
    background: rgba(10, 10, 12, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.2,.7,.3,1);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links > li > a:not(.btn) {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-links > li:last-child { margin-top: 16px; }
  .btn-nav { width: 100%; padding: 14px 20px; font-size: .95rem; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { height: 320px; }
}

@media (max-width: 620px) {
  .section { padding: 74px 0; }
  .container, .nav-container { padding-inline: 18px; }

  .hero { padding-bottom: 110px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .scroll-cue { display: none; }

  .trust-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gal-wide { grid-column: span 1; }

  .about-badge { width: 84px; height: 84px; right: 12px; bottom: 12px; }
  .ab-num { font-size: 1.7rem; }
  .ab-label { font-size: .6rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand .brand-text { align-items: center; }
  .brand-script { transform: none; }

  .mobile-call-bar { display: flex; }
  body { padding-bottom: 58px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}
