/* ==========================================================================
   The SandLot — Sports Bar & Grill  /  Cocktail Collection
   Dark luxury design system. No frameworks, no build step.
   ========================================================================== */

:root {
  --ink: #0b0b0d;
  --ink-2: #101013;
  --ink-3: #16161b;
  --ink-4: #1d1d24;
  --line: rgba(201, 163, 95, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --brass: #c9a35f;
  --brass-bright: #e3c078;
  --brass-deep: #8f6f3c;
  --platinum: #d6d6d9;
  --text: #eae7e0;
  --muted: #a39f95;
  --danger: #d0684f;
  --emerald: #1d2e27;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;

  --w-max: 1200px;
  --w-narrow: 820px;
  --radius: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--brass-bright); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--brass); }

::selection { background: var(--brass); color: var(--ink); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: 10px 18px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--platinum);
  letter-spacing: 0.045em;
  line-height: 1.02;
  margin: 0 0 0.35em;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.4rem, 9vw, 7.2rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); letter-spacing: 0.07em; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.kicker::before,
.kicker.k-both::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.lead { font-size: 1.15rem; font-weight: 300; color: var(--muted); max-width: 62ch; }
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--brass-bright);
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.wrap { width: min(var(--w-max), calc(100% - 48px)); margin: 0 auto; }
.wrap-narrow { width: min(var(--w-narrow), calc(100% - 48px)); margin: 0 auto; }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(48px, 7vw, 90px) 0; }
.section-dark { background: var(--ink-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }

.center { text-align: center; }
.center .kicker::after { content: ""; width: 34px; height: 1px; background: var(--brass); opacity: 0.7; }

@media (max-width: 880px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid var(--brass);
  color: var(--brass-bright);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn:hover { background: var(--brass); color: var(--ink); }
.btn-solid { background: var(--brass); color: var(--ink); }
.btn-solid:hover { background: var(--brass-bright); border-color: var(--brass-bright); color: var(--ink); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.25); color: var(--platinum); }
.btn-ghost:hover { border-color: var(--platinum); background: var(--platinum); color: var(--ink); }
.btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 11, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 52px; height: 52px; transition: width 0.35s var(--ease), height 0.35s var(--ease); }
.site-header.scrolled .brand img { width: 42px; height: 42px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--platinum);
  line-height: 1;
}
.brand-name small { display: block; font-size: 0.58rem; letter-spacing: 0.42em; color: var(--brass); margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--brass-bright); border-bottom-color: var(--brass); }
.main-nav a.nav-cc {
  color: var(--brass);
  border: 1px solid var(--brass-deep);
  padding: 9px 18px;
  border-radius: 2px;
}
.main-nav a.nav-cc:hover { background: var(--brass); color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--platinum);
  width: 46px;
  height: 46px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 0;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--platinum);
  margin: 4px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 13, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateY(-102%);
    transition: transform 0.45s var(--ease);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { font-size: 1.05rem; }
  body.nav-locked { overflow: hidden; }
  .nav-toggle { position: relative; z-index: 110; }
  .nav-toggle.open span { opacity: 0; }
  .nav-toggle.open::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open::after { transform: translateY(-6px) rotate(-45deg); }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-media img.kenburns { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.55) 0%, rgba(11, 11, 13, 0.15) 40%, rgba(11, 11, 13, 0.88) 88%, var(--ink) 100%);
}
.hero-content { padding: 0 0 clamp(64px, 9vh, 110px); }
.hero .tagline {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 6px;
}
.hero .btn-row { margin-top: 34px; }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: 0.35em;
  color: var(--brass);
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  right: 34px;
  width: 1px;
  height: 68px;
  background: linear-gradient(var(--brass), transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%, 100% { transform: scaleY(0.4); transform-origin: top; } 50% { transform: scaleY(1); } }

/* Quick info strip under hero */
.info-strip { margin-top: -1px; background: var(--ink-2); border-block: 1px solid var(--line); }
.info-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.info-cell {
  padding: 30px clamp(16px, 3vw, 44px);
  border-left: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-cell:first-child { border-left: 0; }
.info-cell .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}
.info-cell strong { font-weight: 500; font-size: 1.02rem; color: var(--platinum); }
.info-cell span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 880px) {
  .info-strip .wrap { grid-template-columns: 1fr; }
  .info-cell { border-left: 0; border-top: 1px solid var(--line-soft); }
  .info-cell:first-child { border-top: 0; }
}

/* --------------------------------------------------------------------------
   Cards, media frames
   -------------------------------------------------------------------------- */

.card {
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line); }

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 163, 95, 0.28);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.media-frame:hover img { transform: scale(1.04); }

.photo-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.photo-card:hover img { transform: scale(1.05); }
.photo-card .pc-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 22px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--platinum);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Specials / hours tables
   -------------------------------------------------------------------------- */

.specials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.special {
  background: var(--ink-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  position: relative;
}
.special.today { border-color: var(--brass); box-shadow: 0 0 0 1px var(--brass) inset; }
.special.today::before {
  content: "Today";
  position: absolute;
  top: -11px;
  right: 16px;
  background: var(--brass);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.special .day {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--brass);
  text-transform: uppercase;
}
.special .deal { color: var(--platinum); font-weight: 400; margin-top: 6px; }
.special .note { color: var(--muted); font-size: 0.88rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 13px 4px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.98rem;
}
.hours-table td:last-child { text-align: right; color: var(--platinum); font-weight: 400; }
.hours-table tr.closed td:last-child { color: var(--muted); font-style: italic; }
.hours-table tr.today-row td { color: var(--brass-bright); }

.tba {
  display: inline-block;
  border: 1px dashed rgba(201, 163, 95, 0.5);
  color: var(--brass);
  border-radius: 3px;
  padding: 1px 10px;
  font-size: 0.82em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Menu
   -------------------------------------------------------------------------- */

.menu-note {
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(201, 163, 95, 0.08), transparent 60%);
  border-radius: var(--radius);
  padding: 20px 26px;
  color: var(--brass-bright);
  font-size: 0.95rem;
  display: flex;
  gap: 14px;
  align-items: center;
}

.menu-section { margin-top: clamp(40px, 6vw, 70px); }
.menu-section > h3 {
  color: var(--brass);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-weight: 500; color: var(--platinum); white-space: nowrap; }
.menu-item .mi-dots { flex: 1; border-bottom: 1px dotted rgba(255, 255, 255, 0.18); transform: translateY(-4px); }
.menu-item .mi-price { color: var(--brass-bright); font-weight: 500; white-space: nowrap; }
.menu-item .mi-desc { display: block; color: var(--muted); font-size: 0.92rem; margin-top: 3px; }
.menu-item .mi-head { min-width: 0; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

label.field { display: block; }
label.field .flabel {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
select, textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brass); }
textarea { min-height: 140px; resize: vertical; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }

.form-status { margin-top: 16px; font-size: 0.95rem; color: var(--brass-bright); min-height: 1.4em; }
.form-status.error { color: var(--danger); }

/* --------------------------------------------------------------------------
   Order cards
   -------------------------------------------------------------------------- */

.order-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.order-card .oc-name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.1em; color: var(--platinum); text-transform: uppercase; }
.order-card p { color: var(--muted); margin: 0 0 10px; font-size: 0.95rem; }
.badge-soon {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--muted);
  padding: 4px 10px;
  border-radius: 2px;
}
.badge-live { background: var(--brass); color: var(--ink); }

/* --------------------------------------------------------------------------
   Gallery + lightbox
   -------------------------------------------------------------------------- */

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; grid-auto-flow: dense; }
.gallery a { display: block; border-radius: 8px; overflow: hidden; aspect-ratio: 3 / 4; position: relative; }
.gallery a.wide { aspect-ratio: 3 / 2; grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); }
.gallery a:hover img { transform: scale(1.06); }
@media (max-width: 560px) { .gallery a.wide { grid-column: span 1; aspect-ratio: 3 / 4; } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 5, 6, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 6px; box-shadow: var(--shadow); }
.lightbox button {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Upstairs teaser (CC crossover)
   -------------------------------------------------------------------------- */

.cc-teaser {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid var(--line);
}
.cc-teaser .bgimg { position: absolute; inset: 0; z-index: -2; }
.cc-teaser .bgimg img { width: 100%; height: 100%; object-fit: cover; }
.cc-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.93) 25%, rgba(8, 10, 9, 0.55) 70%, rgba(8, 10, 9, 0.35));
}
.cc-teaser .inner { padding: clamp(80px, 12vw, 150px) 0; max-width: 560px; }
.cc-teaser .cc-mark { height: 120px; width: auto; margin-bottom: 26px; }

/* --------------------------------------------------------------------------
   Cocktail Collection page theme
   -------------------------------------------------------------------------- */

body.theme-cc {
  --brass: #d4b478;
  --brass-bright: #ecd39b;
  --ink-2: #0e100f;
  --ink-3: #141715;
}
body.theme-cc .site-header.scrolled { background: rgba(8, 10, 9, 0.92); }
.cc-hero-title {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: 0.16em;
}
.cc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 4px;
  color: var(--brass);
}
.cc-divider::before, .cc-divider::after { content: ""; height: 1px; width: 72px; background: linear-gradient(90deg, transparent, var(--brass)); }
.cc-divider::after { background: linear-gradient(90deg, var(--brass), transparent); }
.cc-divider img { height: 46px; width: auto; }

/* --------------------------------------------------------------------------
   Team / about
   -------------------------------------------------------------------------- */

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.team-card { text-align: center; padding: 36px 26px; }
.team-card .avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--ink-4), var(--ink-2));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brass);
  letter-spacing: 0.08em;
  overflow: hidden;
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .tname { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.1em; color: var(--platinum); text-transform: uppercase; }
.team-card .trole { color: var(--brass); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; margin: 4px 0 12px; }
.team-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* --------------------------------------------------------------------------
   Map & footer
   -------------------------------------------------------------------------- */

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  filter: grayscale(1) invert(0.9) hue-rotate(190deg) brightness(0.9) contrast(0.92);
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

.site-footer {
  background: #080809;
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 90px) 0 0;
  font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 60px); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; color: var(--muted); }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--brass-bright); }
.footer-brand img { width: 84px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); max-width: 34ch; }

.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--line-soft);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(163, 159, 149, 0.65);
  font-size: 0.82rem;
}

.social-row { display: flex; gap: 14px; margin-top: 14px; }
.social-row a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  transition: all 0.3s var(--ease);
}
.social-row a:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: clamp(150px, 22vh, 230px) 0 clamp(56px, 8vw, 90px);
  overflow: hidden;
  isolation: isolate;
}
.page-hero .bgimg { position: absolute; inset: 0; z-index: -2; }
.page-hero .bgimg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 11, 13, 0.72), rgba(11, 11, 13, 0.94) 78%, var(--ink));
}
.page-hero h1 { font-size: clamp(2.8rem, 6.5vw, 4.6rem); }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img.kenburns { animation: none; }
  .scroll-cue { display: none; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
