@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500&display=swap');

/* ════════════════════════════════════════════════════
   RESET & ROOT
════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #000000;
  --white:      #ffffff;
  --red:        #cc0000;
  --red-dark:   #990000;
  --red-bright: #ff1a1a;
  --gray-900:   #0d0d0d;
  --gray-800:   #151515;
  --gray-700:   #222222;
  --gray-500:   #555555;
  --gray-300:   #aaaaaa;
  --off-white:  #f0ece4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar            { width: 3px; }
::-webkit-scrollbar-track      { background: var(--black); }
::-webkit-scrollbar-thumb      { background: var(--red); }
::selection                    { background: var(--red); color: var(--white); }

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
════════════════════════════════════════════════════ */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.section-label--red { color: var(--red); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  line-height: 0.93;
  letter-spacing: 2px;
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-weight: 600;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-full  { width: 100%; justify-content: center; }
.btn-sm    { padding: 10px 22px; font-size: 12px; letter-spacing: 2px; }

/* ════════════════════════════════════════════════════
   HONEYPOT
════════════════════════════════════════════════════ */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.96), transparent);
  transition: background 0.3s, padding 0.3s;
}
#main-nav.scrolled {
  background: rgba(0,0,0,0.97);
  padding: 14px 52px;
  border-bottom: 1px solid var(--gray-800);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 12px;
  transition: border-color 0.2s, color 0.2s;
}
.lang-switch:hover { border-color: var(--red); color: var(--white); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-label { font-size: 11px; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 280px;
  background: var(--gray-900);
  border-left: 1px solid var(--gray-800);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-link {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-800);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--red); }
.mobile-lang {
  margin-top: 16px;
  font-size: 16px;
  color: var(--gray-300);
  border-bottom: none;
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gray-900);
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
  filter: contrast(1.1) grayscale(0.15);
}
/* Desktop image shown by default; mobile image hidden until ≤768px */
.hero-bg-img--desktop { display: block; }
.hero-bg-img--mobile  { display: none; }
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(140,0,0,0.18) 0%, transparent 60%),
    linear-gradient(160deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.97) 0%,
    rgba(0,0,0,0.5)  40%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 90px;
  max-width: 860px;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.88;
  letter-spacing: 2px;
  margin-bottom: 28px;
  /* stacking context for rotating spans */
  display: grid;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}

/* ── Rotating hero headlines ─────────────────────────────────── */
.hero-headline {
  grid-area: 1 / 1;          /* all spans occupy the same cell  */
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-headline.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 18px;
  line-height: 1.75;
}
.hero-verse {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 52px;
  z-index: 2;
  text-decoration: none;
}
.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--red), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--white);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
}
.marquee-cross { opacity: 0.45; font-size: 13px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════
   COLLECTION
════════════════════════════════════════════════════ */
.section-collection {
  padding: 96px 52px;
  background: var(--gray-900);
}
.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.7;
  margin-top: 16px;
}

/* ── Shared front showcase ── */
.product-front-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.product-front-image {
  aspect-ratio: 3/4;
  background: var(--gray-800);
  overflow: hidden;
  position: relative;
}
.product-front-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-front-copy {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  border-left: 2px solid var(--red);
}
.product-front-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-front-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.product-front-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.product-front-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 400px;
}

/* ── Backs label ── */
.product-backs-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0 20px;
}
.product-backs-label span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-backs-label span::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
}
.product-backs-label span::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--gray-800);
  min-width: 40px;
}

/* ── Backs grid ── */
.product-backs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.product-back-card {
  background: var(--black);
  display: flex;
  flex-direction: column;
}

.product-back-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--black);
  padding: 10px;            /* black frame around each product photo */
}
.product-back-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.product-back-card:hover .product-back-image img { transform: scale(1.04); }

.product-back-number {
  position: absolute;
  top: 18px;   /* 10px padding + 8px clearance from image edge */
  right: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--white);
  background: var(--red);
  padding: 3px 8px;
  line-height: 1.4;
}

/* ── Placeholders ── */
.product-placeholder,
.product-placeholder--back {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--gray-800);
}
.product-placeholder--back { background: #0d0000; }
.product-placeholder-icon {
  font-size: 52px;
  opacity: 0.1;
  line-height: 1;
  color: var(--red);
}
.product-placeholder-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ── Product info (under each back) ── */
.product-info {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray-800);
}
.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-300);
  line-height: 1.6;
}
.product-back-note {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  opacity: 0.75;
  margin-bottom: 2px;
}
.product-info .btn { margin-top: auto; align-self: flex-start; }

/* ════════════════════════════════════════════════════
   FOUNDERS SECTION
════════════════════════════════════════════════════ */
.section-founders {
  background: var(--black);
  padding: 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

.founders-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* Left: copy */
.founders-copy {
  padding: 80px 64px 80px 52px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid var(--gray-800);
}
.founders-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.88;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.founders-title em { font-style: normal; color: var(--red); }

/* Gift box image */
.founders-gift-image-wrap {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--gray-800);
  position: relative;
}
.founders-gift-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founders-gift-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
}
.founders-gift-image-placeholder span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* Gift callout */
.founders-gift {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gray-900);
  border-left: 3px solid var(--red);
  padding: 20px 20px 20px 18px;
}
.founders-gift-icon {
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.9;
  line-height: 1;
}
.founders-gift strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.founders-gift p {
  font-size: 13px !important;
  color: var(--gray-300) !important;
  margin: 0 !important;
}

.founders-verse {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  opacity: 0.6;
  text-transform: uppercase;
}

/* Right: form */
.founders-form-wrap {
  padding: 80px 52px 80px 64px;
  background: var(--gray-900);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Intro text above the form fields */
.founders-form-intro {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-800);
}
.founders-form-intro p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* Form */
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 10px;
}
.req { color: var(--red); }

.form-group input[type="email"],
.form-group input[type="text"] {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus { border-color: var(--red); }
.form-group input::placeholder { color: var(--gray-500); }

/* Select — identical look to email input */
.form-group select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 40px 14px 16px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  /* Red chevron arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpolyline points='1,1 6,6 11,1' fill='none' stroke='%23cc0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select:focus   { border-color: var(--red); }
.form-group select option  { background: #1a1a1a; color: var(--white); }

/* Side-by-side row for size + design */
.form-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.form-row .form-group {
  margin-bottom: 0;
}

/* Size picker */
.size-picker {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.size-btn {
  background: var(--black);
  border: 1px solid var(--gray-700);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.18s;
  min-width: 52px;
  text-align: center;
}
.size-btn:hover   { border-color: var(--white); }
.size-btn.selected { background: var(--red); border-color: var(--red); color: var(--white); }

.size-error {
  font-size: 12px;
  color: var(--red);
  min-height: 18px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.form-disclaimer {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.form-error {
  color: var(--red);
  font-size: 13px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  margin-top: 12px;
  text-align: center;
}

/* Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  font-size: 64px;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1;
}
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 15px;
  color: var(--gray-300);
  font-weight: 300;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.section-about { padding: 100px 52px; background: var(--black); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(100,0,0,0.15) 0%, transparent 70%),
    var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-cross {
  font-size: 100px;
  color: var(--red);
  opacity: 0.12;
  line-height: 1;
}
.about-image-line {
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.9;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.about-title em { font-style: normal; color: var(--red); }
.about-text p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
}
.about-verse {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  border-left: 2px solid var(--red);
  padding-left: 14px;
  opacity: 0.75;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
footer {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
  padding: 64px 52px 28px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-verse {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--red);
  text-transform: uppercase;
  opacity: 0.6;
  border-left: 2px solid var(--red);
  padding-left: 10px;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--gray-800);
}
.footer-bottom p { font-size: 12px; color: var(--gray-700); }
.footer-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-lang:hover { color: var(--red); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #main-nav { padding: 18px 32px; }
  #main-nav.scrolled { padding: 12px 32px; }
  .nav-links { gap: 28px; }

  .section-collection { padding: 72px 32px; }

  /* Front showcase: stack on tablet */
  .product-front-showcase { grid-template-columns: 1fr; }
  .product-front-copy { padding: 40px 32px; border-left: none; border-top: 2px solid var(--red); }

  /* Backs: 3-col stays until 768 */
  .product-backs-grid { grid-template-columns: repeat(3, 1fr); }

  .founders-inner { grid-template-columns: 1fr; }
  .founders-copy { padding: 60px 32px; border-right: none; border-bottom: 1px solid var(--gray-800); }
  .founders-gift-image-wrap { aspect-ratio: 16/9; } /* wider crop on tablet */
  .founders-form-wrap { padding: 60px 32px; }

  .section-about { padding: 72px 32px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 440px; }

  footer { padding: 52px 32px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  #main-nav { padding: 16px 24px; }
  #main-nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero-content { padding: 0 24px 72px; }
  .hero-scroll { right: 24px; }
  .hero-bg-img--desktop { display: none; }
  .hero-bg-img--mobile  { display: block; }

  .section-collection { padding: 56px 24px; }

  /* Backs: 2-col on mobile */
  .product-backs-grid { grid-template-columns: 1fr 1fr; }

  .founders-copy { padding: 48px 24px; }
  .founders-form-wrap { padding: 48px 24px; }
  .founders-form-intro p { font-size: 14px; }

  .section-about { padding: 56px 24px; }

  footer { padding: 40px 24px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(60px, 16vw, 100px); }
  .founders-title { font-size: clamp(48px, 13vw, 72px); }

  /* Backs: single column on tiny screens */
  .product-backs-grid { grid-template-columns: 1fr; max-width: 400px; }
}
