


:root {
  --black: #0d0d0d;
  --charcoal: #1a1a1a;
  --charcoal-mid: #242424;
  --charcoal-light: #2e2e2e;
  --surface: #181818;
  --olive: #5a6b3a;
  --olive-light: #6e8046;
  --olive-muted: #3d4a28;
  --red: #c8192e;
  --red-dark: #a01020;
  --white: #f0ede8;
  --white-dim: #b0aba4;
  --white-dimmer: #6e6a64;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-s: clamp(0.75rem, 1.5vw, 1rem);
  --space-m: clamp(1rem, 2.5vw, 1.75rem);
  --space-l: clamp(1.5rem, 4vw, 3rem);
  --space-xl: clamp(2.5rem, 7vw, 5rem);
  --space-xxl: clamp(4rem, 10vw, 8rem);

  --radius: 2px;
  --radius-m: 4px;

  --header-h: 64px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
table { border-collapse: collapse; }


.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}
.accent-red { color: var(--red); }
.accent-olive { color: var(--olive-light); }


.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: var(--space-s);
}
.section-label.light { color: var(--olive-light); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw + 0.5rem, 4rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-m);
}

.section-intro {
  max-width: 52ch;
  color: var(--white-dim);
  margin-bottom: var(--space-l);
}


.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7em 1.6em;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(240,237,232,0.35);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(240,237,232,0.08); }

.btn-outline {
  background: transparent;
  color: var(--olive-light);
  border: 2px solid var(--olive-light);
}
.btn-outline:hover { background: var(--olive-light); color: var(--black); }

.btn-large { font-size: 1.15rem; padding: 0.8em 2em; }


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(90,107,58,0.25);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-main { color: var(--white); }
.logo-accent { color: var(--red); margin-left: 0.15em; }
.logo:hover .logo-main { color: var(--white-dim); }
.logo:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.main-nav .nav-cta {
  color: var(--white);
  background: var(--red);
  padding: 0.4em 1em;
  border-radius: var(--radius);
}
.main-nav .nav-cta:hover { background: var(--red-dark); color: var(--white); }

.nav-toggle { display: none; }

@media (max-width: 720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--charcoal);
    border-bottom: 1px solid var(--charcoal-light);
    padding: 1rem;
    gap: 0.25rem;
  }
  .main-nav a {
    padding: 0.75em 1em;
    border-radius: var(--radius-m);
  }
  .main-nav .nav-cta {
    text-align: center;
    padding: 0.75em 1em;
    margin-top: 0.5rem;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.2s;
  }
  .nav-toggle:focus-visible { outline: 2px solid var(--red); }
}


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.78) 50%,
    rgba(13,13,13,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xxl);
  max-width: 800px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: var(--space-s);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw + 1rem, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-m);
}
.hero-sub {
  max-width: 50ch;
  color: var(--white-dim);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: var(--space-l);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-m);
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dimmer);
}
.badge-icon {
  font-size: 0.4em;
  color: var(--olive-light);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--white-dimmer);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}


.ticker-strip {
  background: var(--olive-muted);
  overflow: hidden;
  padding: 0.7rem 0;
  border-top: 1px solid var(--olive);
  border-bottom: 1px solid var(--olive);
}
.ticker-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.7);
}
.ticker-track .dot {
  font-size: 0.4em;
  vertical-align: middle;
  color: var(--olive-light);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.how-it-works {
  background: var(--charcoal);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}
.gear-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  opacity: 0.15;
  pointer-events: none;
}
.gear-visual img { object-position: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-l);
  position: relative;
  z-index: 1;
}
.step {
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
}
.step-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--olive-muted);
  flex-shrink: 0;
  min-width: 1.5ch;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.step-body p {
  color: var(--white-dim);
  line-height: 1.65;
}


.feature-strip {
  background: var(--surface);
  padding: var(--space-xxl) 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-m);
}
.feature-card {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-light);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.feature-card:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
}
.feature-card img {
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}
.feature-card-body {
  padding: var(--space-m);
  flex: 1;
}
.feature-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.feature-card-body p { color: var(--white-dim); }
.feature-card--accent { border-color: var(--olive-muted); }
.feature-card--accent .feature-card-body h3 { color: var(--olive-light); }


.occasions {
  background: var(--black);
  padding: var(--space-xxl) 0;
}
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--space-l);
}
.occasion-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--charcoal-light);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--charcoal);
  transition: border-color 0.25s;
}
.occasion-card:hover { border-color: var(--red); }
.occasion-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.occasion-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.occasion-card:hover .occasion-img-wrap img { transform: scale(1.04); }
.occasion-body {
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.occasion-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.occasion-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.occasion-body p { color: var(--white-dim); flex: 1; }


.cta-banner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-banner-bg img { object-position: center top; }
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(13,13,13,0.97) 0%,
    rgba(13,13,13,0.88) 55%,
    rgba(13,13,13,0.6) 100%
  );
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
  max-width: 680px;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw + 0.5rem, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-m);
}
.cta-sub {
  color: var(--white-dim);
  max-width: 45ch;
  margin-bottom: var(--space-l);
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}


.info-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--charcoal-light);
  padding: var(--space-xl) 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-l);
}
.info-block { display: flex; flex-direction: column; gap: 0.5rem; }
.info-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 0.25rem;
}
.info-block p { color: var(--white-dim); line-height: 1.5; }
.info-link {
  color: var(--white-dim);
  font-weight: 500;
  transition: color 0.2s;
}
.info-link:hover { color: var(--white); }
.info-link:focus-visible { outline: 2px solid var(--red); }
.hours-table td {
  padding: 0.15em 1.5em 0.15em 0;
  color: var(--white-dim);
  font-size: 0.95rem;
}
.hours-table td:first-child {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}


.site-footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-light);
  padding: var(--space-xl) 0 var(--space-m);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-l);
  justify-content: space-between;
  margin-bottom: var(--space-l);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-tagline {
  color: var(--white-dimmer);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible { outline: 2px solid var(--red); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-contact a, .footer-contact span {
  color: var(--white-dim);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact a:focus-visible { outline: 2px solid var(--red); }
.footer-bottom {
  border-top: 1px solid var(--charcoal-light);
  padding-top: var(--space-m);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-dimmer);
  letter-spacing: 0.05em;
}


@media (max-width: 600px) {
  .hero-heading { line-height: 1; }
  .hero-scroll-hint { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .cta-actions { flex-direction: column; }
}

@media (min-width: 900px) {
  .how-it-works .container { padding-right: calc(35% + 2rem); }
}


:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}






.about-hero {
  position: relative;
  min-height: 68svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(13,13,13,0.55) 0%,
    rgba(13,13,13,0.85) 60%,
    rgba(13,13,13,0.97) 100%
  );
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xxl);
  max-width: 760px;
}


.about-story {
  background: var(--charcoal);
  padding: var(--space-xxl) 0;
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-story-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.about-story-text p {
  color: var(--white-dim);
  line-height: 1.7;
}
.about-story-text strong { color: var(--white); }
.about-story-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--charcoal-light);
  position: relative;
}
.about-story-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--olive-muted);
  border-radius: var(--radius-m);
  pointer-events: none;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
  .about-story-img {
    aspect-ratio: 16/9;
    order: -1;
  }
}


.about-gear {
  background: var(--surface);
  padding: var(--space-xxl) 0;
}
.gear-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
}
.gear-pillar {
  background: var(--charcoal);
  border: 1px solid var(--charcoal-light);
  border-top: 3px solid var(--olive);
  border-radius: var(--radius-m);
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s, transform 0.2s;
}
.gear-pillar:hover {
  border-color: var(--olive-light);
  transform: translateY(-3px);
}
.gear-pillar-icon {
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.05em;
}
.gear-pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}
.gear-pillar p { color: var(--white-dim); font-size: 0.95rem; line-height: 1.6; }

.gear-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-s);
}
.gear-img-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--charcoal-light);
}
.gear-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gear-img-item:hover img { transform: scale(1.05); }
@media (max-width: 600px) {
  .gear-img-row { grid-template-columns: 1fr; }
}


.about-sessions {
  background: var(--black);
  padding: var(--space-xxl) 0;
}
.about-sessions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-sessions-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--charcoal-light);
  position: relative;
}
.about-sessions-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.6) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-sessions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-sessions-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.about-sessions-text p { color: var(--white-dim); line-height: 1.7; }

.sessions-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  margin-bottom: var(--space-s);
}
.sessions-list li {
  display: flex;
  gap: var(--space-s);
  align-items: flex-start;
}
.sessions-list-marker {
  font-size: 0.55rem;
  color: var(--red);
  margin-top: 0.45em;
  flex-shrink: 0;
}
.sessions-list strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
  margin-bottom: 0.2rem;
}
.sessions-list p { color: var(--white-dim); font-size: 0.95rem; margin: 0; }

@media (max-width: 768px) {
  .about-sessions-inner {
    grid-template-columns: 1fr;
  }
  .about-sessions-img {
    aspect-ratio: 16/9;
  }
}


.about-who {
  background: var(--charcoal);
  padding: var(--space-xxl) 0;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-m);
}
.who-card {
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-light);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s;
}
.who-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.who-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.who-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.who-card:hover .who-img img { transform: scale(1.04); }
.who-body {
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.who-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--white);
}
.who-body p { color: var(--white-dim); font-size: 0.95rem; line-height: 1.6; }



.contact-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    170deg,
    rgba(13,13,13,0.55) 0%,
    rgba(13,13,13,0.88) 60%,
    rgba(13,13,13,0.98) 100%
  );
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + var(--space-xl));
  padding-bottom: var(--space-xxl);
  max-width: 760px;
}

.contact-main {
  background: var(--charcoal);
  padding: var(--space-xxl) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: var(--space-l);
  border-bottom: 1px solid var(--charcoal-light);
}
.contact-block:last-child { border-bottom: none; padding-bottom: 0; }

.contact-primary-link {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
  line-height: 1.1;
}
.contact-primary-link:hover { color: var(--red); }
.contact-primary-link:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.contact-primary-link--email {
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.02em;
  text-transform: none;
  word-break: break-all;
}
.contact-note {
  color: var(--white-dim);
  font-size: 0.95rem;
  max-width: 42ch;
}
.contact-address {
  color: var(--white-dim);
  line-height: 1.7;
  font-size: 1rem;
}

.hours-table--full td {
  padding: 0.3em 2em 0.3em 0;
}

.contact-visual-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.contact-venue-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--charcoal-light);
}
.contact-venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.contact-venue-img:hover img { transform: scale(1.03); }

.contact-callout {
  background: var(--surface);
  border: 1px solid var(--olive-muted);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.callout-inner {
  padding: var(--space-m) var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.callout-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.callout-body {
  color: var(--white-dim);
  font-size: 0.95rem;
  max-width: 40ch;
}

.contact-map-section {
  background: var(--black);
  padding: var(--space-xxl) 0 0;
}
.contact-map-section .container {
  padding-bottom: var(--space-l);
}
.map-photo-wrap {
  position: relative;
  aspect-ratio: 21/7;
  overflow: hidden;
  min-height: 280px;
}
.map-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}
.map-address-badge {
  position: absolute;
  bottom: var(--space-l);
  left: clamp(1rem, 4vw, 3rem);
  background: rgba(13,13,13,0.92);
  border: 1px solid var(--charcoal-light);
  border-left: 3px solid var(--olive-light);
  border-radius: var(--radius-m);
  padding: var(--space-m) var(--space-l);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.map-address-badge span {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .map-photo-wrap { aspect-ratio: 16/9; min-height: 220px; }
  .map-address-badge { bottom: var(--space-m); }
}

.contact-faq {
  background: var(--charcoal);
  padding: var(--space-xxl) 0;
  border-top: 1px solid var(--charcoal-light);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-s);
}
@media (max-width: 600px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--charcoal-light);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--olive-muted); }
.faq-item:hover { border-color: var(--olive); }

.faq-question {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: var(--space-m);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
  line-height: 1.2;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4em;
  font-weight: 400;
  color: var(--olive-light);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-question::after { content: '\2212'; }
.faq-question:hover { color: var(--olive-light); }
.faq-question:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

.faq-answer {
  padding: 0 var(--space-m) var(--space-m);
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid var(--charcoal-light);
  padding-top: var(--space-s);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
