/* ============================================================
   Padel Avenue — Pre-Opening Site
   Brand: Black/White minimal + Electric Lime accent
   ============================================================ */

:root {
  --color-bg: #000000;
  --color-bg-alt: #0a0a0a;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f7f7;
  --color-text: #ffffff;
  --color-text-muted: #b3b3b3;
  --color-text-on-surface: #0a0a0a;
  --color-text-on-surface-muted: #555555;
  --color-accent: #c6ff3b;
  --color-accent-dark: #a8e024;
  --color-accent-text: #0a0a0a;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-light: #e6e6e6;

  --font-sans: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;

  --container-max: 1240px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  margin: 0 0 var(--space-3);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin: 0 0 var(--space-3);
  color: var(--color-text-muted);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

body.menu-open .site-header {
  background: transparent;
  border-bottom-color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
}

.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  padding: 0.25rem 0;
}

.nav-logo .nav-logo--avenue {
  font-weight: 400;
  letter-spacing: 0.4em;
  font-size: 0.78em;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 0.7em;
}

.nav-logo .nav-logo--avenue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.4em;
  height: 1px;
  background: var(--color-text-muted);
}

@media (max-width: 540px) {
  .nav-logo {
    font-size: 1rem;
  }
  .nav-logo .nav-logo--avenue {
    display: none;
  }
}

.nav-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--color-accent-dark);
  color: var(--color-accent-text);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-bg);
  background-image: url("/assets/img/hero-action.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: var(--space-12) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.hero h1 {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.hero h1 {
  margin-bottom: var(--space-4);
}

.hero h1 .accent {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-muted);
  max-width: 660px;
  margin: 0 auto var(--space-6);
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-accent-text);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

/* ===== Section ===== */
.section {
  padding: var(--space-12) 0;
}

.section--light {
  background: var(--color-surface);
  color: var(--color-text-on-surface);
}

.section--light p {
  color: var(--color-text-on-surface-muted);
}

.section-eyebrow {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

/* ===== Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}

.feature {
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  transition: border-color var(--transition);
}

.section--light .feature {
  background: var(--color-surface-alt);
  border-color: var(--color-border-light);
}

/* Linked feature card (clickable) */
a.feature {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

a.feature:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

a.feature::after {
  content: "Mehr \2192";
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--transition), transform var(--transition);
}

a.feature:hover::after {
  opacity: 1;
  transform: translateX(0);
}

a.feature:hover h3 {
  color: var(--color-accent);
}

a.feature h3 {
  transition: color var(--transition);
}

.feature-num {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.feature h3 {
  margin-bottom: var(--space-2);
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
}

.section--light .feature h3 {
  color: var(--color-text-on-surface);
}

/* ===== Editorial facilities row (dark, no cards) ===== */
.facilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (max-width: 880px) {
  .facilities {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4) var(--space-3);
  }
}

@media (max-width: 540px) {
  .facilities {
    grid-template-columns: 1fr;
  }
}

.facility {
  position: relative;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.facility::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--color-accent);
}

.facility-num {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.facility h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.facility p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* ===== Split section (image + text) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.split--reverse .split-media {
  order: 2;
}

@media (max-width: 860px) {
  .split--reverse .split-media {
    order: 0;
  }
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 2;
  background: var(--color-bg-alt);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.split:hover .split-media img {
  transform: scale(1.03);
}

.split-content {
  padding: var(--space-4) 0;
}

.split-content .section-eyebrow {
  margin-bottom: var(--space-2);
}

.split-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: var(--space-3);
}

.split-content .btn {
  margin-top: var(--space-3);
}

/* ===== Full-bleed image section with overlay ===== */
.imagery {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: var(--space-12) var(--space-3);
}

.imagery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75));
}

.imagery-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-text);
}

.imagery-content h2 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.imagery-content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* ===== Single full-width image block ===== */
.image-feature {
  margin: var(--space-8) auto 0;
  max-width: var(--container-max);
  padding: 0 var(--space-3);
}

.image-feature-frame {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
}

.image-feature-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Editorial Shop (LV-Style) ===== */

/* Manifesto / large statement blocks */
.manifesto {
  padding: var(--space-16) var(--space-3);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-accent);
}

.manifesto-headline {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 auto var(--space-4);
  max-width: 14ch;
}

.manifesto-body {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 60ch;
  margin: 0 auto;
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-6) auto;
}

/* Objekt sections — LV-style asymmetric full-bleed splits */
.objekt {
  position: relative;
  padding: var(--space-16) 0;
  overflow: hidden;
}

.objekt::before {
  content: attr(data-num);
  position: absolute;
  font-size: clamp(12rem, 24vw, 22rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 0.8;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.objekt--left::before { left: -2vw; }
.objekt--right::before { right: -2vw; }

.objekt-inner {
  position: relative;
  z-index: 1;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
}

@media (max-width: 900px) {
  .objekt-inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.objekt--right .objekt-inner {
  grid-template-columns: 0.95fr 1.05fr;
}

.objekt--right .objekt-media {
  order: 2;
}

@media (max-width: 900px) {
  .objekt--right .objekt-media {
    order: 0;
  }
}

.objekt-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.objekt-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.objekt:hover .objekt-media img {
  transform: scale(1.04);
}

.objekt-content {
  padding: var(--space-3) 0;
}

.objekt-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.objekt-meta::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.objekt-name {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-3);
}

.objekt-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-4);
  max-width: 50ch;
}

.objekt-detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: grid;
  gap: var(--space-1);
}

.objekt-detail-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--space-2);
  padding: 0.55rem 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.92rem;
}

.objekt-detail-list li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.objekt-detail-list dt,
.objekt-detail-list .detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
  padding-top: 2px;
}

.objekt-detail-list dd,
.objekt-detail-list .detail-value {
  margin: 0;
  color: var(--color-text);
}

.objekt-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-accent);
  flex-wrap: wrap;
}

.objekt-price {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.objekt-price-note {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 0.3rem;
}

.objekt-order {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.objekt-order:hover {
  background: var(--color-accent-dark);
  color: var(--color-accent-text);
}

.objekt-order .arrow {
  transition: transform 0.2s ease;
}

.objekt-order:hover .arrow {
  transform: translateX(3px);
}

/* Centered single-image objekt (No. 03) */
.objekt--center .objekt-inner {
  grid-template-columns: 1fr;
  max-width: 980px;
  text-align: center;
}

.objekt--center .objekt-media {
  max-width: 560px;
  margin: 0 auto var(--space-6);
  aspect-ratio: 4/5;
}

.objekt--center .objekt-meta {
  justify-content: center;
}

.objekt--center .objekt-meta::before {
  display: none;
}

.objekt--center .objekt-desc {
  margin-left: auto;
  margin-right: auto;
}

.objekt--center .objekt-foot {
  justify-content: center;
  gap: var(--space-6);
}

.objekt--center .objekt-detail-list {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Video section */
.shop-video {
  position: relative;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.shop-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shop-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-video-overlay {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  z-index: 2;
  color: var(--color-text);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.shop-video-overlay span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.shop-video-overlay strong {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Process section */
.process {
  padding: var(--space-12) var(--space-3);
  max-width: 1200px;
  margin: 0 auto;
}

.process-head {
  text-align: center;
  margin-bottom: var(--space-8);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  counter-reset: step;
}

@media (max-width: 760px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  position: relative;
  padding: var(--space-4) 0 0;
  border-top: 1px solid var(--color-accent);
}

.process-step-num {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.process-step h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: 0.95rem;
  margin: 0;
}

/* In-hall CTA */
.in-hall {
  padding: var(--space-12) var(--space-3);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%),
    url("/assets/img/hall-architecture.jpg");
  background-size: cover;
  background-position: center;
}

.in-hall-inner {
  max-width: 760px;
  margin: 0 auto;
}

.in-hall h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: var(--space-3);
}

.in-hall p {
  font-size: 1.1rem;
  margin: 0 auto var(--space-5);
  max-width: 50ch;
}

.in-hall-row {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Club Detail Landing Pages ===== */
.club-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: var(--space-12) 0 var(--space-8);
  overflow: hidden;
}

.club-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.9) 100%);
}

.club-hero-content {
  position: relative;
  z-index: 1;
}

.club-back {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.club-back:hover {
  color: var(--color-accent);
}

.club-h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 16ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.club-narrow {
  max-width: 760px;
}

.club-lead {
  padding: var(--space-12) 0 var(--space-6);
  text-align: center;
}

.club-lead-body {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

.club-section {
  padding: var(--space-8) 0;
}

.club-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.club-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

.club-pull {
  padding: var(--space-8) 0 var(--space-12);
  text-align: center;
}

.club-pull-quote {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 auto;
  max-width: 24ch;
  position: relative;
}

.club-pull-quote::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto var(--space-3);
}

.club-others {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--color-border);
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

@media (max-width: 760px) {
  .other-grid {
    grid-template-columns: 1fr;
  }
}

.other-link {
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-3);
  border-top: 1px solid var(--color-accent);
  color: var(--color-text);
  transition: background var(--transition), padding-left var(--transition);
}

.other-link:hover {
  background: var(--color-bg-alt);
  padding-left: calc(var(--space-3) + 8px);
  color: var(--color-accent);
}

.other-link-num {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  font-weight: 700;
}

.other-link-name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.other-link-arrow {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  text-align: right;
  transition: transform var(--transition);
}

.other-link:hover .other-link-arrow {
  transform: translateX(3px);
  color: var(--color-accent);
}

/* ===== Product image slider (shop hoodie) ===== */
.objekt-media-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.objekt-media-slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.objekt-media-slider .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.objekt-media-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.objekt-media-slider .slide-label {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-2);
  background: rgba(0,0,0,0.6);
  color: var(--color-text);
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}

.slider-dots {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-2);
  pointer-events: none;
}

.slider-arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--color-text);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
}

.objekt-media-slider:hover .slider-arrow {
  opacity: 1;
}

.slider-arrow:hover {
  background: var(--color-accent);
  color: var(--color-accent-text);
}

/* ===== Legacy Shop / Products (kept for fallback) ===== */
.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6) var(--space-4);
}

@media (max-width: 720px) {
  .products {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.product {
  display: flex;
  flex-direction: column;
}

.product-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  margin-bottom: var(--space-3);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product:hover .product-image img {
  transform: scale(1.04);
}

.product-info {
  padding: 0 var(--space-1);
}

.product-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.section--light .product-label {
  color: var(--color-accent-dark);
}

.product-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
  color: var(--color-text-on-surface);
}

.section--light .product-info p {
  color: var(--color-text-on-surface-muted);
  font-size: 0.95rem;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-on-surface);
  letter-spacing: -0.01em;
}

.btn-small {
  padding: 0.65rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.section--light .btn-secondary {
  color: var(--color-text-on-surface);
  border-color: rgba(0, 0, 0, 0.18);
}

.section--light .btn-secondary:hover {
  border-color: var(--color-text-on-surface);
  background: var(--color-text-on-surface);
  color: var(--color-surface);
}

/* ===== Homepage merch teaser ===== */
.merch-teaser {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.merch-teaser .split-content .section-eyebrow {
  color: var(--color-accent);
}

/* ===== Newsletter / Signup ===== */
.signup {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-4);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.signup h2 {
  margin-bottom: var(--space-2);
}

.signup-form {
  display: flex;
  gap: var(--space-2);
  max-width: 480px;
  margin: var(--space-4) auto 0;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.signup-form input[type="email"]:focus {
  border-color: var(--color-accent);
}

.signup-form input[type="email"]::placeholder {
  color: var(--color-text-muted);
}

.signup-form button {
  flex: 0 0 auto;
}

.signup-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}

.signup-success {
  display: none;
  padding: var(--space-3);
  background: rgba(198, 255, 59, 0.08);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  margin-top: var(--space-3);
}

.signup-success.is-visible {
  display: block;
}

/* ===== Location ===== */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (max-width: 720px) {
  .location {
    grid-template-columns: 1fr;
  }
}

.location-map {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.location-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198, 255, 59, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 255, 59, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.location-map-text {
  position: relative;
  z-index: 1;
  text-align: center;
}

.location-map-text strong {
  display: block;
  font-size: 1.3rem;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.location-map-text span {
  color: var(--color-accent);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-8) 0 var(--space-4);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: var(--space-1);
}

.footer-col a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-brand img {
  height: 40px;
  margin-bottom: var(--space-2);
}

.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.footer-wordmark--avenue {
  font-weight: 400;
  font-size: 0.78em;
  letter-spacing: 0.4em;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 0.7em;
}

.footer-wordmark--avenue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.4em;
  height: 1px;
  background: var(--color-text-muted);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

/* ===== Legal pages ===== */
.legal-page {
  padding: var(--space-12) 0 var(--space-8);
  background: var(--color-surface);
  color: var(--color-text-on-surface);
}

.legal-page .container {
  max-width: 860px;
}

.legal-page p,
.legal-page li {
  color: var(--color-text-on-surface-muted);
}

.legal-page h1,
.legal-page h2,
.legal-page h3 {
  color: var(--color-text-on-surface);
}

.legal-page h2 {
  margin-top: var(--space-6);
}

/* ===== Mobile Nav: Burger Menu ===== */
.nav-burger {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  margin-left: var(--space-2);
  z-index: 110;
}

.nav-burger-bar {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.nav-burger-bar:nth-child(1) { top: 14px; }
.nav-burger-bar:nth-child(2) { top: 21px; }
.nav-burger-bar:nth-child(3) { top: 28px; }

.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] .nav-burger-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 6rem var(--space-4) var(--space-4);
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: flex;
  animation: mobileMenuIn 0.25s ease;
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
}

.mobile-menu-links li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu-links a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-transform: none;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
  color: var(--color-accent);
}

.mobile-menu-cta {
  display: block;
  text-align: center;
  margin-top: var(--space-2);
  padding: 1.1rem;
  background: var(--color-accent);
  color: var(--color-accent-text);
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

.mobile-menu-cta:hover {
  background: var(--color-accent-dark);
  color: var(--color-accent-text);
}

.mobile-menu-meta {
  margin-top: auto;
  padding-top: var(--space-6);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.mobile-menu-meta a {
  color: var(--color-text-muted);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-burger {
    display: block;
  }
}
