/* V7-02 — Wood & Steel */
:root {
  --void: #0d0c0b;
  --charcoal: #181614;
  --surface: #1f1c18;
  --wood: #c8a96a;
  --wood-2: #a07840;
  --wood-stripe: linear-gradient(90deg, #8a6a3a, #c8a96a, #d4b47a, #a07840, #8a6a3a);
  --red: #c8242a;
  --offwhite: #f0ebe2;
  --muted: #888070;
  --border: rgba(200, 169, 106, 0.15);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 0px;
  --max: 1300px;
  --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(--wood); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: auto;
  background: var(--wood); color: var(--void); 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.9375rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 1rem;
}
.eyebrow--wood { color: var(--wood); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  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-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--offwhite);
  opacity: 0.78;
}
.nav__links a:hover { opacity: 1; color: var(--wood); }
.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-size: 1.0625rem;
  letter-spacing: 0.16em;
  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--wood { background: var(--wood); color: var(--void); }
.btn--wood:hover { transform: translateY(-1px); background: #d4b47a; }
.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); }
.btn--ghost-light { border-color: var(--offwhite); color: var(--offwhite); background: transparent; }
.btn--ghost-light:hover { background: var(--offwhite); color: var(--red); }

/* Hero — 50/50 split */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--void);
  min-height: 70vh;
}
.hero__photo {
  overflow: hidden;
  background: var(--charcoal);
  min-height: 50vh;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: photo-zoom-out 1.4s ease-out forwards;
}
@keyframes photo-zoom-out { to { transform: scale(1); } }
.hero__panel {
  background: var(--void);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--offwhite);
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: hero-slide-in 500ms ease-out 300ms forwards;
}
.hero__rule {
  display: block;
  width: 100px; height: 4px;
  background: var(--wood);
  margin: 0 0 1.5rem;
  transform-origin: left center;
  transform: scaleX(0);
  animation: rule-grow 400ms ease-out 700ms forwards;
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--offwhite);
  opacity: 0.85;
  max-width: 52ch;
  margin: 0 0 1.75rem;
  opacity: 0;
  animation: hero-fade 500ms ease-out 850ms forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  opacity: 0;
  animation: hero-fade 500ms ease-out 1000ms forwards;
}
@keyframes hero-slide-in { to { opacity: 1; transform: translateX(0); } }
@keyframes hero-fade { to { opacity: 1; } }
@keyframes rule-grow { to { transform: scaleX(1); } }
@media (min-width: 880px) {
  .hero { grid-template-columns: 1fr 1fr; min-height: 100svh; }
  .hero__photo { min-height: auto; }
}

.wood-stripe { height: 6px; 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: 1rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.trust__dot { color: var(--wood); }

/* Services */
.services {
  background: var(--void);
  padding: var(--pad-y) var(--pad-x);
}
.services__head { max-width: var(--max); margin: 0 auto 2.5rem; }
.services__head .eyebrow { margin-bottom: 0.5rem; }
.services__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  background: var(--void);
  border: 1px solid var(--border);
  border-top: 3px solid var(--wood);
  overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease, border-top-color 250ms ease;
}
.card.is-visible { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-4px); border-top-color: var(--red); }
.card__photo { aspect-ratio: 3 / 2; overflow: hidden; background: var(--charcoal); }
.card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card__photo img { transform: scale(1.04); }
.card__body { padding: 1.5rem; }
.card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--offwhite);
  margin: 0 0 0.6rem;
}
.card__copy { color: var(--offwhite); opacity: 0.78; font-size: 0.9375rem; line-height: 1.6; margin: 0; }
@media (min-width: 720px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

/* Welcoming */
.welcoming {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  background: var(--void);
  isolation: isolate;
  overflow: hidden;
}
.welcoming__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; z-index: 0; }
.welcoming__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,12,11,0.5), rgba(13,12,11,0.85)); 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: 400;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 1.25rem;
}
.welcoming__body { color: var(--offwhite); opacity: 0.85; font-size: 1.0625rem; margin: 0 auto 2rem; max-width: 56ch; }

/* Reviews */
.reviews { background: var(--charcoal); 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;
  background: var(--surface);
  border-left: 2px solid var(--wood);
  padding: 1.5rem 1.5rem 1.25rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 380ms ease, transform 380ms ease, border-left-color 200ms ease;
}
.quote:hover { border-left-color: var(--red); }
.quote.is-visible { opacity: 1; transform: translateY(0); }
.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.875rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wood); }
@media (min-width: 880px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

/* Location */
.location { background: var(--void); 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: 400;
  font-style: normal;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.05;
  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(--charcoal); 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 — Red full-width band */
.contact {
  background: var(--red);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
  color: var(--offwhite);
}
.contact__inner {
  max-width: 720px; 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: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 1rem;
  color: var(--offwhite);
}
.contact__body { color: var(--offwhite); opacity: 0.92; margin: 0 0 1.75rem; }

/* Footer */
.footer { background: var(--void); 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.9375rem !important; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.875rem !important; }
.footer__mark { font-family: var(--font-display); color: var(--offwhite); font-size: 1.125rem !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(--wood); }
.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, .hero__photo img,
  .reveal, .welcoming__inner, .contact__inner, .quote, .card {
    opacity: 1 !important; transform: none !important;
  }
}
