/* Gunners Barber — classical, editorial luxury system
   Cormorant Garamond (headings) over Lora (body). Gold as stroke, not fill. */

:root {
  --color-bg: #ffffff;
  --color-surface: #faf8f5;
  --color-ink: #14100c;
  --color-text: #18140f;
  --color-text-soft: #3a332b;
  --color-text-mute: #655c50;
  --color-divider: rgba(20, 16, 12, 0.13);

  --gold-100: #fdf5e6;
  --gold-200: #f7e2b7;
  --gold-300: #e9c586;
  --gold-400: #d9a94f;
  --gold-500: #c68f2c;
  --gold-600: #a97620;
  --gold-700: #835a15;
  --gold-800: #5c3f0e;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, 'Times New Roman', serif;

  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow-sm: 0 1px 2px rgba(20,16,12,0.06);
  --shadow-md: 0 10px 30px rgba(20,16,12,0.12);

  --content-max: 1240px;
  --edge: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0; padding: 0;
  background: var(--color-bg);
  color: var(--color-text);
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-700); text-decoration: none; }
a:hover { color: var(--gold-600); }
::selection { background: var(--gold-200); color: var(--color-ink); }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }

.wrap { max-width: var(--content-max); margin: 0 auto; padding-left: var(--edge); padding-right: var(--edge); }
.hr { height: 1px; background: var(--color-divider); border: none; }
.kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold-700);
}
.kicker::before { content: ''; width: 40px; height: 1px; background: var(--gold-500); }
.kicker.on-ink { color: var(--gold-300); }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; margin: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-divider);
}
.site-header .bar {
  max-width: var(--content-max); margin: 0 auto; padding: 19px var(--edge);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--color-text); flex: none; }
.brand img { height: 48px; width: auto; }
.brand .wordmark { display: flex; flex-direction: column; line-height: 1.2; border-left: 1px solid var(--color-divider); padding-left: 15px; }
.brand .wordmark b { font-family: var(--font-heading); font-weight: 600; font-size: 22px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--color-text); }
.brand .wordmark span { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-700); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: clamp(16px,2.2vw,32px); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.main-nav a.nav-link { color: var(--color-text-soft); padding: 6px 0; border-bottom: 1px solid transparent; }
.main-nav a.nav-link:hover { color: var(--color-text); border-bottom-color: var(--gold-500); }
.main-nav a.nav-link.active, .mobile-nav a.active { color: var(--gold-700); border-bottom-color: var(--gold-500); }

/* Secondary page intro — Services / Gallery / Visit */
.page-head { padding: clamp(52px,7vw,92px) 0 8px; }
.page-head h1 { font-size: clamp(38px,5.4vw,64px); line-height: 1.06; margin-top: 16px; }
.page-head p { color: var(--color-text-mute); margin-top: 16px; max-width: 60ch; }
.page-head.on-ink { background: var(--color-ink); color: #f1ece4; }
.page-head.on-ink p { color: rgba(241,236,228,0.72); }

/* Featured hero-loop clip on the Gallery page */
.video-feature { padding: 0 0 clamp(40px,5vw,64px); }
.video-feature .plate { padding: 8px; max-width: 720px; margin: 28px auto 0; }
.video-feature .frame { position: relative; aspect-ratio: 16/9; background: var(--color-ink); }
.video-feature video, .video-feature .video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-feature .video-fallback { display: none; }
@media (prefers-reduced-motion: reduce) {
  .video-feature video { display: none; }
  .video-feature .video-fallback { display: block; }
}
.video-feature .cap { text-align: center; font-size: 12.5px; color: var(--color-text-mute); margin-top: 14px; }
.main-nav .tel { color: var(--color-text-soft); letter-spacing: 0.06em; font-feature-settings: 'tnum'; }
.main-nav .tel:hover { color: var(--gold-700); }

.btn {
  display: inline-block; cursor: pointer; font-family: var(--font-body);
  border-radius: var(--radius-md); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  border: 1px solid var(--gold-500);
}
.btn-outline { color: var(--gold-700); padding: 11px 20px; background: transparent; }
.btn-outline:hover { background: var(--gold-500); color: #fbf7f0; }
.btn-solid { background: var(--gold-300); color: #171615; padding: 17px 34px; }
.btn-solid:hover { background: #f6e2c4; transform: translateY(-1px); }
.btn-ghost-ink { border-color: rgba(241,236,228,0.34); color: #f1ece4; padding: 17px 34px; }
.btn-ghost-ink:hover { border-color: var(--gold-500); background: rgba(198,143,44,0.14); }
.btn-ghost-ink-solid { border-color: var(--gold-500); background: var(--gold-300); color: #171615; padding: 17px 34px; }
.btn-ghost-ink-solid:hover { background: #f6e2c4; }

.nav-toggle, .call-btn {
  width: 46px; height: 46px; display: none; align-items: center; justify-content: center;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md); color: var(--color-text); background: none; cursor: pointer;
}
.mobile-nav { display: none; border-top: 1px solid var(--color-divider); padding: 8px var(--edge) 18px; flex-direction: column; font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.mobile-nav a { color: var(--color-text); padding: 17px 0; border-bottom: 1px solid var(--color-divider); }
.mobile-nav.open { display: flex; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle, .call-btn { display: flex; }
  .header-actions { display: flex; align-items: center; gap: 8px; }
}
@media (min-width: 861px) { .header-actions { display: none; } }
@media (max-width: 480px) {
  .site-header .bar { gap: 10px; }
  .brand .wordmark { display: none; }
  .brand img { height: 38px; }
  .header-actions .btn-outline { padding: 11px 14px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--color-ink); color: #f1ece4; overflow: hidden; }
.hero .media { position: absolute; inset: 0; background: var(--color-ink); }
.hero .media img, .hero .media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.05); }
.hero .media .hero-fallback { object-position: 78% 22%; }
.hero .media .hero-video { object-position: 50% 45%; }
@media (prefers-reduced-motion: reduce) { .hero .media .hero-video { display: none; } }
.hero .scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15,14,13,0.95) 0%, rgba(15,14,13,0.82) 42%, rgba(15,14,13,0.28) 78%, rgba(15,14,13,0.12) 100%); }
.hero .inner { position: relative; max-width: var(--content-max); margin: 0 auto; padding: clamp(84px,13vw,190px) var(--edge) clamp(64px,9vw,120px); }
.hero .copy { max-width: 720px; }
.hero h1 { font-size: clamp(44px,7.4vw,96px); line-height: 1.02; letter-spacing: -0.01em; margin-top: 26px; color: #f6f1e9; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--gold-300); }
.hero p.lede { max-width: 44ch; font-size: clamp(15px,1.25vw,18px); line-height: 1.8; color: rgba(241,236,228,0.78); margin: 28px 0 0; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.hero .stat-strip { position: relative; border-top: 1px solid rgba(241,236,228,0.16); }
.hero .stat-strip .wrap { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); }
.hero .stat-strip .stat { padding: 26px 0; border-right: 1px solid rgba(241,236,228,0.14); }
.hero .stat-strip .stat:last-child { border-right: none; }
.hero .stat-strip .num { font-family: var(--font-heading); font-size: 26px; font-feature-settings: 'tnum'; color: var(--gold-300); }
.hero .stat-strip .label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(241,236,228,0.6); margin-top: 4px; }

/* Compact hero variant — secondary pages */
.page-hero .inner { padding: clamp(56px,9vw,104px) var(--edge) clamp(48px,7vw,84px); }
.page-hero h1 { font-size: clamp(36px,5.6vw,64px); margin-top: 18px; }
.page-hero p.lede { font-size: 16px; max-width: 52ch; }

/* ---------- Standard / craft ---------- */
.standard { padding: clamp(64px,8vw,120px) 0; }
.standard .grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: clamp(36px,5vw,80px); align-items: start; }
.standard h2 { font-size: clamp(32px,4vw,52px); line-height: 1.1; margin-top: 18px; }
.standard p { text-align: justify; hyphens: auto; margin: 16px 0 0; color: var(--color-text-soft); }
.standard .cta { display: inline-block; margin-top: 30px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid var(--gold-500); padding-bottom: 5px; }

.plate { padding: 10px; border: 1px solid var(--color-divider); background: var(--color-surface); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
.plate .frame { position: relative; overflow: hidden; }
.plate img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.93) contrast(1.04); }

/* ---------- Sequence ---------- */
.sequence { border-top: 1px solid var(--color-divider); }
.sequence .wrap { padding: clamp(44px,5vw,76px) var(--edge); }
.sequence .steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: clamp(20px,3vw,44px); margin-top: 34px; }
.sequence .step { padding-left: clamp(0px,1.4vw,20px); border-left: 1px solid var(--color-divider); }
.sequence .step .n { font-family: var(--font-heading); font-size: 34px; color: var(--gold-300); font-feature-settings: 'tnum'; line-height: 1; }
.sequence .step .t { font-family: var(--font-heading); font-size: 21px; margin-top: 12px; }
.sequence .step p { font-size: 14px; color: var(--color-text-soft); margin: 8px 0 0; text-align: left; }

/* ---------- Menu / services ---------- */
.menu-section { border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); background: var(--color-surface); }
.menu-section .wrap { padding: clamp(56px,7vw,104px) var(--edge); }
.menu-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid var(--color-divider); padding-bottom: 22px; }
.menu-head h2 { font-size: clamp(30px,3.6vw,46px); margin-top: 14px; }

/* Tab strip — a barber's docket index */
.menu-tabs { display: flex; align-items: center; gap: 26px; overflow-x: auto; margin-top: 32px; scrollbar-width: none; -ms-overflow-style: none; }
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none; font-family: var(--font-body); background: none; cursor: pointer;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  color: var(--color-text-mute); border: none; border-bottom: 2px solid transparent;
  padding: 4px 0 12px; transition: color 160ms ease, border-color 160ms ease;
}
.menu-tab:hover { color: var(--color-text); }
.menu-tab.active { color: var(--gold-700); border-bottom-color: var(--gold-500); }
.tab-count { font-size: 9px; color: var(--color-text-mute); margin-left: 2px; }
.menu-tab.active .tab-count { color: var(--gold-500); }

.price-note { font-size: 12.5px; font-style: italic; color: var(--color-text-mute); margin-top: 14px; }

.menu-cat { margin-top: clamp(32px,3.4vw,44px); }
.menu-cat[hidden] { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .menu-cat { animation: gbFadeUp 380ms ease both; }
}
@keyframes gbFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.menu-cat-head { display: flex; align-items: flex-start; gap: 18px; }
.menu-cat-head .head-text { display: flex; flex-direction: column; gap: 5px; padding-top: 4px; }
.menu-cat-head h3 { font-size: clamp(22px,2.4vw,28px); }
.menu-cat-head .note { font-size: 13.5px; color: var(--color-text-mute); }
.docket-num {
  flex: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 13px; font-feature-settings: 'tnum';
  color: var(--gold-600); letter-spacing: 0.02em;
}

.menu-list { margin-top: 8px; border-top: 1px dashed var(--color-divider); }
.ticket-item { position: relative; padding: 4px 14px; margin: 0 -14px; border-bottom: 1px solid var(--color-divider); transition: background 200ms ease; }
.ticket-item:hover { background: var(--gold-100); }
.ticket-row { display: flex; align-items: baseline; gap: 10px; padding: 14px 0 2px; }
.t-name { font-family: var(--font-heading); font-size: 20px; line-height: 1.2; display: inline-flex; align-items: baseline; gap: 10px; flex-wrap: wrap; white-space: nowrap; }
.tag { flex: none; font-family: var(--font-body); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-700); border: 1px solid var(--gold-300); border-radius: var(--radius-sm); padding: 3px 8px; white-space: nowrap; }
.t-dur { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-mute); font-feature-settings: 'tnum'; white-space: nowrap; }
.t-leader { flex: 1; min-width: 20px; border-bottom: 1.5px dotted var(--color-divider); transform: translateY(-7px); transition: border-color 200ms ease; }
.ticket-item:hover .t-leader { border-color: var(--gold-500); }
.t-price { flex: none; font-family: var(--font-heading); font-size: 21px; font-feature-settings: 'tnum'; color: var(--gold-700); }
.t-desc { font-size: 13px; color: var(--color-text-mute); margin: 0 0 12px; max-width: 60ch; }

/* ---------- Ink divider band ---------- */
.ink-band { background: var(--color-ink); padding: clamp(28px,3.4vw,44px) var(--edge); display: flex; align-items: center; justify-content: center; gap: clamp(14px,2.6vw,30px); }
.ink-band .line { flex: 1; max-width: 300px; height: 1px; background: linear-gradient(90deg, rgba(198,143,44,0), var(--gold-500)); }
.ink-band .line.rev { background: linear-gradient(270deg, rgba(198,143,44,0), var(--gold-500)); }
.ink-band img { height: clamp(34px,3.6vw,48px); width: auto; opacity: 0.92; }
.ink-band .caption { font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-300); white-space: nowrap; }

/* ---------- Packages ---------- */
.packages { background: var(--color-ink); color: #f1ece4; }
.packages .wrap { padding: clamp(52px,7vw,104px) var(--edge); }
.packages h2 { font-weight: 300; font-size: clamp(30px,4vw,54px); margin-top: 22px; max-width: 22ch; }
.packages .cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: clamp(20px,3vw,32px); margin-top: 44px; }
.pkg-card { border: 1px solid rgba(241,236,228,0.22); border-radius: var(--radius-md); padding: clamp(26px,3vw,38px); transition: border-color 200ms ease; }
.pkg-card:hover { border-color: var(--gold-500); }
.pkg-card .head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.pkg-card h3 { font-size: clamp(24px,2.6vw,32px); color: #f6f1e9; }
.pkg-card .price { font-family: var(--font-heading); font-size: clamp(26px,2.8vw,34px); color: var(--gold-300); font-feature-settings: 'tnum'; }
.pkg-card .mins { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(241,236,228,0.55); margin-top: 8px; }
.pkg-card .blurb { color: rgba(241,236,228,0.76); margin: 20px 0 0; font-size: 15px; }
.pkg-card .rule { height: 1px; background: rgba(241,236,228,0.16); margin: 24px 0; }
.pkg-card .part { display: flex; gap: 12px; align-items: baseline; padding: 7px 0; font-size: 14.5px; color: rgba(241,236,228,0.86); }
.pkg-card .part::before { content: '◆'; color: var(--gold-300); font-size: 10px; }
.pkg-card .btn { margin-top: 28px; width: 100%; text-align: center; border-color: var(--gold-500); background: transparent; color: var(--gold-300); padding: 15px 28px; }
.pkg-card .btn:hover { background: var(--gold-300); color: #171615; }

/* ---------- Gallery ---------- */
.gallery-section { padding: clamp(64px,8vw,120px) 0; }
.gallery-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 14px; }
.gallery-head h2 { font-size: clamp(30px,3.6vw,46px); }

/* ---------- Recent work slider (Home) ---------- */
.work-section { padding: clamp(64px,8vw,120px) 0; overflow: hidden; }
.work-slider { margin-top: 40px; }
.work-track { display: flex; gap: 16px; width: max-content; animation: gbWorkScroll 64s linear infinite; }
.work-track:hover { animation-play-state: paused; }
.work-tile {
  flex: none; width: clamp(190px,20vw,270px); aspect-ratio: 3/4;
  border: 1px solid var(--color-divider); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--color-surface); box-shadow: var(--shadow-sm);
}
.work-tile img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.95) contrast(1.03); }
@keyframes gbWorkScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .work-track { animation: none; } }

.gallery-full { columns: 5 260px; column-gap: 14px; margin-top: 36px; }
.gallery-full figure { margin: 0 0 14px; break-inside: avoid; border: 1px solid var(--color-divider); border-radius: var(--radius-sm); overflow: hidden; background: var(--color-surface); }
.gallery-full img { width: 100%; height: auto; display: block; }
@media (max-width: 640px) { .gallery-full { columns: 2 160px; column-gap: 10px; } .gallery-full figure { margin-bottom: 10px; } }

/* ---------- Braiding (Services page) ---------- */
.braiding-section { background: var(--color-ink); color: #f1ece4; }
.braiding-section .wrap { padding: clamp(64px,8vw,112px) var(--edge); }
.braiding-section .intro { text-align: center; max-width: 640px; margin: 0 auto; }
.braiding-section h2 { font-weight: 300; font-size: clamp(32px,4.4vw,56px); line-height: 1.08; color: #f6f1e9; margin-top: 18px; }
.braiding-section .lede-visit { color: rgba(241,236,228,0.68); margin-top: 18px; font-size: 16.5px; line-height: 1.7; }
.braiding-section .gallery-full { columns: 5 260px; column-gap: 14px; margin-top: 44px; }
.braiding-section .gallery-full figure { margin: 0 0 14px; break-inside: avoid; border: 1px solid rgba(241,236,228,0.14); border-radius: var(--radius-sm); overflow: hidden; background: rgba(241,236,228,0.04); }
@media (max-width: 640px) { .braiding-section .gallery-full { columns: 2 160px; column-gap: 10px; } .braiding-section .gallery-full figure { margin-bottom: 10px; } }

/* ---------- Checklist services ---------- */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 4px 28px; margin-top: 8px; padding-top: 14px; border-top: 1px dashed var(--color-divider); }
.check-item { display: flex; gap: 12px; align-items: center; padding: 11px 4px; margin: 0 -4px; border-bottom: 1px solid var(--color-divider); font-size: 15px; border-radius: var(--radius-sm); transition: background 200ms ease; }
.check-item:hover { background: var(--gold-100); }
.check-item .mark { flex: none; width: 20px; height: 20px; border: 1px solid var(--gold-500); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--gold-700); font-size: 11px; }

/* ---------- Marquee ---------- */
.marquee-section { background: var(--color-ink); padding: clamp(34px,4vw,56px) 0; overflow: hidden; position: relative; }
.marquee-section .head { display: flex; align-items: center; gap: 16px; padding: 0 var(--edge); margin-bottom: clamp(22px,2.6vw,32px); }
.marquee-intro { padding-top: clamp(20px,3vw,28px); padding-bottom: clamp(40px,5vw,60px); color: #f1ece4; }
.marquee-intro h2 { font-weight: 300; font-size: clamp(28px,3.4vw,42px); margin-top: 16px; max-width: 18ch; }
.marquee-intro p { color: rgba(241,236,228,0.68); margin-top: 14px; max-width: 52ch; font-size: 16px; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: gbMarquee 50s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track .tile { flex: none; width: clamp(190px,19vw,268px); aspect-ratio: 4/5; border: 1px solid rgba(198,143,44,0.32); border-radius: var(--radius-md); overflow: hidden; }
.marquee-track .tile img { width: 100%; height: 100%; object-fit: cover; }
@keyframes gbMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 9px)); } }

/* ---------- Visit / contact ---------- */
.visit { background: var(--color-ink); color: #f1ece4; }
.visit .wrap { padding: clamp(64px,8vw,112px) var(--edge); }
.visit .intro { text-align: center; max-width: 620px; margin: 0 auto; }
.kicker.centered { justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; }
.visit h1 { font-weight: 300; font-size: clamp(38px,5.4vw,68px); line-height: 1.06; color: #f6f1e9; margin-top: 18px; }
.visit .intro .lede-visit { color: rgba(241,236,228,0.68); margin-top: 18px; font-size: 16.5px; line-height: 1.7; }

.visit-info { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 980px; margin: clamp(48px,6vw,72px) auto 0; align-items: start; }
@media (min-width: 640px) {
  .visit-info { grid-template-columns: repeat(2,1fr); }
  .visit-info .info-card:last-child { grid-column: 1 / -1; }
}
@media (min-width: 640px) and (max-width: 979px) {
  .visit-info .info-card:last-child .contact-rows { flex-direction: row; gap: clamp(24px,4vw,48px); }
  .visit-info .info-card:last-child .contact-row { flex: 1; border-bottom: none; padding: 0; border-left: 1px solid rgba(241,236,228,0.14); padding-left: clamp(24px,4vw,48px); }
  .visit-info .info-card:last-child .contact-row:first-child { border-left: none; padding-left: 0; }
}
@media (min-width: 980px) {
  .visit-info { grid-template-columns: repeat(3,1fr); }
  .visit-info .info-card:last-child { grid-column: auto; }
}
.info-card { border: 1px solid rgba(241,236,228,0.16); border-radius: var(--radius-md); padding: clamp(30px,3.2vw,38px); background: rgba(255,255,255,0.025); }
.info-card .kicker { margin-top: 0; }
.info-card .addr { font-family: var(--font-heading); font-size: clamp(21px,2.1vw,25px); margin-top: 16px; line-height: 1.4; }

.contact-rows { margin-top: 14px; display: flex; flex-direction: column; }
.contact-row { display: flex; flex-direction: column; gap: 5px; padding: 14px 0; border-bottom: 1px solid rgba(241,236,228,0.14); color: #f1ece4; }
.contact-row:last-child { padding-bottom: 0; border-bottom: none; }
.contact-row .label { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(241,236,228,0.5); }
.contact-row .value { font-family: var(--font-heading); font-size: clamp(17px,1.6vw,20px); transition: color 160ms ease; word-break: break-word; }
.contact-row:hover .value { color: var(--gold-300); }

.hours-table { margin-top: 16px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(241,236,228,0.14); font-size: 14.5px; }
.hours-row:last-child { padding-bottom: 0; border-bottom: none; }
.hours-row.today .day, .hours-row.today .time { color: var(--gold-300); }
.hours-row .time { font-feature-settings: 'tnum'; }

.map-section { max-width: 980px; margin: clamp(48px,6vw,64px) auto 0; }
.map-section .kicker { margin-bottom: 20px; }
.map-embed { border: 1px solid rgba(241,236,228,0.2); border-radius: var(--radius-md); overflow: hidden; }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: rgba(241,236,228,0.86); position: relative; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, rgba(198,143,44,0) 0%, var(--gold-500) 50%, rgba(198,143,44,0) 100%); }
.site-footer .wrap { padding: clamp(52px,6vw,76px) var(--edge) 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 44px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 44px; width: auto; }
.footer-wordmark { display: flex; flex-direction: column; line-height: 1.2; border-left: 1px solid rgba(241,236,228,0.22); padding-left: 14px; }
.footer-wordmark b { font-family: var(--font-heading); font-weight: 600; font-style: normal; font-size: 20px; letter-spacing: 0.08em; text-transform: uppercase; color: #f6f1e9; }
.footer-wordmark i { font-style: normal; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-300); font-weight: 500; }
.site-footer .brand-col p { margin-top: 18px; color: rgba(241,236,228,0.68); font-family: var(--font-heading); font-style: italic; font-size: 18px; line-height: 1.5; max-width: 32ch; }
.site-footer h4 { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 18px; font-weight: 500; }
.site-footer .links a { display: block; color: rgba(241,236,228,0.88); padding: 7px 0; font-size: 15.5px; border-bottom: 1px solid transparent; width: fit-content; }
.site-footer .links a:hover { color: var(--gold-300); border-bottom-color: var(--gold-500); }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 42px; height: 42px; border: 1px solid rgba(241,236,228,0.24); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: rgba(241,236,228,0.9); transition: border-color 180ms ease, color 180ms ease, background 180ms ease; }
.social-row a:hover { border-color: var(--gold-500); color: var(--gold-300); background: rgba(198,143,44,0.12); }
.site-footer .bottom { max-width: var(--content-max); margin: 0 auto; padding: 24px var(--edge) 40px; border-top: 1px solid rgba(241,236,228,0.14); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(241,236,228,0.6); margin-top: 44px; font-weight: 500; }

/* ---------- Utility ---------- */
.section-pad { padding: clamp(56px,7vw,104px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 800ms cubic-bezier(0.2,0.7,0.2,1), transform 800ms cubic-bezier(0.2,0.7,0.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(0.2,0.7,0.2,1), transform 700ms cubic-bezier(0.2,0.7,0.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 450ms; }

/* ---------- Floating actions ---------- */
.float-actions { position: fixed; right: clamp(14px,3vw,26px); bottom: clamp(14px,3vw,26px); z-index: 45; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.float-book, .float-top {
  opacity: 0; transform: translateY(14px) scale(0.96); pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.float-actions.show .float-book, .float-actions.show .float-top { opacity: 1; transform: none; pointer-events: auto; }
.float-book {
  display: flex; align-items: center; gap: 9px; background: var(--gold-500); color: #1a1712;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 20px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
}
.float-book:hover { background: var(--gold-400); color: #1a1712; }
.float-book svg { flex: none; }
.float-top {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg); color: var(--color-text);
  border: 1px solid var(--color-divider); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer; align-self: flex-end;
}
.float-top:hover { border-color: var(--gold-500); color: var(--gold-700); }

.btn-solid.with-icon, .float-book { display: inline-flex; align-items: center; gap: 9px; }
.btn-solid.with-icon svg { flex: none; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .float-book, .float-top { transition: opacity 1ms ease; }
}
