/* ============================================================
   FOOTBALL LAB HAMBURG — Design tokens
   Display: Anton (condensed, athletic, teamsheet energy)
   Body:    Manrope (clean, modern, bilingual-friendly)
   Palette: white / near-black ink / deep pitch-side blue / turf green
   Signature: teamsheet roster numbering + corner-flag diagonal cuts
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #10151c;
  --ink-soft: #4b5563;
  --ink-faint: #8994a3;
  --blue: #0b2f6b;
  --blue-dark: #071d47;
  --green: #1f9d55;
  --green-dark: #157a41;
  --card: #f4f6f8;
  --card-dark: #eef1f4;
  --line: #e3e7ec;
  --white: #ffffff;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(16, 21, 28, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 21, 28, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 21, 28, 0.16);

  --container: 1180px;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(38px, 6.4vw, 78px); }
h2 { font-size: clamp(30px, 4.2vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }

p { line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- Corner-flag diagonal signature ---------- */
.corner-cut {
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% 100%, 0 100%);
}
.corner-cut-lg {
  clip-path: polygon(0 34px, 34px 0, 100% 0, 100% 100%, 0 100%);
}

/* ---------- Pitch-line divider ---------- */
.pitch-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  width: 100%;
}
.pitch-divider .line {
  height: 2px;
  flex: 1;
  background: var(--line);
}
.pitch-divider .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  flex: none;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 24px rgba(16,21,28,0.07);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  overflow: hidden;
  background: #000;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; object-position: center; margin: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-name span { display: block; font-family: var(--font-body); font-weight: 700; font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-faint); text-transform: uppercase; margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -3px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--green-dark); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink);
  flex: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.nav-ig:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--card);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
  border: 1px solid var(--line);
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 13px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch button.is-active {
  background: var(--ink);
  color: #fff;
}

.nav-cta { display: inline-flex; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 0 0;
  border-top: 0 solid var(--line);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(.22,.7,.32,1), opacity 0.28s ease, padding 0.32s ease;
}
.mobile-panel a {
  padding: 12px 4px;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-panel.is-open {
  max-height: 480px;
  opacity: 1;
  padding: 10px 0 20px;
  border-top-width: 1px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7,10,14,0.92) 0%, rgba(7,10,14,0.55) 42%, rgba(11,22,35,0.25) 68%, rgba(11,22,35,0.55) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0 68px;
  color: #fff;
}
.hero-eyebrow {
  color: #b9f2cd;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); }
.hero h1 { color: #fff; max-width: 15ch; }
.hero-sub {
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  font-size: 17px;
  margin-top: 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Small page hero (non-home pages) */
.page-hero {
  position: relative;
  padding: 150px 0 64px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero-tag {
  color: #b9f2cd;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-hero-tag::before { content: ""; width: 22px; height: 2px; background: var(--green); }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 56ch; margin-top: 16px; font-size: 16.5px; }
.page-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.32;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,15,20,0.98) 18%, rgba(11,15,20,0.55) 75%);
}

/* ============================================================
   SECTIONS / GENERIC
   ============================================================ */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 16.5px; }
.bg-card { background: var(--card); }

/* ---------- Intro / About preview on Home ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-media { position: relative; }
.intro-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.stat-chip {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
}
.stat-chip .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex: none; }
.stat-chip strong { display: block; font-size: 13.5px; font-weight: 800; }
.stat-chip span { font-size: 12px; color: var(--ink-faint); }

/* ---------- Preview cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.preview-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 230px;
}
.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.preview-card .num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--green);
  letter-spacing: 0.04em;
}
.preview-card h3 { margin-top: auto; }
.preview-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.preview-card .arrow svg { transition: transform 0.25s ease; }
.preview-card:hover .arrow svg { transform: translateX(5px); }

/* ---------- Roster / numbered list (signature) ---------- */
.roster {
  display: flex;
  flex-direction: column;
}
.roster-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.roster-item:last-child { border-bottom: 1px solid var(--line); }
.roster-item p { max-width: 640px; }
.roster-num {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--green);
  line-height: 1;
}
.roster-num small {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

/* ---------- Training package block ---------- */
.pkg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}
.pkg:first-of-type { border-top: none; padding-top: 8px; }
.pkg-media img, .pkg-media video {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.intro-media video { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; background: var(--ink); }
.gallery-item video { width: 100%; height: 100%; object-fit: cover; }
.pkg-num {
  font-family: var(--font-display);
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}
.pkg h2 { margin-bottom: 6px; }
.pkg-subtitle {
  font-weight: 700;
  color: var(--blue);
  font-size: 15.5px;
  margin-bottom: 18px;
}
.pkg-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 28px;
}
.pkg-col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 14px;
}
.pkg-col ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  line-height: 1.5;
}
.pkg-col ul li:first-child { border-top: none; }
.pkg-col ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--green);
}
.pkg-col.advantages li::before { background: var(--blue); border-radius: 50%; }

.pkg:nth-of-type(even) .pkg-media { order: 2; }

/* ---------- Highlight chips (About) ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chip svg { flex: none; color: var(--green); }
.stats-strip { grid-template-columns: repeat(2, 1fr); max-width: 520px; margin-top: 28px; }
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
}

/* ---------- About layout ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 110px;
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-portrait figcaption {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-faint);
  font-weight: 700;
}
.about-text p { font-size: 16.5px; margin-bottom: 20px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.72), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}
.contact-info-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 34px;
  height: fit-content;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card p { color: rgba(255,255,255,0.7); }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-line:first-of-type { margin-top: 26px; }
.contact-line .ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  color: #b9f2cd;
}
.contact-line a, .contact-line span.val { font-weight: 700; font-size: 15px; }
.contact-line .lbl { display: block; font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }

.form-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--line);
}
.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.contact-cta-actions .btn {
  width: 100%;
}

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.cta-band-media { position: absolute; inset: 0; opacity: 0.28; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,15,20,0.96), rgba(11,15,20,0.7));
}
.cta-band-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 70px 0;
}
.cta-band h2 { color: #fff; max-width: 12ch; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-mark { width: 40px; height: 40px; }
.footer-brand-name { font-family: var(--font-display); color: #fff; font-size: 18px; text-transform: uppercase; }
.footer-col h4 {
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.72); transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.footer-social:hover { background: rgba(255,255,255,0.1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Featured video section ---------- */
.video-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
}
.video-feature video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-feature .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7,10,14,0.28);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.video-feature.is-playing .play-badge { opacity: 0; }
.video-feature .play-badge .circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.video-feature .play-badge .circle:hover { transform: scale(1.06); }
.video-feature .play-badge svg { margin-left: 4px; }

/* ---------- Contact location line spacing tweak ---------- */
.contact-line .lbl + a, .contact-line .lbl + span { display: block; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow, .hero h1, .hero-sub, .hero-actions {
  animation: heroFade 0.8s cubic-bezier(.22,.7,.32,1) both;
}
.hero h1 { animation-delay: 0.08s; }
.hero-sub { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.24s; }

.page-hero-tag, .page-hero h1, .page-hero p {
  animation: heroFade 0.7s cubic-bezier(.22,.7,.32,1) both;
}
.page-hero h1 { animation-delay: 0.07s; }
.page-hero p { animation-delay: 0.14s; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(.22,.7,.32,1), transform 0.7s cubic-bezier(.22,.7,.32,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view .reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(.22,.7,.32,1), transform 0.6s cubic-bezier(.22,.7,.32,1);
}
.reveal-stagger.in-view .reveal-child:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.in-view .reveal-child:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in-view .reveal-child:nth-child(3) { transition-delay: 0.18s; }
.reveal-stagger.in-view .reveal-child:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in-view .reveal-child:nth-child(5) { transition-delay: 0.34s; }
.reveal-stagger.in-view .reveal-child:nth-child(6) { transition-delay: 0.42s; }
.reveal-stagger.in-view .reveal-child:nth-child(7) { transition-delay: 0.50s; }
.reveal-stagger.in-view .reveal-child:nth-child(8) { transition-delay: 0.58s; }

/* Page transition overlay */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}
body.is-transitioning .page-transition { opacity: 1; pointer-events: all; }
body.is-entering main, body.is-entering .site-header { animation: pageEnter 0.5s ease both; }
@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero h1, .hero-sub, .hero-actions,
  .page-hero-tag, .page-hero h1, .page-hero p,
  body.is-entering main, body.is-entering .site-header {
    animation: none !important;
  }
  .reveal, .reveal-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-transition { transition: none !important; opacity: 0 !important; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, visibility 0.25s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--green); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  z-index: 999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Reusable text utilities (replace one-off inline styles) ---------- */
.lead-text { font-size: 16.5px; }
.mt-lg { margin-top: 28px; }
.mt-md { margin-top: 16px; }
.max-40ch { max-width: 40ch; }
.on-dark-muted { color: rgba(255,255,255,0.75); }
.on-dark-strong { color: #fff; font-weight: 700; font-size: 15px; }
.mt-xs { margin-top: 6px; }
.footer-tagline-text { color: rgba(255,255,255,0.6); max-width: 34ch; }

@media (max-width: 980px) {
  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 380px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .pkg:nth-of-type(even) .pkg-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .video-feature .play-badge .circle { width: 56px; height: 56px; }
  section { padding: 64px 0; }
  .hero { min-height: 92vh; }
  .hero-inner { padding: 70px 0 48px; }
  .card-grid { grid-template-columns: 1fr; }
  .pkg-columns { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .chip-grid { grid-template-columns: 1fr; }
  .roster-item { padding: 26px 0; }
  .roster-num { font-size: 26px; }
  .cta-band-inner { padding: 54px 0; }
}
