/* V4-06 The Bold — pure black + white + fire red; Bebas Neue display at viewport scale. */

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --red: #d42b2b;
  --grey: #888888;
  --grey-border: #333333;
  --card-bg: #111111;
  --font-display: "Bebas Neue", impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1400px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(5rem, 10vw, 8rem);
}

/* ---------- Base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn--primary {
  background: var(--white);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--red);
  color: var(--white);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost-light:hover {
  background: var(--white);
  color: var(--black);
}

.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--ghost-white:hover {
  background: var(--white);
  color: var(--red);
}

.btn--phone {
  background: var(--red);
  color: var(--white);
  min-height: 44px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
}

.btn--phone:hover {
  background: var(--black);
  color: var(--white);
}

/* ---------- Nav ---------- */

.nav {
  background: var(--white);
  border-bottom: 2px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding-block: 0.75rem;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--black);
}

.nav__links {
  display: none;
  flex: 1;
  gap: 1.75rem;
  justify-content: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
}

.nav__links a:hover {
  color: var(--red);
}

@media (min-width: 860px) {
  .nav__links {
    display: flex;
  }
}

.nav__inner > .btn--phone {
  margin-left: auto;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  background-color: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1644144557346-5775e758b7f7?w=1800&auto=format&fit=crop&q=85");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(3rem, 8vw, 6rem);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hero__title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 400ms ease-out forwards;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__eyebrow {
  margin: 0;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* ---------- Trust strip ---------- */

.trust {
  background: var(--white);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.trust__inner {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.trust__ffl {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.8vw, 1.25rem);
  letter-spacing: 0.12em;
  color: var(--black);
}

.trust__sub {
  margin: 0.5rem 0 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--black);
  text-transform: uppercase;
}

/* ---------- Services ---------- */

.services {
  background: var(--black);
  color: var(--white);
  padding-block: var(--section);
}

.services__heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}

.services__lede {
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  max-width: 52ch;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--grey);
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.svc-card {
  background: var(--card-bg);
  border: 1px solid var(--grey-border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 1;
}

.svc-card[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease-out, transform 280ms ease-out;
}

.svc-card[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.svc-card__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--red);
}

.svc-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.svc-card__body {
  margin: 0;
  flex: 1;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--grey);
}

.svc-card__cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease;
}

.svc-card__cta:hover {
  color: var(--red);
  border-color: var(--red);
}

/* ---------- Shop photos ---------- */

.shop-photos {
  background: var(--white);
  padding-top: var(--section);
}

.shop-photos__heading {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--black);
}

.shop-photos__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 760px) {
  .shop-photos__row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.shop-photos__item {
  margin: 0;
}

.shop-photos__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* ---------- Welcoming (full-bleed red) ---------- */

.welcoming {
  background: var(--red);
  color: var(--white);
  padding-block: var(--section);
  opacity: 1;
}

.welcoming[data-reveal] {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.welcoming[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.welcoming__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.welcoming__heading {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
}

.welcoming__body {
  margin: 0;
  max-width: 52ch;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--white);
}

/* ---------- Reviews ---------- */

.reviews {
  background: var(--white);
  color: var(--black);
  padding-block: var(--section);
}

.reviews__heading {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--black);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 820px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review__quote {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.5;
  color: var(--black);
}

.review__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Location ---------- */

.location {
  background: var(--white);
  color: var(--black);
  padding-block: var(--section);
  border-top: 1px solid var(--black);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .location__inner {
    grid-template-columns: 2fr 1fr;
  }
}

.location__heading {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--black);
}

.location__address {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--black);
}

.location__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 0.25rem;
  margin: 0 0 2rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
}

.location__hours dt {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.location__hours dd {
  margin: 0;
  color: var(--black);
}

.location__map {
  width: 100%;
}

.map {
  width: 100%;
  height: auto;
  border: 1px solid var(--black);
  display: block;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--black);
  color: var(--white);
  padding-block: var(--section);
}

.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact__heading {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}

.contact__body {
  margin: 0;
  max-width: 52ch;
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--white);
}

.contact .btn--primary {
  background: var(--red);
  color: var(--white);
}

.contact .btn--primary:hover {
  background: var(--white);
  color: var(--red);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--grey-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__text {
  margin: 0;
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--white);
}

.footer__text a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--grey);
}

.footer__text a:hover {
  color: var(--red);
  border-color: var(--red);
}

.footer__list,
.footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__list a,
.footer__social a {
  font-weight: 400;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--white);
}

.footer__list a:hover,
.footer__social a:hover {
  color: var(--red);
}

.footer__bottom {
  border-top: 1px solid var(--grey-border);
  background: var(--black);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.75rem;
}

.footer__ffl {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer__ffl-num {
  color: var(--red);
  font-weight: 600;
}

.footer__disclaimer {
  margin: 0;
  max-width: 72ch;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--grey);
}

.footer__copy {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0ms !important;
    transition-delay: 0ms !important;
  }

  .hero__title {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .svc-card[data-reveal],
  .welcoming[data-reveal] {
    opacity: 1;
    transform: none;
  }
}
