/* V6-07 — The Architect */
:root {
  --ink: #0d0d0d;
  --surface: #161616;
  --surface-2: #1c1c1c;
  --rule: rgba(255,255,255,0.06);
  --gold: #c8981a;
  --gold-bright: #ddaa2c;
  --gold-soft: rgba(200,152,26,0.10);
  --text: #f4f0eb;
  --muted: #666;
  --border: rgba(255,255,255,0.07);
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 2px;
  --max: 1380px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --pad-y: clamp(3rem, 8vw, 6rem);
}

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

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

.eyebrow {
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 700; margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--gold); }

.section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 2rem;
  color: var(--text);
}
.section__title--centered { text-align: center; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--text);
}
.nav__mark em { font-style: italic; color: var(--gold); }
.nav__links { display: none; gap: 1.75rem; margin-left: auto; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text); opacity: 0.8;
  transition: opacity 200ms ease;
}
.nav__links a:hover { opacity: 1; }
.nav__phone { margin-left: auto; }
@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__phone { margin-left: 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  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--primary { background: var(--gold); color: var(--ink); }
.btn--primary:hover { transform: translateY(-1px); background: var(--gold-bright); }
.btn--ghost { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn--ghost:hover { background: var(--gold-soft); }
.btn--pill { border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.8125rem; min-height: 40px; }

/* Hero — three bands */
.hero {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--ink);
  min-height: 100svh;
}
.hero__eyebrow-band {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem clamp(1.25rem,5vw,3rem);
  display: flex; flex-wrap: wrap;
  gap: 0.5rem; align-items: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
}
.hero__eyebrow-left { color: var(--gold); }
.hero__eyebrow-dot { color: var(--gold); }
.hero__eyebrow-right { color: var(--muted); margin-left: auto; }

.hero__headline-band {
  padding: clamp(3rem,8vw,6rem) clamp(1.25rem,5vw,3rem);
  display: flex; flex-direction: column; justify-content: center;
  border-bottom: 1px solid var(--rule);
}
.hero__headline-inner { max-width: 1100px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: title-in 600ms ease-out forwards;
}
@keyframes title-in { to { opacity: 1; transform: translateY(0); } }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  margin: 0 0 1.75rem;
  max-width: 56ch;
  opacity: 0;
  animation: fade-in 500ms ease-out 300ms forwards;
}
@keyframes fade-in { to { opacity: 1; } }
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  opacity: 0;
  animation: fade-in 500ms ease-out 450ms forwards;
}

.hero__photo-strip {
  height: 40vh; min-height: 240px; max-height: 480px;
  overflow: hidden;
  background: var(--surface);
  opacity: 0;
  transform: translateY(20px);
  animation: strip-in 500ms ease-out 400ms forwards;
}
@keyframes strip-in { to { opacity: 1; transform: translateY(0); } }
.hero__photo-strip img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* Services */
.services { padding: var(--pad-y) var(--pad-x); background: var(--ink); }
.services__head {
  max-width: var(--max); margin: 0 auto 2.5rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.services__head.is-visible { opacity: 1; transform: translateY(0); }

.services__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.tile {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.tile.is-visible { opacity: 1; transform: translateY(0); }
.tile::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 300ms ease;
  z-index: 0;
}
.tile:hover::before { transform: scaleX(1); }
.tile > * { position: relative; z-index: 1; }

.tile__num {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.tile__body { position: relative; z-index: 1; }
.tile__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.tile__copy {
  margin: 0; color: var(--muted); font-size: 0.9375rem; line-height: 1.6;
  max-width: 36ch;
}

@media (min-width: 500px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Welcoming */
.welcoming {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
  background: var(--surface-2);
}
.welcoming__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}
.welcoming__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.4), rgba(13,13,13,0.85));
  z-index: 1;
}
.welcoming__inner {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto; text-align: center;
  opacity: 0; transform: scale(0.97);
  transition: opacity 400ms ease, transform 400ms ease;
}
.welcoming__inner.is-visible { opacity: 1; transform: scale(1); }
.welcoming__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.welcoming__title em { font-style: italic; color: var(--gold); }
.welcoming__body {
  color: var(--text); opacity: 0.85;
  font-size: 1.0625rem;
  margin: 0 auto 2rem;
  max-width: 56ch;
}

/* Reviews */
.reviews { padding: var(--pad-y) var(--pad-x); background: var(--surface); }
.reviews__strip {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.quote {
  margin: 0;
  border-left: 1px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity 350ms ease, transform 350ms ease;
}
.quote.is-visible { opacity: 1; transform: translateY(0); }
.quote p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1rem;
}
.quote cite {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold);
}
@media (min-width: 880px) {
  .reviews__strip { grid-template-columns: repeat(3, 1fr); }
}

/* Location */
.location {
  background: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.location__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 0; align-items: center;
}
.location__info, .location__hours {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0; transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.location__info.is-visible, .location__hours.is-visible {
  opacity: 1; transform: translateY(0);
}
.location__address {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.hours__row {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
  font-size: 0.9375rem;
}
.hours__row dt { color: var(--muted); font-weight: 600; }
.hours__row dd { margin: 0; color: var(--text); font-family: ui-monospace, "Menlo", monospace; }
.location__map {
  background: var(--surface); overflow: hidden;
  padding: 1.5rem 0;
}
.location__map svg { width: 100%; height: auto; display: block; }
@media (min-width: 900px) {
  .location__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
  .location__info, .location__hours, .location__map {
    border-bottom: none;
    border-right: 1px solid var(--rule);
    padding: 1.5rem 2rem;
    height: 100%;
  }
  .location__map { border-right: none; }
}

/* Contact */
.contact {
  background: var(--surface-2);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}
.contact__inner {
  max-width: 640px; margin: 0 auto;
  opacity: 0; transform: translateY(10px);
  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: 700;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.contact__title em { font-style: italic; color: var(--gold); }
.contact__body { color: var(--muted); margin: 0 0 1.75rem; }

/* Footer */
.footer {
  background: var(--ink); color: var(--muted);
  padding: var(--pad-y) var(--pad-x) 2rem;
  border-top: 1px solid var(--rule);
}
.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(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.875rem;
}
.footer__mark { font-family: var(--font-display); color: var(--text); font-size: 1rem; font-weight: 700; }
.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(--gold); }
.footer__legal {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.footer__ffl { color: var(--text); margin: 0 0 0.75rem; font-weight: 600; }
.footer__ffl-num { font-family: ui-monospace, "Menlo", monospace; color: var(--gold); }
.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; }

@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__photo-strip { opacity: 1 !important; transform: none !important; }
  .reveal, .tile, .quote, .services__head, .welcoming__inner, .contact__inner, .location__info, .location__hours { opacity: 1 !important; transform: none !important; }
}
