/* V8-05 — Hex Dark Luxury (parent: V7-01) */
:root {
  --void: #080809;
  --surface: #101115;
  --surface-2: #18191f;
  --wood: #c8a96a;
  --wood-soft: rgba(200, 169, 106, 0.08);
  --red: #c8242a;
  --offwhite: #f4f0eb;
  --muted: #606068;
  --border: rgba(244, 240, 235, 0.06);
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 2px;
  --max: 1200px;
  --pad-x: clamp(1rem, 4vw, 3rem);
  --pad-y: clamp(4rem, 10vw, 8rem);
}

*, *::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.65; -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; 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.25em; 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 3rem; color: var(--offwhite); text-align: center; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: var(--void); border-bottom: 1px solid var(--border); }
.nav__inner { max-width: var(--max); margin: 0 auto; padding: 1rem 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: 2rem; margin-left: auto; }
.nav__links a { font-size: 0.8125rem; letter-spacing: 0.18em; 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(--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-weight: 600; font-size: 0.8125rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.95rem 1.75rem; 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 — large hex ring */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: var(--pad-y) var(--pad-x); 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(8,8,9,0.72), rgba(8,8,9,0.92)); z-index: 1; }
.hero__hex-ring { position: absolute; width: min(92vw, 600px); height: auto; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 2; opacity: 0; animation: hex-ring-in 1.2s ease-out 200ms forwards; }
@keyframes hex-ring-in { to { opacity: 1; } }
.hex-ring-stroke { stroke-dasharray: 2500; stroke-dashoffset: 2500; animation: stroke-draw 2s ease-out 400ms forwards; }
@keyframes stroke-draw { to { stroke-dashoffset: 0; } }
.hero__content { position: relative; z-index: 3; max-width: 760px; }
.hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem, 7vw, 6rem); text-transform: uppercase; line-height: 0.95; letter-spacing: 0.005em; color: var(--offwhite); margin: 0 0 1.5rem; opacity: 0; transform: translateY(20px); animation: fade-up 600ms ease-out 600ms forwards; }
.hero__title em { font-style: normal; color: var(--red); }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }
.hero__rule { display: block; width: 60px; height: 3px; background: var(--red); margin: 0 auto 1.75rem; transform-origin: center; transform: scaleX(0); animation: rule-grow 400ms ease-out 950ms forwards; }
@keyframes rule-grow { to { transform: scaleX(1); } }
.hero__sub { font-size: clamp(1rem, 1.4vw, 1.125rem); color: var(--offwhite); opacity: 0; max-width: 56ch; margin: 0 auto 2rem; transform: translateY(12px); animation: fade-up 600ms ease-out 1100ms forwards; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; opacity: 0; animation: fade-up 600ms ease-out 1250ms forwards; }

/* Trust */
.trust { background: var(--void); 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.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.trust__dot { color: var(--wood); font-weight: 700; }

/* Services — type-only luxury cards */
.services { background: var(--void); padding: var(--pad-y) var(--pad-x); }
.services__head { max-width: var(--max); margin: 0 auto; }
.services__head .eyebrow { text-align: center; }
.services__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.tile { padding: 2.5rem; border: 1px solid var(--border); border-top: 2px solid var(--wood-soft); background: var(--surface); transition: border-top-color 250ms ease, background-color 250ms ease; opacity: 0; transform: translateY(8px); }
.tile.is-visible { opacity: 1; transform: translateY(0); transition: opacity 360ms ease, transform 360ms ease, border-top-color 250ms ease, background-color 250ms ease; }
.tile:hover { border-top-color: var(--red); background: var(--surface-2); }
.tile__num { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.25em; color: var(--wood); display: block; margin-bottom: 1rem; }
.tile__title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); text-transform: uppercase; color: var(--offwhite); margin: 0 0 0.75rem; font-weight: 600; }
.tile__copy { color: var(--muted); font-size: 0.9375rem; line-height: 1.65; margin: 0; }
@media (min-width: 700px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

/* Welcoming — editorial quote */
.welcoming { background: var(--surface); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.welcoming__inner { position: relative; max-width: 60ch; margin: 0 auto; text-align: center; opacity: 0; transform: translateY(8px); transition: opacity 500ms ease, transform 500ms ease; }
.welcoming__inner.is-visible { opacity: 1; transform: translateY(0); }
.welcoming__inner::before { content: '\201C'; position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: 10rem; line-height: 1; color: var(--wood); opacity: 0.1; pointer-events: none; }
.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__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; }
.reviews__head .eyebrow { 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: 2rem 1.75rem 1.5rem; background: var(--surface); border-top: 1px solid var(--wood-soft); 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.65; color: var(--offwhite); margin: 0 0 1rem; }
.quote cite { font-family: var(--font-display); font-style: normal; font-size: 0.75rem; letter-spacing: 0.22em; 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(--surface); 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__photo { opacity: 0; transform: translateY(8px); transition: opacity 400ms ease, transform 400ms ease; }
.location__info.is-visible, .location__photo.is-visible { opacity: 1; transform: translateY(0); }
.location__photo { overflow: hidden; }
.location__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.location__photo:hover img { transform: scale(1.04); }
.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.75rem 0; font-size: 0.9375rem; }
.hours__row dt { color: var(--muted); font-weight: 600; }
.hours__row dd { margin: 0; color: var(--offwhite); }
@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__body { color: var(--offwhite); opacity: 0.78; margin: 0 0 1.75rem; }

/* Footer */
.footer { background: var(--surface); 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.22em; 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(--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__hex-ring, .hex-ring-stroke,
  .reveal, .tile, .welcoming__inner, .quote, .location__info, .location__photo, .contact__inner {
    opacity: 1 !important; transform: none !important;
  }
  .hex-ring-stroke { stroke-dashoffset: 0 !important; }
}
