/* ==========================================================================
   noord padel — landing page styles

   Page-specific styles for the public landing only. Tokens and base
   primitives (buttons, inputs, labels, fades) come from output.css /
   tokens.css. This file ports the editorial section chrome from
   design/index.html.
   ========================================================================== */

.wrap {
  max-width: var(--maxw, 1440px);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.mono  { font-family: var(--font-mono); font-weight: 400; }

/* ─── Section chrome ──────────────────────────────────────── */
.landing section { padding: 120px 0; position: relative; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--oak-deep); }
.section-lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 64px;
}
.eyebrow-rule {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow-rule::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rule-strong);
}

/* ─── Hero ────────────────────────────────────────────────── */
.hero { padding: 48px 0 80px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  min-height: 78vh;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
}
.hero-kicker {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero-kicker .line { flex: 0 0 48px; height: 1px; background: var(--rule-strong); }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(54px, 8vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  text-wrap: balance;
  color: var(--ink);
}
.hero h1 em { font-style: italic; color: var(--oak-deep); }
.hero-sub {
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .arr { width: 14px; height: 14px; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(155deg, #1b3343 0%, #0B1E2C 60%, #081623 100%);
  box-shadow: var(--shadow-deep);
}
.hero-visual .court {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .court svg { width: 78%; height: auto; opacity: 0.85; }
.hero-meta {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  display: flex; justify-content: space-between; align-items: end;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta .tag { opacity: 0.7; }
.hero-meta .oak { color: var(--oak); opacity: 1; }
.hero-meta .num {
  font-family: var(--font-display);
  font-size: 38px;
  font-style: italic;
  line-height: 1;
  text-transform: none;
  letter-spacing: -0.02em;
}

.hero-ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 72px;
  padding: 18px 0;
  display: flex; gap: 64px;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-ticker-track {
  display: flex; gap: 64px;
  animation: ticker 45s linear infinite;
}
.hero-ticker span { display: inline-flex; align-items: center; gap: 14px; }
.hero-ticker span::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--oak);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Digital (dark) ──────────────────────────────────────── */
.digital { background: var(--ink); color: var(--paper); }
.digital .eyebrow-rule { color: #93a8b5; }
.digital .eyebrow-rule::before { background: #2a4457; }
.digital .section-title { color: var(--paper); }
.digital .section-title em { color: var(--oak); }
.digital .section-lede { color: #a8bcc9; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244, 241, 235, 0.12);
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 44px 36px 48px;
  border-right: 1px solid rgba(244, 241, 235, 0.12);
  position: relative;
  transition: background 0.3s;
}
.step:last-child { border-right: 0; }
.step:hover { background: rgba(244, 241, 235, 0.03); }
@media (max-width: 860px) {
  .step { border-right: 0; border-bottom: 1px solid rgba(244, 241, 235, 0.12); }
  .step:last-child { border-bottom: 0; }
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #93a8b5;
  margin-bottom: 100px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--paper);
  font-weight: 400;
}
.step-body {
  color: #a8bcc9;
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}
.step-icon { position: absolute; right: 36px; top: 44px; width: 42px; height: 42px; opacity: 0.5; }

.digital-timer {
  margin-top: 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.timer-big {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
}
.timer-big em { font-style: italic; color: var(--oak); }
.timer-caption {
  max-width: 28ch;
  color: #a8bcc9;
  font-size: 16px;
  line-height: 1.5;
}

/* ─── Clubs grid ──────────────────────────────────────────── */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  margin-top: 24px;
}
@media (max-width: 560px) { .clubs-grid { grid-template-columns: 1fr; } }
.club {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  color: inherit;
  transition: background 0.2s;
}
.club:last-child { border-right: 0; }
.club-active { background: var(--ink); color: var(--paper); }
.club-active:hover { background: #000; }
.club:not(.club-active):hover { background: var(--paper-2); }
.club-status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  opacity: 0.8;
}
.club-status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--oak);
  animation: pulse-oak 2.2s infinite;
}
.club-soon { color: var(--muted); }
.club-active .club-soon,
.club-active .club-status { opacity: 1; color: #93a8b5; }
.club-city {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: auto;
  opacity: 0.6;
}
.club-name {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.club-name em { font-style: italic; color: var(--oak); }
.club-meta { font-size: 13px; line-height: 1.4; color: var(--muted); margin-top: auto; }
.club-active .club-meta { color: #a8bcc9; }
.club { min-height: 200px; }
.club-ghost { opacity: 0.7; }
.club-ghost .club-name { color: var(--muted); }
@keyframes pulse-oak {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,169,121,0.45); }
  50%      { opacity: 0.55; box-shadow: 0 0 0 8px rgba(200,169,121,0); }
}

/* ─── Architecture block ──────────────────────────────────── */
.arch-hero {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 80px;
}
.ph {
  position: relative; overflow: hidden;
  background: var(--sand);
  aspect-ratio: 1 / 1;
  isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent 0 22px,
    rgba(11, 30, 44, 0.05) 22px 23px);
  z-index: 0;
}
.ph-label {
  position: absolute; left: 16px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 2;
}
.ph-tl {
  position: absolute; left: 16px; top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.lounge-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: linear-gradient(155deg, #1a3040 0%, #0B1E2C 60%, #081622 100%);
  overflow: hidden; z-index: 1;
}
.lounge-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    transparent 0 40px,
    rgba(200, 169, 121, 0.06) 40px 41px);
  pointer-events: none;
}
.lounge-placeholder::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,121,0.35), transparent 65%);
  pointer-events: none;
}
.lp-inner {
  position: relative; z-index: 2;
  color: var(--paper);
  padding: 40px; text-align: left;
  max-width: 340px;
}
.lp-eye {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 18px;
}
.lp-title {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--paper);
}
.lp-title em { font-style: italic; color: var(--oak); }
.lp-caption { font-size: 13px; line-height: 1.5; color: #a8bcc9; max-width: 28ch; }

/* Amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .amenities { grid-template-columns: 1fr; } }
.amenity {
  background: var(--paper-2);
  padding: 36px 30px;
  border-radius: 4px;
  display: flex; flex-direction: column;
  gap: 18px;
  min-height: 360px;
}
.amenity-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.amenity-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  font-weight: 400;
}
.amenity-body { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.amenity .sketch { margin-top: auto; height: 90px; display: flex; align-items: end; color: var(--oak-deep); }
.amenity .sketch svg { width: 100%; height: 100%; opacity: 0.6; }

/* ─── Testimonial ─────────────────────────────────────────── */
.testimonial { padding: 80px 0 40px; }
.testim-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px; align-items: center;
  padding: 56px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper-2);
}
@media (max-width: 720px) {
  .testim-card { grid-template-columns: 1fr; gap: 28px; padding: 40px 28px; }
}
.testim-big {
  font-family: var(--font-display);
  font-size: clamp(80px, 10vw, 140px);
  line-height: 0.85;
  color: var(--oak);
  font-style: italic;
}
.testim-stars { display: flex; gap: 4px; color: var(--oak); }
.testim-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
  color: var(--ink);
}
.testim-quote em { font-style: italic; color: var(--oak-deep); }
.testim-attrib {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Programs ────────────────────────────────────────────── */
.programs .section-lede { margin-bottom: 48px; }
.prog-tabs {
  display: flex;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
}
.prog-tab {
  flex: 1; padding: 22px 24px;
  text-align: left;
  display: flex; align-items: center; gap: 16px;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.prog-tab:last-child { border-right: 0; }
.prog-tab.active { background: var(--ink); color: var(--paper); }
.prog-tab .pt-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.6;
}
.prog-tab .pt-name { font-family: var(--font-display); font-size: 22px; }
@media (max-width: 860px) {
  .prog-tab .pt-num { display: none; }
  .prog-tab .pt-name { font-size: 17px; }
  .prog-tab { padding: 18px 14px; }
}
.prog-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px; padding: 64px 0; align-items: center;
}
@media (max-width: 860px) {
  .prog-panel { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
}
.prog-panel .ph { aspect-ratio: 5 / 4; }
.prog-copy .when {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.prog-copy .when::before { content: ""; width: 20px; height: 1px; background: var(--rule-strong); }
.prog-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--ink);
  font-weight: 400;
}
.prog-copy h3 em { font-style: italic; color: var(--oak-deep); }
.prog-copy p { font-size: 17px; line-height: 1.5; color: var(--muted); margin: 0 0 24px; max-width: 42ch; }
.prog-specs {
  display: flex; gap: 32px; margin: 0 0 32px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.prog-specs dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.prog-specs dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}

/* ─── Corporate ──────────────────────────────────────────── */
.corporate { background: var(--paper-2); }
.corp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
@media (max-width: 860px) { .corp-grid { grid-template-columns: 1fr; gap: 40px; } }
.partners-logos {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin: 40px 0 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.plogo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  opacity: 0.7;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.plogo::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--oak);
}

/* Contact form card */
.contact-card {
  background: var(--paper);
  padding: 40px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid var(--rule);
}
.contact-card.on-paper-2 { background: var(--paper-2); }
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 30px;
  margin: 0 0 4px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
}
.contact-card p.help { color: var(--muted); margin: 0 0 14px; font-size: 14.5px; }
.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 560px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ─── Partners cards ─────────────────────────────────────── */
.partners-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 56px;
}
@media (max-width: 860px) { .partners-cards { grid-template-columns: 1fr; } }
.pcard {
  padding: 40px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 320px;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.pcard:hover { transform: translateY(-2px); }
.pcard.active { border-color: var(--ink); background: var(--paper-2); }
.pcard .pc-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; justify-content: space-between;
}
.pcard .pc-tag .chip {
  border: 1px solid var(--rule-strong);
  padding: 3px 8px; border-radius: 999px;
  font-size: 9px;
}
.pcard.active .pc-tag .chip {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.pcard h4 {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
  margin: 0;
  font-weight: 400;
  color: var(--ink);
}
.pcard p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.pc-foot {
  margin-top: auto;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--oak-deep);
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

/* ─── Notify (dark CTA band) ─────────────────────────────── */
.notify {
  background: var(--ink); color: var(--paper);
  padding: 140px 0 120px;
  overflow: hidden; position: relative;
}
.notify::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 80% 20%,
    rgba(200, 169, 121, 0.12),
    transparent 60%);
  pointer-events: none;
}
.notify .wrap { position: relative; z-index: 2; }
.notify .eyebrow-rule { color: #93a8b5; }
.notify .eyebrow-rule::before { background: #2a4457; }
.notify h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(50px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  max-width: 16ch;
  text-wrap: balance;
  color: var(--paper);
}
.notify h2 em { font-style: italic; color: var(--oak); }
.notify .lede {
  color: #a8bcc9;
  font-size: 18px;
  line-height: 1.45;
  max-width: 46ch;
  margin: 0 0 40px;
}
.notify-form {
  display: flex; gap: 12px;
  max-width: 520px;
  border-bottom: 1px solid rgba(244, 241, 235, 0.2);
  padding-bottom: 14px;
}
.notify-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--paper);
  font-size: 17px;
  font-family: inherit;
  padding: 8px 0;
  outline: none;
}
.notify-form input::placeholder { color: #6b7e8a; }
.notify-form button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oak);
  padding: 8px 0;
  background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.notify-form button:hover { color: var(--paper); }
.notify-foot {
  display: flex; justify-content: space-between;
  margin-top: 28px;
  color: #6b7e8a;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 24px; flex-wrap: wrap;
}
.notify-thanks {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--paper);
  font-style: italic;
}
.notify-thanks em { color: var(--oak); }

/* ─── Inline form primitives used on landing ─────────────── */
.landing .field { display: flex; flex-direction: column; gap: 6px; }
.landing .field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.landing .field input,
.landing .field textarea,
.landing .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: 10px 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}
.landing .field input:focus,
.landing .field textarea:focus,
.landing .field select:focus { outline: none; border-color: var(--ink); }
.landing .field textarea { min-height: 86px; resize: vertical; }
