/* V7-01 — Hex Ceiling (Signature) */
:root {
  --void: #0a0a0c;
  --charcoal: #111318;
  --surface: #1a1d24;
  --wood: #c8a96a;
  --wood-soft: rgba(200, 169, 106, 0.15);
  --red: #c8242a;
  --red-soft: rgba(200, 36, 42, 0.12);
  --offwhite: #f2ede6;
  --muted: #8a8a8a;
  --border: rgba(242, 237, 230, 0.07);
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 2px;
  --max: 1320px;
  --pad-x: clamp(1rem, 4vw, 3rem);
  --pad-y: clamp(3rem, 8vw, 6rem);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--void);
  color: var(--offwhite);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px; top: auto;
  background: var(--red); color: var(--offwhite); padding: 0.5rem 1rem; font-weight: 700;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 1rem;
}
.eyebrow--red { color: var(--red); }
.eyebrow--wood { color: var(--wood); }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 2.5rem;
  color: var(--offwhite);
}

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.875rem var(--pad-x);
  display: flex; align-items: center; gap: 1rem;
}
.nav__mark { display: flex; align-items: center; min-height: 44px; }
.nav__logo {
  height: 38px; width: auto;
  filter: brightness(10);
}
.nav__links { display: none; gap: 1.75rem; margin-left: auto; }
.nav__links a {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--offwhite);
  opacity: 0.78;
}
.nav__links a:hover { opacity: 1; color: var(--red); }
.nav .btn { margin-left: auto; }
@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav .btn { margin-left: 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  min-height: 44px;
  border: 1px solid transparent;
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
  cursor: pointer;
}
.btn--red { background: var(--red); color: var(--offwhite); }
.btn--red:hover { transform: translateY(-1px); background: #d62e34; }
.btn--ghost { border-color: var(--offwhite); color: var(--offwhite); background: transparent; }
.btn--ghost:hover { background: var(--offwhite); color: var(--void); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
  background: var(--void);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.86) 100%);
  z-index: 1;
}
.hero__hex {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 78'><polygon points='15,2 45,2 60,26 45,50 15,50 0,26' fill='none' stroke='rgba(242,237,230,0.10)' stroke-width='1'/><polygon points='45,2 75,2 90,26 75,50 45,50 30,26' fill='none' stroke='rgba(242,237,230,0.10)' stroke-width='1'/><polygon points='15,54 45,54 60,78 45,102 15,102 0,78' fill='none' stroke='rgba(242,237,230,0.10)' stroke-width='1'/></svg>");
  background-size: 90px 78px;
  z-index: 2;
  opacity: 0.6;
  animation: hex-breathe 4s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hex-breathe { from { opacity: 0.45; } to { opacity: 0.95; } }
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 920px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.005em;
  color: var(--offwhite);
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-fade-up 500ms ease-out 100ms forwards;
}
.hero__rule {
  display: block;
  width: 60px; height: 3px;
  background: var(--red);
  margin: 0 0 1.75rem;
  transform-origin: left center;
  transform: scaleX(0);
  animation: rule-grow 400ms ease-out 500ms forwards;
}
.hero__sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  color: var(--offwhite);
  opacity: 0.85;
  max-width: 60ch;
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-fade-up 600ms ease-out 700ms forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  opacity: 0;
  animation: hero-fade-up 600ms ease-out 850ms forwards;
}
@keyframes hero-fade-up { to { opacity: 1; transform: translateY(0); } }
@keyframes rule-grow { to { transform: scaleX(1); } }
.hero__sub { opacity: 0; }

/* Trust */
.trust {
  background: var(--charcoal);
  padding: 1.25rem var(--pad-x);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8125rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.trust__dot { color: var(--red); font-weight: 700; }

/* Services + hex grid */
.services {
  padding: var(--pad-y) var(--pad-x);
  background: var(--void);
}
.services__head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  text-align: center;
}
.services__head .eyebrow { margin-bottom: 0.75rem; }
.hex-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.hex-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 2rem 1.5rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease, border-color 220ms ease;
  isolation: isolate;
}
.hex-tile.is-visible { opacity: 1; transform: translateY(0); }
.hex-tile:hover { border-top-color: var(--wood); }
.hex-tile__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.14;
  z-index: 0;
  transition: opacity 280ms ease;
}
.hex-tile:hover .hex-tile__bg { opacity: 0.28; }
.hex-tile__inner { position: relative; z-index: 1; }
.hex-tile__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  color: var(--wood);
  margin-bottom: 0.75rem;
}
.hex-tile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--offwhite);
  margin: 0 0 0.6rem;
}
.hex-tile__copy {
  margin: 0;
  color: var(--offwhite);
  opacity: 0.78;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media (min-width: 700px) {
  .hex-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .hex-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .hex-tile {
    aspect-ratio: 1 / 1.05;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 0;
    border: none;
    border-top: none;
    padding: 2.5rem 2.25rem;
    display: flex; align-items: center; justify-content: center; text-align: center;
  }
  .hex-tile::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,36,42,0.0) 0%, rgba(200,36,42,0.15) 100%);
    z-index: 0;
  }
  .hex-grid .hex-tile:nth-child(2) { transform: translateY(40px); }
  .hex-grid .hex-tile:nth-child(5) { transform: translateY(40px); }
  .hex-grid .hex-tile.is-visible:nth-child(2) { transform: translateY(40px); }
  .hex-grid .hex-tile.is-visible:nth-child(5) { transform: translateY(40px); }
}

/* Welcoming */
.welcoming {
  background: var(--charcoal);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.welcoming__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.welcoming__inner.is-visible { opacity: 1; transform: translateY(0); }
.welcoming__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 1.25rem;
}
.welcoming__title .accent { color: var(--red); }
.welcoming__body {
  color: var(--offwhite);
  opacity: 0.8;
  font-size: 1.0625rem;
  margin: 0 auto 2rem;
  max-width: 56ch;
}

/* Reviews */
.reviews {
  background: var(--void);
  padding: var(--pad-y) var(--pad-x);
}
.reviews__head { max-width: var(--max); margin: 0 auto 2.5rem; text-align: center; }
.reviews__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.quote {
  margin: 0;
  padding: 1.5rem 1.25rem 1.25rem;
  background: var(--surface);
  border-top: 1px solid var(--wood);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 380ms ease, transform 380ms ease, border-color 200ms ease;
}
.quote:hover { border-top-color: var(--red); }
.quote.is-visible { opacity: 1; transform: translateY(0); }
.quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--offwhite);
  margin: 0 0 1rem;
}
.quote cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  font-weight: 600;
}
@media (min-width: 880px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

/* Location */
.location {
  background: var(--charcoal);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--border);
}
.location__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.location__address {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--offwhite);
  margin: 0 0 1.25rem;
}
.hours { margin: 0 0 1.5rem; }
.hours__row {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  font-size: 0.9375rem;
}
.hours__row dt { color: var(--muted); font-weight: 600; }
.hours__row dd { margin: 0; color: var(--offwhite); }
.location__map {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.location__map svg { width: 100%; height: auto; display: block; }
@media (min-width: 900px) { .location__grid { grid-template-columns: 1fr 1.2fr; } }

/* Contact */
.contact {
  background: var(--void);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.contact__inner {
  max-width: 640px; margin: 0 auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 400ms ease;
}
.contact__inner.is-visible { opacity: 1; transform: translateY(0); }
.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0 0 1rem;
}
.contact__title .accent { color: var(--red); }
.contact__body { color: var(--offwhite); opacity: 0.78; margin: 0 0 1.75rem; }

/* Footer */
.footer {
  background: var(--charcoal);
  color: var(--muted);
  padding: var(--pad-y) var(--pad-x) 2rem;
  border-top: 1px solid var(--border);
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__col p { margin: 0 0 0.5rem; font-size: 0.875rem; }
.footer__heading {
  color: var(--wood);
  font-family: var(--font-display);
  font-size: 0.75rem !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.875rem !important;
}
.footer__mark { font-family: var(--font-display); color: var(--offwhite); font-size: 1rem !important; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 0.4rem; font-size: 0.875rem; }
.footer__list a:hover, .footer__col a:hover { color: var(--red); }
.footer__legal {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.footer__ffl { color: var(--offwhite); margin: 0 0 0.75rem; font-weight: 600; }
.footer__ffl-num { font-family: ui-monospace, "Menlo", monospace; color: var(--wood); }
.footer__age { color: var(--muted); margin: 0 0 0.75rem; max-width: 70ch; }
.footer__copy { color: var(--muted); margin: 0; }
.footer__socials { margin-top: 0.5rem !important; }
@media (min-width: 720px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer__cols { grid-template-columns: repeat(4, 1fr); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero__title, .hero__sub, .hero__ctas, .hero__rule,
  .reveal, .welcoming__inner, .contact__inner, .quote, .hex-tile {
    opacity: 1 !important; transform: none !important;
  }
}
