/* custom.css — Anvil Axe Co. design layer
 *
 * Loads after theme.css and site.css. Preserved by sites update-template.
 * Figma: Anvil Axe Co_Home Page (desktop 1920 + mobile 378)
 * Fonts: Oswald (display) + Lato (body)
 * Palette: #0c0a08 dark, #c95a1e primary, #e07b2a accent, #f0eae0 cream, #9a8572 muted
 */

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Oswald:wght@500;600;700&display=swap");

/* ── page surface ───────────────────────────────────────────────────── */
html, body {
  background: var(--color-dark) !important;
  color: var(--color-cream);
  font-family: var(--font-body);
}

body {
  font-weight: 400;
  line-height: 1.6;
}

/* ── type ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4,
.aa-display,
.btn-primary,
.btn-outline,
body > header .navlink,
body > header .zk-navgroup-btn {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── buttons (Figma prototype hover) ──────────────────────────────────
   Primary: solid #c95a1e → lift + glow + warmer fill.
   Outline: border-only → fill slides in from the left (pseudo), cream type.
   Overrides kit site.css brightness/translate so Anvil owns the motion. */
.btn-primary,
a.btn-primary,
.btn-outline,
a.btn-outline,
.aa-btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 !important;
  padding: 0.9rem 1.75rem !important;
  font-family: var(--font-display) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms ease !important;
}

.btn-primary,
a.btn-primary {
  background: var(--color-primary) !important;
  color: var(--color-cream) !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: 0 0 0 0 rgb(201 90 30 / 0);
  filter: none !important;
}
.btn-primary:hover,
a.btn-primary:hover,
.btn-primary:focus-visible,
a.btn-primary:focus-visible {
  background: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
  color: var(--color-cream) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 10px 28px rgb(201 90 30 / 0.38),
    0 0 0 1px rgb(224 123 42 / 0.35) !important;
  letter-spacing: 0.18em !important;
  filter: none !important;
}
.btn-primary:active,
a.btn-primary:active {
  transform: translateY(-1px) scale(0.99) !important;
  box-shadow: 0 4px 14px rgb(201 90 30 / 0.28) !important;
}

.btn-outline,
a.btn-outline,
.aa-btn-outline {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  box-shadow: none !important;
  filter: none !important;
  z-index: 0;
}
/* Sliding fill from the left — common Figma CTA interaction */
.btn-outline::before,
a.btn-outline::before,
.aa-btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover,
a.btn-outline:hover,
.aa-btn-outline:hover,
.btn-outline:focus-visible,
a.btn-outline:focus-visible,
.aa-btn-outline:focus-visible {
  background: transparent !important;
  color: var(--color-cream) !important;
  border-color: var(--color-primary) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 24px rgb(201 90 30 / 0.28) !important;
  letter-spacing: 0.18em !important;
  filter: none !important;
}
.btn-outline:hover::before,
a.btn-outline:hover::before,
.aa-btn-outline:hover::before,
.btn-outline:focus-visible::before,
a.btn-outline:focus-visible::before,
.aa-btn-outline:focus-visible::before {
  transform: scaleX(1);
}
.btn-outline:active,
a.btn-outline:active,
.aa-btn-outline:active {
  transform: translateY(-1px) !important;
}

/* Header Book Now chip — same family, slightly tighter */
body > header .btn-primary,
body > header a.btn-primary,
.aa-header-cta {
  transition:
    color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1),
    letter-spacing 220ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}
body > header .btn-primary:hover,
body > header a.btn-primary:hover,
.aa-header-cta:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 22px rgb(201 90 30 / 0.4) !important;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  a.btn-primary,
  .btn-outline,
  a.btn-outline,
  .aa-btn-outline,
  .btn-outline::before,
  a.btn-outline::before,
  .aa-btn-outline::before {
    transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease !important;
  }
  .btn-primary:hover,
  a.btn-primary:hover,
  .btn-outline:hover,
  a.btn-outline:hover,
  .aa-btn-outline:hover,
  body > header .btn-primary:hover,
  .aa-header-cta:hover {
    transform: none !important;
    box-shadow: none !important;
    letter-spacing: 0.14em !important;
  }
}

/* ── header (Figma: utility strip + logo | nav | Book Now) ───────────
   Interior pages: sticky — sits in document flow so it never covers content.
   Homepage only: fixed overlay so the hero can bleed under a transparent bar. */
body > header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: rgba(12, 10, 8, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgb(201 90 30 / 0.18);
  transition: background-color 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}
/* Home: full-bleed hero under the bar (transparent until scroll) */
body:has(.aa-home) > header {
  position: fixed;
  inset-inline: 0;
  background: rgba(12, 10, 8, 0.72);
  border-bottom-color: transparent;
}
body > header.aa-scrolled,
body > header.aa-compact,
body:has(.aa-home) > header.aa-scrolled,
body:has(.aa-home) > header.aa-compact {
  background: rgba(12, 10, 8, 0.97);
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.45);
  border-bottom-color: rgb(201 90 30 / 0.18);
}
/* Fallback when :has() isn’t available — JS adds .aa-is-home on body */
body.aa-is-home > header {
  position: fixed;
  inset-inline: 0;
  background: rgba(12, 10, 8, 0.72);
  border-bottom-color: transparent;
}
body.aa-is-home > header.aa-scrolled,
body.aa-is-home > header.aa-compact {
  background: rgba(12, 10, 8, 0.97);
  border-bottom-color: rgb(201 90 30 / 0.18);
}

/* Soft compact: same chrome, shorter — hide utility, shrink logo/padding */
body > header .aa-header-bar,
body > header > div.aa-header-bar,
body > header > div {
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.55rem 1.5rem 0.85rem;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  border: 0;
  background: transparent;
  transition: padding 220ms ease;
}
body > header.aa-compact .aa-header-bar,
body > header.aa-compact > div.aa-header-bar,
body > header.aa-compact > div {
  padding: 0.35rem 1.25rem;
}

.aa-header-shell {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: gap 220ms ease;
}
body > header.aa-compact .aa-header-shell {
  gap: 0;
}

/* Top utility: phone + socials, right-aligned — hides when compact */
.aa-header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  min-height: 1.25rem;
  max-height: 2rem;
  opacity: 1;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 180ms ease, margin 220ms ease;
}
body > header.aa-compact .aa-header-top {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
}
.aa-header-phone {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary) !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}
.aa-header-phone:hover {
  color: var(--color-accent) !important;
}
.aa-header-top-rule {
  width: 1px;
  height: 0.9rem;
  background: var(--color-primary);
  opacity: 0.7;
}
.aa-header-social {
  display: inline-flex;
  color: var(--color-primary) !important;
  opacity: 0.95;
}
.aa-header-social:hover {
  color: var(--color-accent) !important;
}

/* Main row: logo | nav | CTA */
.aa-header-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  min-height: 3.5rem;
  transition: min-height 220ms ease, gap 220ms ease;
}
body > header.aa-compact .aa-header-main {
  min-height: 2.5rem;
  gap: 0.65rem 1rem;
}
.aa-header-main > a:first-child {
  display: flex;
  align-items: center;
  flex: none;
}
body > header a img,
.aa-header-main img {
  height: 4.75rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  display: block;
  transition: height 220ms ease, max-width 220ms ease;
}
body > header.aa-compact a img,
body > header.aa-compact .aa-header-main img {
  height: 2.35rem !important;
  max-width: 5.5rem;
}
body > header [data-site-title],
.aa-header-main [data-site-title] {
  display: none !important;
}

.aa-header-navwrap {
  min-width: 0;
  display: flex;
  justify-content: center;
}
.aa-header-nav,
body > header nav.aa-header-nav,
body > header nav[data-nav].aa-header-nav {
  display: none; /* mobile: hamburger only */
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.15rem;
  max-width: 100%;
}

.aa-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}

/* Mobile call button — orange phone icon (Figma prototype) */
.aa-call-btn {
  display: none; /* desktop: phone is in the top utility strip */
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  flex: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-cream) !important;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}
.aa-call-btn:hover {
  background: var(--color-accent);
  transform: scale(1.05);
}
.aa-call-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
/* Theme toggle is brand-noise on this dark site */
body > header [data-zk-theme] {
  display: none !important;
}

body > header .navlink,
body > header .zk-navgroup-btn,
.aa-header-nav .navlink {
  color: var(--color-muted) !important;
  font-family: var(--font-display) !important;
  font-size: 0.8125rem !important; /* 13px — Figma-ish */
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.35rem 0 !important;
  white-space: nowrap;
  background: none !important;
  border: 0 !important;
  position: relative;
  line-height: 1.2;
}
body > header .navlink:hover,
body > header .navlink.navlink-active,
.aa-header-nav .navlink:hover,
.aa-header-nav .navlink.navlink-active {
  color: var(--color-cream) !important;
}
body > header .navlink::after,
.aa-header-nav .navlink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: width 180ms ease;
  border-radius: 99px;
}
body > header .navlink:hover::after,
body > header .navlink.navlink-active::after,
.aa-header-nav .navlink:hover::after,
.aa-header-nav .navlink.navlink-active::after {
  width: 100%;
}

.aa-header-cta,
a.aa-header-cta {
  display: inline-flex !important;
  flex: none;
  padding: 0.75rem 1.45rem !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.12em !important;
  white-space: nowrap;
  min-height: 2.85rem;
  transition: padding 220ms ease, font-size 220ms ease, min-height 220ms ease;
}
body > header.aa-compact .aa-header-cta {
  padding: 0.55rem 1.1rem !important;
  font-size: 0.8rem !important;
  min-height: 2.4rem;
}
body > header.aa-compact .aa-call-btn {
  width: 2.4rem;
  height: 2.4rem;
}
body > header.aa-compact .navlink,
body > header.aa-compact .aa-header-nav .navlink {
  font-size: 0.72rem !important;
  letter-spacing: 0.05em !important;
  padding: 0.2rem 0 !important;
}
body > header.aa-compact .aa-header-nav,
body > header.aa-compact nav.aa-header-nav {
  gap: 0.1rem 0.75rem;
}

/* Mobile menu button color on dark header */
body > header .zk-mnav-btn {
  color: var(--color-cream) !important;
}
body > header .zk-mnav-panel {
  background: #120e0b;
  border: 1px solid rgb(201 90 30 / 0.35);
  color: var(--color-cream);
}
body > header .zk-mnav-panel .navlink {
  display: block;
  padding: 0.7rem 1rem !important;
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
  white-space: normal;
}
body > header .zk-navgroup-panel {
  background: var(--color-dark);
  border: 1px solid rgb(201 90 30 / 0.35);
}
body > header .zk-navgroup-item {
  color: var(--color-cream) !important;
}

/* Desktop: show the full nav row */
@media (min-width: 1100px) {
  .aa-header-nav,
  body > header nav.aa-header-nav,
  body > header nav[data-nav].aa-header-nav {
    display: flex !important;
  }
  body > header .zk-mnav {
    display: none !important;
  }
}
/* Mid widths: slightly tighter nav so it still fits */
@media (min-width: 1100px) and (max-width: 1280px) {
  .aa-header-nav {
    gap: 0.1rem 0.7rem;
  }
  body > header .navlink,
  .aa-header-nav .navlink {
    font-size: 0.72rem !important;
    letter-spacing: 0.05em !important;
  }
  body > header a img,
  .aa-header-main img {
    height: 3.75rem;
  }
}
@media (max-width: 1099.98px) {
  .aa-header-top {
    display: none; /* phone is the call icon in the main row */
  }
  .aa-header-main {
    grid-template-columns: auto 1fr auto;
  }
  .aa-header-navwrap {
    display: none;
  }
  body > header a img,
  .aa-header-main img {
    height: 3.5rem;
  }
  /* Show phone CTA; hide text Book Now on narrow phones (call is primary) */
  .aa-call-btn {
    display: inline-flex !important;
  }
  .aa-header-cta {
    display: none !important;
  }
}
@media (min-width: 480px) and (max-width: 1099.98px) {
  .aa-header-cta {
    display: inline-flex !important;
    padding: 0.65rem 1.15rem !important;
    font-size: 0.85rem !important;
  }
}

/* ── image lightbox ─────────────────────────────────────────────────── */
.aa-lb-trigger {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  width: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
}
.aa-lb-trigger img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 280ms ease, filter 280ms ease;
}
.aa-lb-trigger:hover img {
  filter: brightness(1.06);
}
.aa-lb-trigger::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgb(12 10 8 / 0.72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f0eae0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center / 1.1rem no-repeat;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.aa-lb-trigger:hover::after {
  opacity: 1;
  background-color: var(--color-primary);
}

.aa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Keep room for the close button; never let content push past the viewport */
  padding: 3.5rem 1.25rem 1.5rem;
  box-sizing: border-box;
  background: rgb(8 6 5 / 0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  overflow: auto;
}
.aa-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.aa-lightbox[hidden] {
  display: none !important;
}
.aa-lightbox.is-open[hidden] {
  display: flex !important;
}
.aa-lightbox-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* % max-height is useless without a fixed parent height — use viewport units */
  width: min(1100px, 100%);
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  min-height: 0;
}
.aa-lightbox-figure img {
  display: block;
  /* Fit entire image in view (tall product shot was overflowing) */
  max-width: 100%;
  max-height: calc(100vh - 6.5rem);
  max-height: calc(100dvh - 6.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.55);
  border: 1px solid rgb(201 90 30 / 0.25);
}
.aa-lightbox-cap {
  flex-shrink: 0;
  margin: 0.65rem 0 0;
  max-width: 100%;
  text-align: center;
  color: rgb(240 234 224 / 0.8);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.aa-lightbox-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgb(12 10 8 / 0.75);
  color: var(--color-cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 150ms ease;
}
.aa-lightbox-close:hover {
  background: var(--color-primary);
}
body.aa-lb-open {
  overflow: hidden;
}

/* ── hero ───────────────────────────────────────────────────────────── */
.aa-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-cream);
  overflow: hidden;
  background: #0c0a08 center / cover no-repeat;
}
.aa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Stronger scrim so body copy stays readable on busy bar photos */
  background:
    radial-gradient(ellipse at 50% 42%, rgba(201, 90, 30, 0.1) 0%, transparent 50%),
    linear-gradient(
      180deg,
      rgba(12, 10, 8, 0.72) 0%,
      rgba(12, 10, 8, 0.55) 32%,
      rgba(12, 10, 8, 0.62) 55%,
      rgba(12, 10, 8, 0.88) 82%,
      #0c0a08 100%
    );
  pointer-events: none;
}
.aa-hero-inner {
  position: relative;
  z-index: 1;
  /* Wide enough for “Where the Party” as a single line at Figma-scale type */
  max-width: min(72rem, 100%);
  width: 100%;
  padding: 8.5rem 1.5rem 5rem;
}
.aa-hero h1 {
  /* Fluid but capped so the first line doesn’t wrap mid-phrase on mid widths */
  font-size: clamp(2.5rem, 6.2vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 18px rgb(0 0 0 / 0.55);
  margin: 0 auto;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: none;
}
.aa-hero h1.aa-title-stack {
  align-items: center;
}
.aa-hero h1 .aa-title-line {
  display: block;
  line-height: 0.98;
  white-space: nowrap;
}
.aa-hero h1 .aa-accent {
  color: var(--color-accent);
}
/* Very narrow phones: allow wrap rather than overflowing the viewport */
@media (max-width: 379.98px) {
  .aa-hero h1 .aa-title-line {
    white-space: normal;
  }
}
.aa-hero-lead {
  margin: 1.35rem auto 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
  /* Full cream + shadow — was 0.75 opacity on a busy photo */
  color: #f5f0e8;
  font-weight: 400;
  text-shadow:
    0 1px 2px rgb(0 0 0 / 0.9),
    0 2px 14px rgb(0 0 0 / 0.65);
}
.aa-hero .btn-primary {
  margin-top: 1.85rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.35);
}

/* ── sponsor strip (drag / swipe / auto-scroll parade) ──────────────── */
.aa-sponsors {
  position: relative;
  background: #0c0a08;
  border-block: 1px solid rgb(201 90 30 / 0.15);
  padding: 1.25rem 0;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* allow vertical page scroll; JS handles horizontal */
}
/* Soft edge fades so logos don't clip hard at the sides */
.aa-sponsors::before,
.aa-sponsors::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 2.5rem;
  z-index: 2;
  pointer-events: none;
}
.aa-sponsors::before {
  left: 0;
  background: linear-gradient(90deg, #0c0a08 0%, transparent 100%);
}
.aa-sponsors::after {
  right: 0;
  background: linear-gradient(270deg, #0c0a08 0%, transparent 100%);
}
.aa-sponsors-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  align-items: center;
  cursor: grab;
  will-change: transform;
  /* animation driven by JS (Stage Stop character-parade model) */
}
.aa-sponsors.is-dragging .aa-sponsors-track {
  cursor: grabbing;
}
.aa-sponsors-track img {
  height: 2.25rem;
  width: auto;
  max-width: 8rem;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0) invert(1);
  pointer-events: none; /* drag is on the track, not individual imgs */
  -webkit-user-drag: none;
  user-select: none;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .aa-sponsors-track {
    /* Auto-scroll off in JS; still draggable */
  }
}

/* ── section chrome ─────────────────────────────────────────────────── */
.aa-section {
  padding: 5rem 1.5rem;
  background: var(--color-dark);
  color: var(--color-cream);
}
.aa-section-inner {
  max-width: 80rem;
  margin-inline: auto;
}
.aa-kicker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.35rem;
}
.aa-title {
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--color-cream);
}
.aa-title .aa-muted {
  color: var(--color-muted);
}
.aa-body {
  margin-top: 1.15rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(255 255 255 / 0.88);
  font-weight: 300;
  max-width: 36rem;
}

/* ── event types (split) ────────────────────────────────────────────── */
.aa-events {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .aa-events {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}
.aa-photo {
  position: relative;
}
.aa-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.aa-photo .aa-lb-trigger img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.aa-photo .aa-stat {
  z-index: 2;
  pointer-events: none;
}
.aa-photo-corners::before,
.aa-photo-corners::after {
  content: "";
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  border-color: var(--color-accent);
  border-style: solid;
  pointer-events: none;
}
.aa-photo-corners::before {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
}
.aa-photo-corners::after {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
}
.aa-stat {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-primary);
  color: var(--color-cream);
  padding: 1rem 1.35rem;
  text-align: center;
  font-family: var(--font-display);
  line-height: 1;
}
.aa-stat b {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
}
.aa-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}
.aa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 1.75rem;
}
.aa-tag {
  border: 1px solid rgb(201 90 30 / 0.35);
  background: rgb(201 90 30 / 0.08);
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
}

/* Stacked display titles (second line always breaks) */
.aa-title-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.aa-title-stack .aa-title-line {
  display: block;
  line-height: 1.1;
}
.aa-body-closer {
  margin-top: 1rem !important;
  font-weight: 400 !important;
  color: var(--color-cream) !important;
  max-width: 36rem;
}

/* ── offer cards on wood (Figma Section 02) ──────────────────────────── */
.aa-offers {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1.5rem 5rem;
  background: #251e17 center / cover no-repeat;
  color: var(--color-cream);
  border-top: 1px solid rgb(201 90 30 / 0.18);
}
.aa-offers::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Dark left → open right so wood logo shows on the right */
  background: linear-gradient(
    115deg,
    rgb(0 0 0 / 0.92) 0%,
    rgb(0 0 0 / 0.78) 38%,
    rgb(30 24 20 / 0.45) 72%,
    rgb(30 24 20 / 0.28) 100%
  );
}
.aa-offers-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin-inline: auto;
  text-align: left;
}
.aa-offers-copy {
  max-width: 42rem;
}
.aa-offers .aa-title {
  margin-top: 0.35rem;
}
.aa-offers .aa-title .aa-accent {
  color: var(--color-accent);
}
.aa-offers .aa-body {
  margin-top: 1rem;
  max-width: 36rem;
  color: rgb(255 255 255 / 0.92);
  font-weight: 300;
  line-height: 1.75;
}
.aa-offer-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.25rem;
  max-width: 44rem;
  text-align: left;
}
@media (min-width: 640px) {
  .aa-offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}
.aa-offer {
  border: 1px solid rgb(154 133 114 / 0.5);
  background: rgb(24 20 16 / 0.8);
  padding: 2rem 1.85rem 1.65rem;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  backdrop-filter: blur(2px);
}
.aa-offer-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: rgb(201 90 30 / 0.12);
  border: 1px solid rgb(201 90 30 / 0.25);
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  flex: none;
}
.aa-offer h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream);
  line-height: 1.3;
}
.aa-offer p { display: none; } /* cards are title-only in the prototype */
.aa-offers .aa-cta-row {
  margin-top: 1.75rem;
}

/* ── atmosphere (Figma Section 03) ──────────────────────────────────── */
.aa-atmosphere-section {
  border-top: 1px solid rgb(201 90 30 / 0.18);
  padding-block: 6rem;
}
.aa-atmosphere {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}
@media (min-width: 960px) {
  .aa-atmosphere {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem 4rem;
  }
}
.aa-atmosphere-copy .aa-title .aa-muted {
  color: var(--color-muted);
}
.aa-atmosphere-copy .aa-body {
  max-width: 36rem;
  color: rgb(255 255 255 / 0.92);
  font-weight: 300;
  line-height: 1.8;
}
.aa-atmosphere-photo {
  position: relative;
  overflow: hidden;
}
.aa-atmosphere-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.aa-atmosphere-photo .aa-lb-trigger {
  height: 100%;
}
.aa-atmosphere-photo .aa-lb-trigger img {
  min-height: 22rem;
  height: 100%;
  object-fit: cover;
}
.aa-atmosphere-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgb(12 10 8 / 0.45));
  pointer-events: none;
  z-index: 1;
}
.aa-atmosphere-photo .aa-lb-trigger::after {
  z-index: 2;
}

/* ── quote / custom events CTA (prototype Section 04) ─────────────────
   Full-bleed venue background (not clickable) + left rounded photo card
   that opens the lightbox + right copy/CTA. Matches Figma: bg image is
   atmosphere only; the 576×427-style photo is a separate layer. */
.aa-quote {
  position: relative;
  background: #181410 center / cover no-repeat;
  background-position: center center;
  color: var(--color-cream);
  overflow: hidden;
  min-height: 36rem;
  display: flex;
  align-items: center;
}
.aa-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Near-full dark wash so the venue bg reads as texture, not a photo */
  background:
    linear-gradient(
      175deg,
      rgb(12 10 8 / 0.95) 5%,
      rgb(50 25 10 / 0.85) 65%,
      rgb(12 10 8 / 0.92) 100%
    ),
    radial-gradient(
      ellipse 40% 50% at 20% 50%,
      rgb(201 90 30 / 0.12) 0%,
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}
.aa-quote-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(16rem, 36rem) minmax(18rem, 36rem);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  min-height: inherit;
  box-sizing: border-box;
}
.aa-quote-photo {
  width: 100%;
  max-width: 36rem;
  justify-self: end;
}
.aa-quote-photo .aa-lb-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 0.35rem;
  overflow: hidden;
  box-shadow:
    0 18px 50px rgb(0 0 0 / 0.45),
    0 0 0 1px rgb(255 255 255 / 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.aa-quote-photo .aa-lb-trigger:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 56px rgb(0 0 0 / 0.5),
    0 0 0 1px rgb(255 255 255 / 0.1);
}
.aa-quote-photo .aa-lb-trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.aa-quote-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 576 / 427;
  object-fit: cover;
  vertical-align: middle;
}
.aa-quote-inner {
  width: 100%;
  max-width: 36rem;
  text-align: left;
  justify-self: start;
}
.aa-quote .aa-kicker {
  margin-bottom: 0.15rem;
}
.aa-quote .aa-title {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  margin: 0;
}
.aa-quote .aa-title-stack {
  gap: 0.1rem;
}
.aa-quote .aa-title .aa-title-line {
  white-space: normal;
}
.aa-quote .aa-title .aa-accent {
  color: var(--color-accent);
}
.aa-quote .aa-body {
  margin-top: 1.35rem;
  color: rgb(255 255 255 / 0.95);
  font-weight: 300;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 34rem;
}
.aa-quote .aa-body-closer {
  margin-top: 1.1rem !important;
  margin-bottom: 0.25rem;
  color: var(--color-cream) !important;
  font-weight: 400 !important;
  line-height: 1.7;
}
.aa-quote .aa-cta-row {
  margin-top: 1.75rem;
}
/* Legacy: transparent left-half hit area — no longer used */
.aa-quote-lb,
.aa-quote .aa-inline-photo {
  display: none !important;
}
@media (max-width: 959.98px) {
  .aa-quote {
    min-height: 0;
    background-position: center top;
  }
  .aa-quote::before {
    background: linear-gradient(
      180deg,
      rgb(12 10 8 / 0.88) 0%,
      rgb(12 10 8 / 0.94) 100%
    );
  }
  .aa-quote-layout {
    grid-template-columns: 1fr;
    padding: 3.25rem 1.25rem 3.5rem;
    gap: 1.75rem;
  }
  .aa-quote-photo {
    max-width: none;
    justify-self: stretch;
    order: -1;
  }
  .aa-quote-photo img {
    aspect-ratio: 16 / 11;
  }
  .aa-quote-inner {
    justify-self: start;
    max-width: none;
  }
  .aa-atmosphere-section {
    padding-block: 3.5rem;
  }
}

/* ── products ───────────────────────────────────────────────────────── */
.aa-products {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .aa-products {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
  }
}
.aa-products-visual {
  display: flex;
  justify-content: center;
}
.aa-products-visual img {
  width: 100%;
  max-width: 34rem;
  height: auto;
  object-fit: contain;
}

/* ── contact ────────────────────────────────────────────────────────── */
.aa-contact {
  text-align: center;
  padding-bottom: 2rem;
}
.aa-contact .aa-body {
  margin-inline: auto;
}
.aa-contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: left;
}
@media (min-width: 960px) {
  .aa-contact-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}
.aa-contact-list {
  display: grid;
  gap: 1.25rem;
}
.aa-contact-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.aa-contact-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  display: grid;
  place-items: center;
  background: rgb(201 90 30 / 0.15);
  color: var(--color-accent);
  border-radius: 999px;
}
.aa-contact-row strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-weight: 600;
}
.aa-contact-row a,
.aa-contact-row span {
  color: var(--color-cream);
  font-size: 1.05rem;
}
/* Google Business embed — full width of column, taller than a pin stub */
.aa-map {
  position: relative;
  width: 100%;
  /* Taller than the old 16rem stub; scales with viewport */
  height: clamp(22rem, 52vw, 32rem);
  min-height: 22rem;
  border: 1px solid rgb(201 90 30 / 0.25);
  border-radius: 0.25rem;
  background: #1a1612;
  overflow: hidden;
}
.aa-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* Keep place card readable — light grade only */
  filter: grayscale(0.15) contrast(1.02);
}
@media (min-width: 960px) {
  .aa-map {
    /* Match contact column visual weight */
    height: clamp(28rem, 38vw, 36rem);
    min-height: 28rem;
  }
  .aa-contact-grid {
    align-items: stretch;
  }
}
@media (max-width: 959.98px) {
  .aa-map {
    height: clamp(20rem, 70vw, 28rem);
  }
}
.aa-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ── forms on dark ──────────────────────────────────────────────────── */
.aa-section form input,
.aa-section form textarea,
.aa-section form select,
main form input,
main form textarea,
main form select {
  background: rgb(255 255 255 / 0.04) !important;
  border: 1px solid rgb(201 90 30 / 0.3) !important;
  color: var(--color-cream) !important;
  border-radius: 0 !important;
}
main form label {
  color: var(--color-muted);
}

/* ── kit cards / sections on dark ───────────────────────────────────── */
.card {
  background: rgb(255 255 255 / 0.04);
  border-color: rgb(201 90 30 / 0.25);
  color: var(--color-cream);
}
.article {
  color: rgb(255 255 255 / 0.88);
}
.article a { color: var(--color-accent); }
.hero {
  background-color: #0c0a08;
  color: var(--color-cream);
}

/* Interior heroes */
.hero h1,
section.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

/* ── footer ─────────────────────────────────────────────────────────── */
footer[data-footer],
body > footer {
  background: #080706 !important;
  color: rgb(255 255 255 / 0.7) !important;
  border-top: 1px solid rgb(201 90 30 / 0.2);
}
footer[data-footer] a { color: rgb(255 255 255 / 0.75); }
footer[data-footer] a:hover { color: var(--color-accent); }
footer[data-footer] .font-semibold,
footer[data-footer] .font-bold {
  color: var(--color-cream);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* CTA footer band */
section.bg-\[var\(--color-dark\)\] {
  background: #140f0c !important;
  border-top: 1px solid rgb(201 90 30 / 0.2);
}

/* FAQ on dark */
.zk-faq-item {
  border-color: rgb(201 90 30 / 0.3);
  background: rgb(255 255 255 / 0.03);
}
.zk-faq-q { color: var(--color-cream); }
.zk-faq-a { color: rgb(255 255 255 / 0.8); }

/* Hide default kit homepage hero when we render aa-home */
.aa-home + .cta-footer,
/* mobile spacing under fixed header is handled by hero min-height */

/* ── utilities ──────────────────────────────────────────────────────── */
.aa-center { text-align: center; }
.aa-center .aa-body { margin-inline: auto; }
.aa-cta-row { margin-top: 1.75rem; }
.aa-accent { color: var(--color-accent); }
.aa-primary { color: var(--color-primary); }

@media (max-width: 639.98px) {
  .aa-section { padding: 3.5rem 1.25rem; }
  .aa-hero-inner { padding: 6.5rem 1.25rem 4rem; }
  .aa-hero-lead { font-size: 0.95rem; }
  body > header a img { height: 3.5rem; }
}


/* ── scroll / entrance reveals (Figma prototype motion) ────────────────
   Pronounced travel so motion reads clearly (prototype start frames were
   fully off-canvas). Layout stays the same; only opacity + transform. */
.aa-reveal {
  opacity: 0;
  filter: blur(6px);
  transition:
    opacity 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}
/* Hero copy travels farther (Figma had it well below the frame) */
.aa-reveal-up {
  transform: translate3d(0, 88px, 0);
}
.aa-hero .aa-reveal-up {
  transform: translate3d(0, 110px, 0);
}
.aa-reveal-left {
  transform: translate3d(-110px, 0, 0);
}
.aa-reveal-right {
  transform: translate3d(110px, 0, 0);
}
.aa-reveal-fade {
  transform: none;
  filter: blur(4px);
}
.aa-reveal-scale {
  transform: scale(0.72);
  transform-origin: center bottom;
  filter: blur(2px);
}
.aa-reveal.is-in,
.aa-reveal-group.is-in .aa-reveal {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
/* Stagger only on ENTER so leave/reset is snappy and re-entry re-staggers */
.aa-reveal[data-aa-d] { transition-delay: 0ms; }
.aa-reveal.is-in[data-aa-d="0"] { transition-delay: 0ms; }
.aa-reveal.is-in[data-aa-d="1"] { transition-delay: 140ms; }
.aa-reveal.is-in[data-aa-d="2"] { transition-delay: 260ms; }
.aa-reveal.is-in[data-aa-d="3"] { transition-delay: 380ms; }
.aa-reveal.is-in[data-aa-d="4"] { transition-delay: 500ms; }
.aa-reveal.is-in[data-aa-d="5"] { transition-delay: 620ms; }
.aa-reveal.is-in[data-aa-d="6"] { transition-delay: 740ms; }
.aa-reveal.is-in[data-aa-d="7"] { transition-delay: 860ms; }
.aa-reveal.is-in[data-aa-d="8"] { transition-delay: 980ms; }

/* Hero ambient drift — a bit more travel so it’s visible */
.aa-hero {
  background-size: 112% auto;
  background-position: 50% 50%;
  animation: aa-hero-drift 18s ease-in-out infinite alternate;
}
@keyframes aa-hero-drift {
  from {
    background-position: 42% 44%;
    background-size: 108% auto;
  }
  to {
    background-position: 58% 54%;
    background-size: 118% auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aa-reveal,
  .aa-reveal-up,
  .aa-reveal-left,
  .aa-reveal-right,
  .aa-reveal-fade,
  .aa-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .aa-hero {
    animation: none !important;
  }
}
