/* =========================================================
   DANGEROUS FASHION — stylesheet
   Tokens: ink #0D0D0D, red #E1121E, bone #F5F2ED, white #FFFFFF,
           charcoal #17171A, wood #8B5A2B (accent only)
   Type: 'Anton' (display) / 'Work Sans' (body + UI)
   ========================================================= */

:root {
  --ink: #0d0d0d;
  --charcoal: #17171a;
  --charcoal-2: #202024;
  --red: #e1121e;
  --red-dark: #a80e18;
  --bone: #f5f2ed;
  --white: #ffffff;
  --wood: #8b5a2b;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(13, 13, 13, 0.12);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", "Segoe UI", sans-serif;

  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, dl, dd, figure, address {
  margin: 0;
}
ul { list-style: none; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* subtle film-grain overlay for texture, no motion */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.section-kicker--light { color: var(--red); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.brand-o { color: var(--red); }
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--red);
  transition: right 0.25s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  font-weight: 600;
  transition: background 0.25s var(--ease);
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,7,0.55) 0%, rgba(6,6,7,0.25) 30%, rgba(6,6,7,0.55) 68%, rgba(6,6,7,0.95) 100%),
    linear-gradient(90deg, rgba(6,6,7,0.75) 0%, rgba(6,6,7,0.15) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 8rem var(--gutter) 5.5rem;
  color: var(--white);
}
.hero-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  max-width: 14ch;
  color: var(--white);
}
.hero-title em {
  font-style: normal;
  color: var(--red);
}
.hero-lede {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 2rem;
  width: 30px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: none;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: var(--red);
  border-radius: 50%;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  75% { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(18px); opacity: 0; }
}
@media (min-width: 720px) { .scroll-cue { display: block; } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 32s linear infinite;
  padding: 0.85rem 0;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--white);
  padding: 0 1.1rem;
  white-space: nowrap;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about {
  padding: 6.5rem 0;
}
.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 30px 60px -30px rgba(13,13,13,0.45);
}
.about-media-tag {
  position: absolute;
  left: -1.1rem;
  bottom: 1.6rem;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.1rem;
  border-left: 4px solid var(--red);
}
.about-copy h2 { margin-bottom: 1.3rem; max-width: 12ch; }
.about-copy p { max-width: 52ch; color: #3a3a3a; margin-bottom: 1rem; }
.pull-quote {
  font-family: var(--font-display);
  text-transform: none;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink);
  border-left: 4px solid var(--red);
  padding-left: 1.1rem;
  margin: 1.6rem 0 1.8rem;
  line-height: 1.25;
}
.about-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
}
.stat-label {
  font-size: 0.8rem;
  color: #555;
  max-width: 14ch;
}

/* ---------- Collection ---------- */
.collection {
  background: var(--ink);
  color: var(--white);
  padding: 6.5rem 0;
  position: relative;
}
.collection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 68px);
  pointer-events: none;
}
.section-head {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 3rem;
}
.section-head h2 { max-width: 14ch; margin-bottom: 1rem; }
.section-intro { max-width: 56ch; color: rgba(255,255,255,0.68); }
.collection .section-intro { color: rgba(255,255,255,0.62); }
.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head--split .section-intro { margin-bottom: 0.4rem; }

.cat-grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1.1rem;
}
.cat-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  grid-column: span 2;
}
.cat-card--wide { grid-column: span 4; grid-row: span 1; }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(0deg, rgba(6,6,7,0.92) 0%, rgba(6,6,7,0.05) 100%);
}
.cat-card-body h3 { color: var(--white); margin-bottom: 0.35rem; }
.cat-card-body p { font-size: 0.9rem; color: rgba(255,255,255,0.72); max-width: 32ch; }

.cat-card--accent {
  background: var(--red);
  display: flex;
  align-items: center;
}
.cat-card-body--accent {
  position: static;
  background: none;
  padding: 1.8rem;
}
.cat-card-body--accent h3 { color: var(--white); }
.cat-card-body--accent p { color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.cat-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease);
}
.cat-link:hover { border-color: var(--white); }

/* ---------- Showroom gallery ---------- */
.showroom {
  padding: 6.5rem 0;
  background: var(--bone);
}
.gallery {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 0 var(--red);
  transition: box-shadow 0.25s var(--ease);
}
.gallery-item:hover::after { box-shadow: inset 0 0 0 3px var(--red); }
.gallery-item--tall { grid-row: span 2; }

/* ---------- Visit ---------- */
.visit {
  background: var(--ink);
  color: var(--white);
}
.visit-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.visit-copy {
  padding: 5.5rem var(--gutter);
}
.visit-copy h2 { margin-bottom: 1.6rem; max-width: 10ch; }
.visit-copy address {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}
.visit-hours {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  margin-bottom: 2.4rem;
}
.visit-hours div {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.visit-hours dt { color: rgba(255,255,255,0.6); font-weight: 500; }
.visit-hours dd { color: var(--white); font-weight: 600; }
.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.visit-map { min-height: 420px; position: relative; }
.visit-map iframe {
  width: 100%; height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4rem var(--gutter) 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand .brand-word { font-size: 1.6rem; }
.footer-brand p { margin-top: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.55rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.to-top {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.to-top:hover { color: var(--red); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,6,7,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
}
.lightbox-close:hover { color: var(--red); }

/* ---------- Reveal-on-scroll (single, restrained) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { grid-column: span 1; }
  .cat-card--wide { grid-column: span 2; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .gallery-item--tall { grid-row: span 1; }
  .visit-inner { grid-template-columns: 1fr; }
  .visit-map { min-height: 340px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .main-nav a { width: 100%; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 1rem; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-content { padding-top: 7rem; padding-bottom: 4rem; }
  .about, .collection, .showroom { padding: 4.5rem 0; }
  .about-stats { gap: 1.6rem; }
  .cat-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .cat-card, .cat-card--wide { grid-column: span 1; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item { height: 260px; }
  .visit-copy { padding: 4rem var(--gutter); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}

@media (max-width: 460px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
