:root {
  --bg: #080606;
  --bg-elevated: #121010;
  --bg-glass: rgba(18, 12, 12, 0.78);
  --paper: #ece6e0;
  --muted: #9a9088;
  --red: #7a2222;
  --red-soft: #5c1a1a;
  --line: rgba(180, 80, 80, 0.18);
  --display: "Sora", system-ui, sans-serif;
  --body: "Source Sans 3", system-ui, sans-serif;
  --max: 1140px;
  --nav-pad: 108px;
  --radius: 18px;
  --pill: 100px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--paper);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 78% 6%, rgba(122, 34, 34, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 60% 45% at 12% 88%, rgba(92, 26, 26, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, #0c0808 0%, var(--bg) 42%, #070505 100%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 2000;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  left: 10px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  width: min(90%, var(--max));
  margin: 0 auto;
  padding: 0.75rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--bg-glass);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.navbar.scrolled::before {
  background: rgba(8, 6, 6, 0.92);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 10px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
}

.logo-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.nav-links a {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--paper);
}

.btn-nav-login {
  background: rgba(122, 34, 34, 0.35) !important;
  color: var(--paper) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--pill) !important;
  border: 1px solid var(--line) !important;
  font-weight: 600 !important;
}

.btn-nav-login:hover {
  background: rgba(122, 34, 34, 0.55) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

main {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-pad);
}

.hero {
  min-height: calc(100svh - var(--nav-pad));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 0 5rem;
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.eyebrow,
.section-label {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b07070;
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 700;
}

.hero-lead,
.page-hero p,
.section-subtitle {
  color: var(--muted);
  max-width: 34rem;
}

.hero-actions,
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-primary {
  background: var(--red-soft);
  color: #fff;
  border: 1px solid rgba(180, 80, 80, 0.35);
}

.btn-primary:hover {
  background: var(--red);
}

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: #8a4040;
}

.btn-large {
  width: 100%;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin: 0.6rem 0 0.8rem;
}

.page-hero {
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin-top: 0.4rem;
}

.page-hero p {
  margin-top: 0.7rem;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 5rem;
}

.story-row:last-child {
  margin-bottom: 0;
}

.story-row-flip .story-visual {
  order: -1;
}

.story-copy h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.story-icon {
  width: 28px;
  height: 28px;
  color: #c45c5c;
  flex-shrink: 0;
}

.story-copy p {
  color: #d5cdc6;
  margin-bottom: 0.9rem;
}

.story-visual {
  min-height: 280px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.visual-a {
  background:
    radial-gradient(circle at 55% 45%, rgba(160, 50, 70, 0.45), transparent 36%),
    linear-gradient(145deg, #1a1012, #090707);
}

.visual-b {
  background:
    radial-gradient(circle at 30% 60%, rgba(90, 20, 20, 0.4), transparent 42%),
    linear-gradient(180deg, #161010, #080606);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.shot {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.shot-visual {
  height: 210px;
  display: grid;
  place-items: center;
}

.shot-visual span {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(236, 230, 224, 0.14);
}

.shot-a {
  background: radial-gradient(circle at 50% 55%, #2a201c, #0c0909 68%);
}

.shot-b {
  background: linear-gradient(135deg, #1a1010, #0b0808 60%, #160c0c);
}

.shot-c {
  background: linear-gradient(180deg, #161010, #090707);
}

.shot-body {
  padding: 1.25rem 1.3rem 1.5rem;
}

.shot-body h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.shot-body p {
  color: var(--muted);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.social-card {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 1.8rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.social-card:hover {
  border-color: rgba(180, 80, 80, 0.5);
}

.social-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #d8b0b0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #0c0909;
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.social-card strong {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
}

.social-card span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.page-content {
  max-width: 700px;
}

.page-content h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
}

.page-content p,
.page-content a {
  color: #d5cdc6;
}

.page-content a {
  color: #c48a8a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d746c;
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 0.28rem 0;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: #7d746c;
}

.footer-credit {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #7d746c;
}

.footer-credit a {
  color: #c48a8a;
  border-bottom: 1px solid rgba(196, 138, 138, 0.45);
}

.footer-credit a:hover {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible,
.js-off .reveal {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 920px) {
  .intro-band,
  .story-row,
  .catalog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-row-flip .story-visual {
    order: 0;
  }

  .navbar {
    top: 12px;
    width: calc(100% - 1.5rem);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: rgba(8, 6, 6, 0.97);
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
