/* ============================================================
   SURF SKATE SNOW v2 — Magazine/Zine Template
   Dark ground, Amador blackletter hero, bold editorial layout
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --black:      #0a0906;
  --off-black:  #111009;
  --surface:    #161410;
  --surface-2:  #1e1b16;
  --border:     #2a2620;
  --divider:    #222018;

  --white:      #f5f0e8;
  --off-white:  #e8e2d8;
  --muted:      #7a7268;
  --faint:      #3a3630;

  --orange:     #f07418;
  --orange-dim: rgba(240,116,24,0.14);
  --orange-hot: #e05e00;
  --blue:       #1e8fb5;

  --font-blackletter: amador, 'UnifrakturMaguntia', serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-ui:   'Helvetica Neue', Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 160ms var(--ease);
  --mid:  320ms var(--ease);
  --slow: 600ms var(--ease);

  --r-sm: 3px;
  --r-md: 6px;
  --r-lg: 12px;
  --r-xl: 20px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  background: var(--black);
  color: var(--white);
}
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--orange-dim); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- BUTTONS ---- */
.btn-solid {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  transition: background var(--fast), transform var(--fast);
}
.btn-solid:hover { background: var(--orange-hot); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color var(--fast), color var(--fast);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.btn-outline-dark {
  color: var(--off-black);
  border-color: rgba(0,0,0,0.2);
}
.btn-outline-dark:hover { border-color: rgba(0,0,0,0.5); color: var(--off-black); }

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
  width: 100%;
  background: #000;
  overflow: hidden;
  line-height: 0;
  /* sits above the fixed nav — nav accounts for it via scroll-padding */
}
.top-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 9, 6, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 52px);
  height: 96px;
  transition: background var(--mid), box-shadow var(--mid), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: border-color var(--fast);
}
.nav-logo-link:hover .nav-logo-img { border-color: var(--orange); }
.site-nav.nav-hidden { transform: translateY(-100%); }

.nav-center {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
}
.nav-center a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--fast);
  position: relative;
}
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width var(--mid);
}
.nav-center a:hover { color: var(--white); }
.nav-center a:hover::after { width: 100%; }

.nav-wordmark-link { display: flex; align-items: center; }
.nav-wordmark-img {
  height: 76px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-icon { color: var(--muted); transition: color var(--fast); }
.nav-icon:hover { color: var(--orange); }
/* Desktop signup button in nav */
.nav-signup-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--orange);
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--fast), color var(--fast);
  margin-left: 8px;
}
.nav-signup-btn:hover { background: var(--orange); color: var(--black); }

/* Signup modal */
.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.signup-modal.open { display: flex; }
.signup-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}
.signup-modal-content {
  position: relative;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  animation: modalIn var(--mid) ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.signup-modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  transition: color var(--fast);
}
.signup-modal-close:hover { color: var(--white); }
.signup-modal-divider {
  width: 60px;
  height: 1px;
  background: var(--orange);
  margin: 0 auto 20px;
  opacity: 0.7;
}
.signup-modal-label {
  font-family: var(--font-blackletter);
  font-size: 1.75rem;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.signup-modal-copy {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 22px;
  line-height: 1.5;
}
.signup-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup-modal-input {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--fast);
}
.signup-modal-input:focus { border-color: var(--orange); }
.signup-modal-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.signup-modal-btn {
  padding: 13px 20px;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--fast);
}
.signup-modal-btn:hover { opacity: 0.85; }
.signup-modal-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.signup-modal-confirm {
  color: var(--orange);
  font-size: 0.95rem;
  margin: 14px 0 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--mid), max-height var(--mid);
}
.signup-modal-confirm.visible { opacity: 1; max-height: 120px; }

.nav-hamburger { display: flex; flex-direction: column; gap: 5px; padding: 4px; background: transparent; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all var(--mid); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--slow);
  visibility: hidden;
  padding: 80px 24px 32px;
  overflow-y: auto;
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: auto 0;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; }
.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 20px;
  color: var(--muted);
  transition: color var(--fast);
}
.drawer-close:hover { color: var(--white); }

/* Drawer email signup (bottom) */
.drawer-signup {
  width: 100%;
  max-width: 340px;
  margin-top: auto;
  text-align: center;
}
.drawer-signup-divider {
  width: 60px;
  height: 1px;
  background: var(--orange);
  margin: 0 auto 18px;
  opacity: 0.7;
}
.drawer-signup-label {
  font-family: var(--font-blackletter);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.drawer-signup-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.drawer-signup-input {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--fast);
}
.drawer-signup-input:focus { border-color: var(--orange); }
.drawer-signup-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.drawer-signup-btn {
  padding: 12px 20px;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--fast);
}
.drawer-signup-btn:hover { opacity: 0.85; }
.drawer-signup-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.drawer-signup-confirm {
  color: var(--orange);
  font-size: 0.9rem;
  margin: 12px 0 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--mid), max-height var(--mid);
}
.drawer-signup-confirm.visible {
  opacity: 1;
  max-height: 100px;
}
.drawer-link {
  font-family: var(--font-blackletter);
  font-size: clamp(1.6rem, 6vw, 3.2rem);
  color: var(--muted);
  transition: color var(--fast);
  text-align: center;
  padding: 0.5rem 1rem;
  max-width: 90vw;
  line-height: 1.15;
}
.drawer-link:hover, .drawer-link:active { color: var(--orange); }
@media (max-width: 480px) {
  .drawer-link { font-size: 1.5rem; }
  .mobile-drawer { gap: 4px; }
}

/* ============================================================
   WORDMARK BANNER — below nav, above hero
   ============================================================ */
.wordmark-banner {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wordmark-banner-img {
  width: 100%;
  height: auto;
  display: block;
  line-height: 0;
}
.wordmark-logo-wrap {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(8px, 1.5vw, 20px) 0 clamp(16px, 2.5vw, 32px);
  width: 100%;
}
.wordmark-logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* BOOMBOX flyer */
.boombox-wrap {
  background: #000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0;
  min-height: 60vw;
}
.boombox-img {
  width: 50%;
  flex: 1 1 50%;
  display: block;
  object-fit: contain;
  object-position: center top;
  background: #000;
}
.boombox-side-img {
  width: 50%;
  flex: 1 1 50%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ============================================================
   HERO — full bleed photo
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  background: #000;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.hero-photo.loaded { }
.hero-overlay {
  display: none;
}
.hero-content {
  display: none;
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-tagline {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll {
  position: absolute;
  bottom: clamp(24px, 4vw, 40px);
  right: clamp(24px, 4vw, 48px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scrollDrop 2s 0.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--orange);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 5.5s linear infinite;
}
.ticker-track span {
  font-family: var(--font-blackletter);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: #fff;
  padding: 0 10px;
}
.ticker-dot { opacity: 0.5; padding: 0 2px !important; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Note: ticker-track must contain an even number of identical halves */

/* ============================================================
   SPORT PANELS
   ============================================================ */
.panels { display: flex; flex-direction: column; }

.panel {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.panel-img-wrap {
  position: absolute;
  inset: 0;
}
.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.panel:hover .panel-img { transform: scale(1.04); }
.panel-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 65%);
}
.panel-scrim.panel-scrim-right {
  background: linear-gradient(to left, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 65%);
}
.panel-content {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 72px);
  max-width: 520px;
}
.panel-content-right {
  margin-left: auto;
  text-align: right;
}
.panel-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.panel-heading {
  font-family: var(--font-blackletter);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 18px;
}
.panel-body {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255,255,255,0.72);
  max-width: 36ch;
  line-height: 1.7;
  margin-bottom: 24px;
}
.panel-link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  transition: letter-spacing var(--fast);
}
.panel-link:hover { letter-spacing: 0.26em; }

/* SSS Trademark inline logo */
.sss-trademark-inline {
  height: 1.4em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.05em;
  position: relative;
  top: -0.385em;
}

/* ============================================================
   WATCH SECTION
   ============================================================ */
.watch-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: clamp(52px, 6vw, 100px) clamp(24px, 5vw, 72px);
}
.watch-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.watch-heading {
  font-family: var(--font-blackletter);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.watch-heading em {
  font-style: normal;
  color: var(--orange);
}
.watch-all-link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--fast);
}
.watch-all-link:hover { color: var(--orange); }

.watch-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
}
.watch-card { display: flex; flex-direction: column; gap: 14px; }
.watch-card-large { grid-row: span 1; }

.watch-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 16/10;
  background: var(--surface);
}
.watch-card-large .watch-thumb { aspect-ratio: 16/9; }
.watch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.watch-card:hover .watch-thumb img { transform: scale(1.06); }
.watch-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast), transform var(--fast);
}
.watch-card-large .watch-play { width: 60px; height: 60px; }
.watch-play svg { width: 18px; height: 18px; margin-left: 3px; }
.watch-card-large .watch-play svg { width: 24px; height: 24px; }
.watch-card:hover .watch-play { background: var(--orange-hot); transform: translate(-50%, -50%) scale(1.1); }
.watch-duration {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
}
.watch-info { padding: 0 2px; }
.watch-tag {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.watch-title {
  font-family: var(--font-ui);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.watch-card-large .watch-title { font-size: clamp(16px, 1.4vw, 20px); }
.watch-desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   COMMUNITY — full bleed asymmetric
   ============================================================ */
.community-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.community-photo-wrap {
  position: absolute;
  inset: 0;
}
.community-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.2) 100%);
}
.community-text {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vw, 120px) clamp(28px, 6vw, 90px);
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.community-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}
.community-heading {
  font-family: var(--font-blackletter);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 400;
  line-height: 0.88;
  color: var(--white);
}
.community-text p {
  font-size: clamp(14px, 1.1vw, 17px);
  color: rgba(255,255,255,0.7);
  max-width: 40ch;
  line-height: 1.75;
}
.community-text a:not(.btn-solid) {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--white);
  color: var(--off-black);
  padding: clamp(52px, 6vw, 100px) clamp(24px, 5vw, 72px);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.about-mlsss-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-mlsss-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}
.about-wordmark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-wordmark-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--r-md);
  filter: contrast(1.05);
}
.about-heading {
  font-family: var(--font-blackletter);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--off-black);
  margin-bottom: 20px;
}
.about-copy p {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #444;
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 32px;
}
.about-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: clamp(36px, 4vw, 64px) clamp(24px, 5vw, 72px) clamp(24px, 3vw, 40px);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 24px;
}
.footer-logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--fast);
}
.footer-nav a:hover { color: var(--orange); }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { color: var(--muted); transition: color var(--fast); }
.footer-socials a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.08em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .watch-grid { grid-template-columns: 1fr 1fr; }
  .watch-card-large { grid-column: span 2; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-wordmark-img { max-width: 360px; }
  .about-mlsss-img { max-width: 360px; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 55vw; min-height: 280px; }
  .hero-left { min-height: 60vw; }
  .hero-wordmark { font-size: clamp(3rem, 12vw, 6rem); }
  .nav-center { display: flex; }
  .nav-wordmark-img { height: 52px; }
  .panel { height: 65vw; min-height: 380px; }
  .watch-grid { grid-template-columns: 1fr; }
  .watch-card-large { grid-column: auto; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .panel-content, .panel-content-right { text-align: left; margin-left: 0; }
}

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
  background: var(--off-black);
  padding: clamp(52px, 6vw, 100px) clamp(24px, 5vw, 72px);
}
.shop-header {
  text-align: center;
  margin-bottom: 40px;
}
.shop-heading {
  font-family: var(--font-blackletter);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.shop-heading em { color: var(--orange); font-style: normal; }
.shop-sub {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Category filter tabs */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.shop-filter {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-blackletter);
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.shop-filter:hover { border-color: var(--orange); color: var(--white); }
.shop-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* Product grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.product-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #1a1a1a;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.product-img-tall { object-position: top; }
.product-img-dark { background: #000; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  border: none;
  font-family: var(--font-blackletter);
  font-size: 1rem;
  padding: 14px;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.25s;
  letter-spacing: 0.04em;
}
.product-card:hover .product-quick-add { transform: translateY(0); }
.product-info {
  padding: 14px 16px 18px;
}
.product-cat {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}
.product-name {
  font-family: var(--font-blackletter);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.product-price {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: #0d0d0d;
  z-index: 901;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-title {
  font-family: var(--font-blackletter);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.cart-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cart-close:hover { color: var(--white); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.cart-empty.hidden { display: none; }
.cart-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cart-subtotal {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.cart-subtotal strong { color: var(--white); }

/* Cart item row */
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
}
.cart-item-name {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}
.cart-item-price { font-size: 0.85rem; color: var(--orange); }
.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 4px 8px;
}
.cart-qty-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 2px;
  transition: color 0.15s;
}
.cart-qty-btn:hover { color: var(--orange); }
.cart-qty-num { font-size: 0.9rem; color: var(--white); min-width: 16px; text-align: center; }
.cart-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.15s;
}
.cart-remove:hover { color: #ff4444; }

/* Nav cart button */
.nav-cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s;
}
.cart-count.bump { transform: scale(1.4); }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.checkout-modal {
  background: #111;
  border-radius: 12px;
  width: min(600px, 100%);
  max-height: 90dvh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
}
.modal-overlay.open .checkout-modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }
.modal-heading {
  font-family: var(--font-blackletter);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
}
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-sm { max-width: 100px; }
.form-group label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus { border-color: var(--orange); }
.form-divider {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 8px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.order-summary {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.btn-full { width: 100%; text-align: center; justify-content: center; margin-top: 4px; }
.order-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
  gap: 16px;
}
.order-success.visible { display: flex; }
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-success h3 {
  font-family: var(--font-blackletter);
  font-size: 2rem;
  color: var(--white);
}
.order-success p { color: rgba(255,255,255,0.6); }

/* Responsive shop */
@media (max-width: 1100px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .shop-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* SHOP COMING SOON */
.shop-coming-soon {
  padding: 4rem 2rem 5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.shop-cs-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.shop-cs-line {
  flex: 1;
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}
.shop-cs-label {
  font-family: var(--font-blackletter);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--orange);
  letter-spacing: 0.15em;
  white-space: nowrap;
  margin: 0;
}
.shop-cs-copy {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.shop-cs-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto 1rem;
  border: 1px solid var(--orange);
  border-radius: 4px;
  overflow: hidden;
}
.shop-cs-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}
.shop-cs-input::placeholder { color: rgba(255,255,255,0.35); }
.shop-cs-btn {
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: var(--font-blackletter);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.shop-cs-btn:hover { background: #e06800; }
.shop-cs-confirm {
  display: none;
  color: var(--orange);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.shop-cs-confirm.visible { display: block; }
