/* V8-07 — Crosshair + Wood Fusion (parents: V7-02 + V7-03) */
:root {
  --void: #0b0b0d;
  --charcoal: #131318;
  --surface: #1a1a20;
  --wood: #c8a96a;
  --wood-dark: #8a6a3a;
  --wood-stripe: linear-gradient(90deg, #8a6a3a, #c8a96a, #d4b47a, #c8a96a, #8a6a3a);
  --red: #c8242a;
  --offwhite: #f2ede6;
  --muted: #808088;
  --border: rgba(200, 169, 106, 0.12);
  --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; transition: color 200ms ease, opacity 200ms ease; }
.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 — split + crosshair fusion */
.hero { display: grid; grid-template-columns: 1fr; min-height: 100svh; background: var(--void); }
.hero__photo { overflow: hidden; position: relative; min-height: 50vh; background: var(--charcoal); }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: photo-settle 1.4s ease-out forwards; }
@keyframes photo-settle { to { transform: scale(1); } }
.hero__panel { background: var(--void); position: relative; overflow: hidden; display: flex; align-items: center; padding: clamp(2.5rem, 7vw, 5rem); }
.hero__panel-crosshair { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero__panel-crosshair svg { width: min(90%, 420px); height: auto; opacity: 0.18; animation: crosshair-slow-spin 30s linear infinite; }
@keyframes crosshair-slow-spin { to { transform: rotate(360deg); } }
.hero__panel-content { position: relative; z-index: 2; max-width: 600px; opacity: 0; transform: translateX(16px); animation: panel-in 500ms ease-out 400ms forwards; }
@keyframes panel-in { to { opacity: 1; transform: translateX(0); } }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.75rem, 6vw, 5.5rem); text-transform: uppercase; line-height: 0.95; letter-spacing: 0.005em; color: var(--offwhite); margin: 0 0 1.25rem; }
.hero__rule { display: block; width: 60px; height: 3px; background: var(--red); margin: 0 0 1.5rem; transform: scaleX(0); transform-origin: left; animation: rule-grow 400ms ease-out 800ms forwards; }
@keyframes rule-grow { to { transform: scaleX(1); } }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.125rem); color: var(--offwhite); opacity: 0.85; max-width: 56ch; margin: 0 0 1.75rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 880px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero__photo { min-height: auto; }
}

.wood-stripe { height: 5px; background: var(--wood-stripe); width: 100%; }

/* 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); }
.trust__dot { color: var(--wood); font-weight: 700; }

/* Services */
.services { background: var(--void); padding: var(--pad-y) 0; }
.services__head { max-width: var(--max); margin: 0 auto 2.5rem; padding: 0 var(--pad-x); text-align: center; }
.svc-band { padding: 0 var(--pad-x); }
.svc-band--rows { background: var(--charcoal); padding: clamp(2rem, 5vw, 4rem) var(--pad-x); }
.svc-row { display: grid; grid-template-columns: 8rem 1fr 180px; align-items: center; gap: 2rem; padding: 1.5rem 0; max-width: var(--max); margin: 0 auto; border-bottom: 1px solid var(--border); transition: background-color 250ms ease; opacity: 0; transform: translateY(8px); }
.svc-row.is-visible { opacity: 1; transform: translateY(0); transition: opacity 360ms ease, transform 360ms ease, background-color 250ms ease; }
.svc-row:last-child { border-bottom: 0; }
.svc-row:hover { background: rgba(200, 36, 42, 0.04); }
.svc-num { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 5.5rem); line-height: 0.85; color: var(--red); opacity: 0.36; transition: opacity 250ms ease; }
.svc-row:hover .svc-num { opacity: 0.7; }
.svc-text { min-width: 0; }
.svc-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); text-transform: uppercase; letter-spacing: 0.01em; color: var(--offwhite); margin: 0 0 0.4rem; font-weight: 600; }
.svc-body { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; margin: 0; }
.svc-photo { width: 180px; aspect-ratio: 4 / 3; object-fit: cover; filter: grayscale(20%); transition: filter 300ms ease, transform 300ms ease; }
.svc-row:hover .svc-photo { filter: grayscale(0%); transform: scale(1.03); }
@media (max-width: 700px) {
  .svc-row { grid-template-columns: 4rem 1fr; padding: 1.25rem 0; gap: 1rem; }
  .svc-photo { display: none; }
  .svc-num { font-size: 2.5rem; }
}

.svc-band--hex { padding: clamp(2rem, 5vw, 4rem) var(--pad-x); display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: var(--max); margin: 0 auto; }
.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 360ms ease, transform 360ms 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) { .svc-band--hex { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .svc-band--hex { 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: 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%, rgba(200,36,42,0.15) 100%); z-index: 0; }
}

/* Welcoming — full-width with low-opacity photo */
.welcoming { position: relative; background: var(--charcoal); padding: var(--pad-y) var(--pad-x); isolation: isolate; overflow: hidden; }
.welcoming__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.20; z-index: 0; }
.welcoming__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,11,13,0.6), rgba(11,11,13,0.88)); z-index: 1; }
.welcoming__inner { position: relative; z-index: 2; 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.85; 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: 1.5rem; }
.quote { margin: 0; padding: 1.5rem 1.5rem 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 220ms ease; }
.quote.is-visible { opacity: 1; transform: translateY(0); }
.quote:hover { border-top-color: var(--red); }
.quote p { 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; display: inline-flex; align-items: center; gap: 0.4rem; }
.quote__dot { color: var(--red); font-weight: 700; }
@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__info, .location__map { opacity: 0; transform: translateY(8px); transition: opacity 400ms ease, transform 400ms ease; }
.location__info.is-visible, .location__map.is-visible { opacity: 1; transform: translateY(0); }
.location__address { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 3.2vw, 2.25rem); line-height: 1.2; text-transform: uppercase; color: var(--offwhite); margin: 0 0 1.25rem; font-style: normal; }
.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__photo img, .hero__panel-content, .hero__rule, .hero__panel-crosshair svg,
  .reveal, .svc-row, .hex-tile, .welcoming__inner, .quote,
  .location__info, .location__map, .contact__inner {
    opacity: 1 !important; transform: none !important;
  }
  .hero__panel-crosshair svg { opacity: 0.18 !important; }
}
