/* Sproule Lit commercial storefront v3 — Tailwind companion */
:root {
  --ink: #070707;
  --charcoal: #121212;
  --panel: #181818;
  --cream: #f3ead7;
  --gold: #c9a84c;
  --blood: #9b1c2c;
  --line: rgba(243, 234, 215, 0.12);
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: var(--ink);
  color: var(--cream);
  overflow-x: clip;
}

.font-display { font-family: "Cormorant Garamond", Georgia, serif; }
.font-body { font-family: "Outfit", system-ui, sans-serif; }

.bg-ink { background-color: var(--ink); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-panel { background-color: var(--panel); }
.text-cream { color: var(--cream); }
.text-gold { color: var(--gold); }
.text-blood { color: var(--blood); }
.bg-gold { background-color: var(--gold); }
.bg-blood { background-color: var(--blood); }
.ring-gold\/40 { --tw-ring-color: rgba(201, 168, 76, 0.4); }
.shadow-cover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(243, 234, 215, 0.06);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Nav */
.site-nav a {
  color: rgba(243, 234, 215, 0.72);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}
.site-nav.is-open {
  display: flex !important;
}

.nav-toggle {
  min-height: 44px;
  min-width: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  border-radius: 999px;
  padding: 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--blood);
  color: var(--cream);
}
.btn-primary:hover { background: #b42334; }
.btn-secondary {
  background: var(--gold);
  color: var(--ink);
}
.btn-secondary:hover { filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn.is-hold,
.btn[aria-disabled="true"] {
  opacity: 0.85;
  cursor: default;
}

/* Filters */
.sf-filter {
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(243, 234, 215, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.sf-filter.is-active,
.sf-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* Hero cinematic */
.hero-stage {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,7,0.92) 0%, rgba(7,7,7,0.55) 48%, rgba(7,7,7,0.35) 100%),
    linear-gradient(0deg, rgba(7,7,7,0.95) 0%, rgba(7,7,7,0.2) 45%, rgba(7,7,7,0.55) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.05);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 72rem);
  margin: 0 auto;
  padding: 7rem 0 4rem;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    padding: 8rem 0 5rem;
  }
}
.hero-cover {
  justify-self: center;
  width: min(100%, 22rem);
}
.hero-cover img {
  width: 100%;
  aspect-ratio: 5 / 8;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(243,234,215,0.1);
}

/* Capture */
.sf-capture-form {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .sf-capture-form {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
.sf-capture-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 234, 215, 0.55);
  margin-bottom: 0.4rem;
}
.sf-capture-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.35);
  color: var(--cream);
  padding: 0.75rem 1.2rem;
  font-size: 16px;
}
.sf-capture-form input:focus {
  outline: 2px solid rgba(201, 168, 76, 0.45);
  outline-offset: 2px;
}

.lane-card {
  position: relative;
  display: block;
  padding: 1.75rem;
  background: linear-gradient(160deg, rgba(24,24,24,0.95), rgba(12,12,12,0.98));
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-height: 11rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.lane-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--lane-accent, var(--gold));
}
.lane-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.35);
}

.section-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  border: 0;
}
