/* V6-03 — The Slate */
:root {
  --slate: #1c1f26;
  --slate-2: #252930;
  --slate-3: #2e333d;
  --ice: #dce8f0;
  --accent: #4a9eca;
  --accent-bright: #5fb1de;
  --accent-soft: rgba(74,158,202,0.14);
  --muted: #7a8494;
  --border: rgba(220,232,240,0.08);
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --radius: 8px;
  --max: 1300px;
  --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(--slate);
  color: var(--ice);
  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(--accent); outline-offset: 3px; border-radius: 2px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--accent); color: var(--slate); 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--blue { color: var(--accent); }

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

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(28,31,38,0.85);
  backdrop-filter: blur(12px);
  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: 1.5rem;
}
.nav__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ice);
}
.nav__mark em { font-style: italic; color: var(--accent); }
.nav__links { display: none; gap: 1.75rem; margin-left: auto; }
.nav__links a {
  font-size: 0.875rem; font-weight: 600; color: var(--ice); 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: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  min-height: 44px;
  border: 1px solid transparent;
  transition: transform 200ms ease, background-color 200ms ease;
  cursor: pointer;
}
.btn--primary { background: var(--accent); color: var(--slate); }
.btn--primary:hover { transform: translateY(-1px); background: var(--accent-bright); }
.btn--ghost { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn--ghost:hover { background: var(--accent-soft); }
.btn--pill { border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.8125rem; min-height: 40px; }

/* Hero */
.hero {
  position: relative;
  background: var(--slate);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(2rem,6vw,4rem) clamp(1.25rem,5vw,3rem) clamp(3rem,8vw,5rem);
  display: flex; flex-direction: column; gap: 2rem;
}
.hero__title-ghost {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 14vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--ice);
  opacity: 0;
  pointer-events: none;
  word-break: break-word;
  animation: title-ghost-in 800ms ease-out forwards;
}
@keyframes title-ghost-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 0.12; transform: translateY(0); }
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--slate-2);
  opacity: 0;
  transform: translateY(16px);
  animation: photo-in 700ms ease-out 200ms forwards;
}
@keyframes photo-in { to { opacity: 1; transform: translateY(0); } }
.hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__bottom {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: bottom-in 500ms ease-out 400ms forwards;
}
@keyframes bottom-in { to { opacity: 1; } }
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ice);
  margin: 0 0 1rem;
}
.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.0625rem);
  margin: 0 0 1.75rem;
  max-width: 50ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (min-width: 900px) {
  .hero {
    display: grid;
    align-items: end;
    grid-template-rows: 1fr auto;
  }
  .hero__title-ghost {
    position: absolute;
    top: clamp(1.5rem, 5vh, 3rem);
    left: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    font-size: clamp(5rem, 14vw, 13rem);
    z-index: 0;
    opacity: 0;
    animation: title-ghost-in-desktop 800ms ease-out forwards;
  }
  @keyframes title-ghost-in-desktop {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 0.08; transform: translateY(0); }
  }
  .hero__photo {
    position: absolute;
    top: clamp(2rem,8vh,4rem);
    right: clamp(1.5rem,5vw,3rem);
    width: clamp(280px,40vw,520px);
    aspect-ratio: 4/3;
    z-index: 2;
  }
  .hero__bottom {
    grid-row: 2;
    max-width: 600px;
  }
}

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

.services__list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease, background-color 200ms ease;
}
.row.is-visible { opacity: 1; transform: translateY(0); }
.row:hover { background: var(--slate-2); }
.row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
  padding-left: 0.75rem;
  transition: transform 200ms ease;
}
.row:hover .row__num { transform: translateX(4px); }
.row__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: var(--ice);
}
.row__copy {
  margin: 0; color: var(--muted); font-size: 0.9375rem;
}
.row__photo {
  width: 80px; height: 80px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--slate-3);
  margin-right: 0.75rem;
}
.row__photo img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 700px) {
  .row { grid-template-columns: 80px 1fr auto; padding: 1.5rem 0; min-height: 120px; }
  .row__title { font-size: 1.5rem; }
  .row__photo { width: 120px; height: 120px; }
}

/* Welcoming */
.welcoming {
  position: relative;
  background: var(--slate-2);
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.welcoming__quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(12rem, 28vw, 26rem);
  color: var(--ice);
  opacity: 0.08;
  top: -2rem;
  left: -1rem;
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
}
.welcoming__inner {
  position: relative; z-index: 1;
  max-width: 880px; margin: 0 auto; text-align: center;
  opacity: 0; transform: translateY(10px);
  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: 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(--accent); }
.welcoming__body {
  color: var(--muted); font-size: 1.0625rem;
  margin: 0 auto 2rem; max-width: 56ch;
}

/* Reviews */
.reviews { padding: var(--pad-y) var(--pad-x); background: var(--slate); }
.reviews__strip {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.quote {
  margin: 0;
  background: var(--slate-3);
  border-radius: var(--radius);
  border-top: 0px solid var(--accent);
  padding: 2rem 1.75rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity 350ms ease, transform 350ms ease, border-top-width 200ms ease;
}
.quote.is-visible { opacity: 1; transform: translateY(0); }
.quote:hover { border-top-width: 3px; }
.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ice);
  margin: 0 0 1rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
@media (min-width: 880px) {
  .reviews__strip { grid-template-columns: repeat(3, 1fr); }
}

/* Location */
.location {
  background: var(--slate-2);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid var(--border);
  border-bottom: 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__hours {
  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: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.25;
  color: var(--ice);
  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(--ice); }
.location__map {
  background: var(--slate-3); border-radius: var(--radius); overflow: hidden;
}
.location__map svg { width: 100%; height: auto; display: block; }
@media (min-width: 900px) {
  .location__grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Contact */
.contact {
  background: var(--slate);
  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(--accent); }
.contact__body { color: var(--muted); margin: 0 0 1.75rem; }

/* Footer */
.footer {
  background: var(--slate); 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(--accent);
  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(--ice); 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(--accent); }
.footer__legal {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.8125rem;
  line-height: 1.6;
}
.footer__ffl { color: var(--ice); margin: 0 0 0.75rem; font-weight: 600; }
.footer__ffl-num { font-family: ui-monospace, "Menlo", monospace; color: var(--accent); }
.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-ghost { opacity: 0.08 !important; transform: none !important; }
  .hero__photo, .hero__bottom { opacity: 1 !important; transform: none !important; }
  .reveal, .row, .quote, .services__head, .welcoming__inner, .contact__inner, .location__info, .location__hours { opacity: 1 !important; transform: none !important; }
}
