
:root {
  --black: #080909;
  --black-2: #111313;
  --black-3: #1a1c1c;
  --gold: #d5a044;
  --gold-light: #f0c36a;
  --sand: #eee4d3;
  --cream: #f8f5ef;
  --white: #ffffff;
  --muted: #b8b5af;
  --green: #138b50;
  --red: #c43e35;
  --line: rgba(255,255,255,.14);
  --radius: 18px;
  --shadow: 0 26px 70px rgba(0,0,0,.18);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  color: #181919;
  background: var(--cream);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.hidden { position: absolute; left: -9999px; }
.skip-link {
  position: fixed; z-index: 999; left: 18px; top: -70px;
  background: var(--gold); color: var(--black); padding: 10px 16px;
  font-weight: 800; transition: top .2s;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto;
  background: rgba(8,9,9,.86);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand { width: 96px; height: 70px; display: flex; align-items: center; }
.brand img { width: 82px; max-height: 76px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(15px,2vw,28px); flex: 1; }
.primary-nav a {
  position: relative; color: #eee; text-transform: uppercase; font-size: 12px;
  letter-spacing: .08em; font-weight: 800;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px;
  background: var(--gold); transition: right .25s;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }

.nav-more { position: relative; }
.nav-more summary {
  color: #eee; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; font-weight: 800;
  cursor: pointer; list-style: none;
}
.nav-more summary::-webkit-details-marker { display: none; }
.nav-more summary::after { content: " ▾"; font-size: 10px; }
.nav-more-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--black-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px; display: flex; flex-direction: column; gap: 4px; min-width: 160px;
  box-shadow: var(--shadow); z-index: 20;
}
.nav-more-menu a { padding: 8px 10px; border-radius: 6px; white-space: nowrap; }
.nav-more-menu a:hover { background: rgba(255,255,255,.06); }
.nav-more-menu a::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle {
  border: 1px solid rgba(255,255,255,.38); color: #fff; background: transparent;
  border-radius: 7px; padding: 8px 10px; font-size: 11px; font-weight: 800;
}
.language-toggle span { opacity: .5; }
.language-toggle .active-lang { opacity: 1; color: var(--gold-light); }
.menu-toggle { display: none; border: 0; background: none; width: 42px; height: 42px; padding: 9px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: #fff; margin: 5px 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px;
  padding: 0 22px; border: 1px solid transparent; border-radius: 5px;
  font-size: 12px; font-weight: 900; letter-spacing: .045em; text-transform: uppercase;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding-inline: 15px; }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #111; box-shadow: 0 10px 28px rgba(213,160,68,.24); }
.btn-primary:hover { background: #f1c76f; }
.btn-outline { border-color: var(--gold); color: var(--gold-light); }
.btn-outline:hover { background: var(--gold); color: #111; }
.btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; backdrop-filter: blur(8px); }
.btn-ghost:hover { background: #fff; color: #111; }
.btn-dark { background: var(--black); color: #fff; }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 24px; border-radius: 5px;
  font-size: 12px; font-weight: 900; letter-spacing: .045em; text-transform: uppercase;
  background: #1fae5b; color: #fff; transition: transform .2s, background .2s;
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #199a4f; }
.btn-whatsapp svg { width: 17px; height: 17px; }

.hero {
  position: relative; min-height: 760px; display: flex; align-items: center;
  overflow: hidden; background: var(--black);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 66% 38%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg,
      #070808 0%,
      rgba(7,8,8,.97) 15%,
      rgba(7,8,8,.96) 20%,
      rgba(7,8,8,.92) 25%,
      rgba(7,8,8,.87) 30%,
      rgba(7,8,8,.80) 35%,
      rgba(7,8,8,.72) 40%,
      rgba(7,8,8,.63) 45%,
      rgba(7,8,8,.53) 50%,
      rgba(7,8,8,.44) 55%,
      rgba(7,8,8,.34) 60%,
      rgba(7,8,8,.25) 65%,
      rgba(7,8,8,.17) 70%,
      rgba(7,8,8,.10) 75%,
      rgba(7,8,8,.05) 80%,
      rgba(7,8,8,.01) 85%,
      rgba(7,8,8,0) 90%
    ),
    linear-gradient(0deg, rgba(7,8,8,.62), transparent 38%);
}
.hero-content { position: relative; z-index: 2; padding-top: 92px; color: #fff; }
.hero-content > * { max-width: 650px; }
.eyebrow {
  margin: 0 0 18px; color: var(--gold-light); text-transform: uppercase;
  letter-spacing: .22em; font-size: 12px; font-weight: 900;
}
.eyebrow.dark { color: #946719; }
.hero h1 { margin: 0; line-height: .87; text-transform: uppercase; }
.hero h1 span:not(.script), .hero h1 strong {
  display: block; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: .025em; font-size: clamp(68px, 10vw, 126px);
}
.hero h1 strong { color: var(--gold); font-size: clamp(58px, 8vw, 104px); }
.hero h1 .script {
  display: block; margin: 0 0 16px; font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(28px, 4vw, 52px); text-transform: none; color: var(--gold-light);
  transform: rotate(-3deg); transform-origin: left bottom;
}
.hero-lead { margin: 28px 0; max-width: 570px!important; font-size: clamp(17px,2vw,21px); color: #ecebe8; }
.hero-cta, .button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-signature {
  display: flex; gap: 24px; margin-top: 48px; color: #fff;
  font-size: 12px; font-weight: 900; letter-spacing: .28em;
}
.hero-signature span:nth-child(2) { color: var(--gold-light); }

.camp-countdown { text-align: center; }
.camp-countdown .section-heading p { color: #c9c8c3; }
.countdown { display: flex; justify-content: center; gap: clamp(18px,4vw,48px); margin: 0 0 40px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
.countdown-value {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(36px,6vw,58px); line-height: 1; color: var(--gold-light);
}
.countdown-label { margin-top: 8px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #a3a29e; }
.countdown-over { color: var(--gold-light); font-weight: 800; font-size: 18px; margin: 0 0 40px; }
.camp-shop-preview { margin: 0 0 50px; }
.camp-shop-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #a3a29e; margin: 0 0 16px; }
.camp-shop-strip { display: flex; justify-content: center; gap: 18px; margin-bottom: 14px; }
.camp-shop-strip a {
  width: 76px; height: 76px; border-radius: 12px; background: var(--cream); overflow: hidden;
  display: grid; place-items: center; padding: 8px; transition: transform .2s ease;
}
.camp-shop-strip a:hover { transform: translateY(-3px); }
.camp-shop-strip img { width: 100%; height: 100%; object-fit: contain; }
.camp-countdown .text-link { color: var(--gold-light); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.camp-video-link { margin: -8px 0 44px; }
.camp-message-form { max-width: 480px; margin: 0 auto; background: var(--black-2); border-radius: var(--radius); padding: 30px; text-align: left; }
.camp-message-form h3 { margin: 0 0 18px; text-align: center; font-size: 17px; text-transform: uppercase; letter-spacing: .03em; }
.camp-message-form input, .camp-message-form textarea {
  width: 100%; border: 1px solid #3a3c3c; background: var(--black-3); color: #fff; border-radius: 7px;
  padding: 12px 14px; outline: none; margin-bottom: 12px; font: inherit; transition: border-color .2s, box-shadow .2s;
}
.camp-message-form input:focus, .camp-message-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,160,68,.15); }
.camp-message-form .btn { width: 100%; }
.hero-signature span:nth-child(3) { color: #d45b52; }

.section { padding: 110px 0; }
.section-light { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--black); color: #fff; }
.section-heading { max-width: 820px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section h2 {
  margin: 0 0 24px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase; letter-spacing: .025em; font-size: clamp(42px,6vw,72px); line-height: .98;
}
.section p { font-size: 17px; }
.split, .feature-grid, .partners-layout, .contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px,7vw,90px); align-items: center; }
.section-copy p { max-width: 680px; color: #4c4d4c; }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.pill-row span { border: 1px solid #c8b89e; border-radius: 999px; padding: 8px 13px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.vision-card {
  background: var(--black-2); color: #fff; padding: 36px; border-radius: var(--radius);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.vision-card::after { content:""; position:absolute; width:220px; height:220px; right:-90px; top:-80px; border-radius:50%; background:rgba(213,160,68,.14); filter:blur(3px); }
.vision-card img { width: min(330px, 84%); margin: 0 auto 20px; }
.vision-card strong { display: block; font-size: 22px; margin-bottom: 8px; }
.vision-card p { color: #c9c8c3; font-size: 15px; }

.universe-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.universe-card {
  min-height: 465px; position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.universe-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.universe-card:hover img { transform: scale(1.05); }
.card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,7,7,.97) 8%, rgba(6,7,7,.7) 48%, rgba(6,7,7,.03) 85%); }
.card-content { position: absolute; inset: auto 24px 24px; }
.card-content > span { color: var(--gold-light); font-weight: 900; font-size: 12px; }
.card-content h3 { margin: 7px 0; text-transform: uppercase; font-size: 21px; line-height: 1.1; }
.card-content p { color: #d4d2cd; font-size: 14px; line-height: 1.5; }
.card-content a { color: var(--gold-light); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.shop-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
  justify-content: center; gap: 48px; max-width: 1100px; margin-inline: auto;
}
.shop-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: transparent; border: 0; padding: 0; cursor: pointer; text-align: center; font-family: inherit;
}
.shop-item-media {
  width: 100%; aspect-ratio: 16 / 9; display: grid; place-items: center; padding: 12px;
}
.shop-item-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.shop-item:hover .shop-item-media img { transform: scale(1.04); }
.shop-item-placeholder {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: #a89a80; padding: 20px; border: 1px dashed rgba(213,160,68,.5); border-radius: 12px;
}
.shop-item-name { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: #181919; }

.product-dialog { width: min(560px, calc(100% - 24px)); border: 0; border-radius: 0; padding: 0; overflow: visible; box-shadow: none; background: transparent; }
.product-dialog::backdrop { background: rgba(8,9,9,.4); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.product-dialog .dialog-close { z-index: 3; color: #fff; font-size: 26px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.product-dialog-media { position: relative; aspect-ratio: 16 / 9; background: transparent; padding: 10px 60px; }
.product-dialog-images { position: relative; width: 100%; height: 100%; }
.product-dialog-images img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0;
  transition: opacity .35s ease;
}
.product-dialog-images img.is-active { opacity: 1; }
.product-dialog-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: #a89a80;
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: 0; background: transparent; color: var(--gold);
  display: grid; place-items: center; font-size: 36px; cursor: pointer; line-height: 1;
  transition: transform .2s ease;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.12); }
.carousel-arrow.prev { left: 10px; }
.carousel-arrow.next { right: 10px; }
.carousel-arrow[hidden] { display: none; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; padding: 4px 0 0; }
.carousel-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: #ddd6c8; cursor: pointer; }
.carousel-dots button.is-active { background: var(--gold); }
.product-dialog-body { padding: 22px 28px 36px; text-align: center; }
.product-dialog-name { margin: 0 0 4px; text-transform: uppercase; font-size: 15px; letter-spacing: .1em; font-weight: 900; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.product-dialog-price { margin: 0 0 26px; color: var(--gold-light); font-weight: 700; font-size: 15px; letter-spacing: .02em; text-shadow: 0 1px 8px rgba(0,0,0,.4); }

::view-transition-group(shop-product-img) { animation-duration: .45s; animation-timing-function: cubic-bezier(.22,.8,.2,1); }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .28s; }
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

.feature-image { position: relative; }
.feature-image img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-image.js-slideshow { min-height: 520px; }
.js-slideshow img {
  position: absolute !important; inset: 0; width: 100%; height: 100%; opacity: 0;
  transition: opacity 1.2s ease;
}
.js-slideshow img.is-active { opacity: 1; }
.badge { position: absolute; right: -16px; bottom: 30px; background: var(--gold); color: #111; padding: 12px 22px; font-weight: 950; letter-spacing: .12em; }
.feature-copy p { color: #454646; }
.rider-stats { margin: 28px 0; border-top: 1px solid rgba(0,0,0,.18); }
.rider-stats div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(0,0,0,.18); }
.rider-stats strong { font-size: 28px; color: #936719; }
.rider-stats span { align-self: center; font-weight: 700; }
.text-link { color: #7a5211; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.dark-link { color: #181919; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 70px; }
.team-card { background: rgba(255,255,255,.55); border: 1px solid rgba(0,0,0,.13); padding: 28px; border-radius: 14px; }
.team-number { color: #95691e; font-weight: 900; }
.team-card h3 { font-size: 24px; margin: 22px 0 10px; }
.team-card h3 small { display: block; color: #796a51; font-size: 13px; margin-top: 4px; }
.team-card p { font-size: 15px; color: #555; }
.team-card-cta { background: var(--black); color: #fff; }
.team-card-cta p { color: #c5c3bd; }
.team-card-cta a { color: var(--gold-light); font-weight: 900; text-transform: uppercase; font-size: 12px; }

.academy-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: stretch; }
.academy-photo { position: relative; min-height: 600px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.academy-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-label { position: absolute; inset: auto 0 0; padding: 30px; background: linear-gradient(0deg, rgba(0,0,0,.94), transparent); color: #fff; }
.photo-label strong, .photo-label span { display: block; }
.photo-label strong { font-size: 22px; text-transform: uppercase; }
.photo-label span { color: #d9d6cf; }
.academy-points { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.academy-points article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid #d5cab8; }
.academy-points article > span { color: #95691e; font-size: 22px; font-weight: 950; }
.academy-points h3 { margin: 0 0 5px; font-size: 23px; }
.academy-points p { margin: 0; color: #5d5e5d; font-size: 15px; }
.academy-points .btn { align-self: flex-start; margin-top: 14px; }

.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.experience-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; min-height: 250px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.015)); }
.experience-card > span { color: var(--gold-light); font-weight: 950; }
.experience-card h3 { margin: 38px 0 10px; font-size: 25px; text-transform: uppercase; }
.experience-card p { color: #c6c4be; font-size: 15px; }
.event-banner { margin-top: 22px; min-height: 340px; border-radius: var(--radius); overflow: hidden; position: relative; display: flex; align-items: center; }
.event-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-banner::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.25)); }
.event-banner > div { position: relative; z-index: 2; max-width: 590px; padding: 48px; }
.event-banner h3 { font-size: 36px; margin: 0 0 22px; }

.partner-visual { position: relative; min-height: 630px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.partner-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.partner-quote { position: absolute; inset: auto 24px 24px; padding: 28px; background: rgba(8,9,9,.88); color: #fff; border-left: 4px solid var(--gold); backdrop-filter: blur(10px); }
.partner-quote span { display: block; color: var(--gold-light); font-size: 11px; letter-spacing: .2em; font-weight: 900; }
.partner-quote strong { display: block; margin-top: 7px; font-size: 25px; }
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li { position: relative; padding: 9px 0 9px 28px; font-weight: 700; }
.check-list li::before { content:"✓"; position:absolute; left:0; color:#8b611a; font-weight:950; }

.media-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.media-card { display: flex; align-items: center; gap: 16px; border: 1px solid #d8d1c5; border-radius: 12px; padding: 20px; background: #fff; transition: transform .2s, box-shadow .2s; }
.media-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.1); }
.play { width: 44px; height: 44px; border-radius: 50%; background: var(--black); color: var(--gold-light); display: grid; place-items: center; flex: 0 0 auto; }
.play svg { width: 20px; height: 20px; }
.media-card strong, .media-card small { display: block; }
.media-card strong { line-height: 1.25; }
.media-card small { margin-top: 5px; color: #777; }

.contact-section { background: #0c0d0d; color: #fff; }
.contact-grid { align-items: start; }
.contact-intro p { color: #c8c6c0; }
.contact-cards { display: grid; gap: 10px; margin-top: 34px; }
.contact-cards > * { display: flex; gap: 14px; align-items: center; border: 1px solid var(--line); padding: 14px 16px; border-radius: 10px; }
.contact-cards > * > span { color: var(--gold-light); font-size: 23px; width: 30px; text-align: center; }
.contact-cards > * > span svg { width: 22px; height: 22px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: #8f8f8d; }
.contact-cards strong { font-size: 14px; }
.contact-form { background: #fff; color: #171818; border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 15px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .045em; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid #d9d5ce; background: #f8f7f4; border-radius: 7px;
  padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,160,68,.15); }
.contact-form .consent { display: flex; gap: 10px; align-items: flex-start; }
.contact-form .consent input { width: 18px; margin-top: 2px; }
.contact-form .consent span { text-transform: none; font-weight: 500; color: #555; }

.site-footer { background: #070808; color: #fff; border-top: 1px solid var(--line); padding: 60px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1.1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 100px; height: 100px; object-fit: contain; }
.footer-brand strong, .footer-brand span, .footer-brand small { display: block; }
.footer-brand span { color: var(--gold-light); font-family: "Segoe Script", cursive; }
.footer-brand small { color: #8c8d8b; margin-top: 3px; }
.footer-grid > div:not(.footer-brand) strong, .newsletter strong { display: block; margin-bottom: 14px; color: var(--gold-light); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.footer-grid a { display: block; color: #c4c4c0; margin: 7px 0; font-size: 13px; }
.newsletter > span { display: block; color: #9d9e9b; font-size: 13px; margin-bottom: 13px; }
.newsletter > div { display: flex; }
.newsletter input { flex: 1; min-width: 0; background: transparent; color: #fff; border: 1px solid #454646; padding: 12px; }
.newsletter button { width: 48px; border: 0; background: var(--gold); font-weight: 950; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 20px; margin-top: 44px; color: #747573; font-size: 12px; }
.footer-bottom span:last-child { letter-spacing: .16em; color: #ae8a4b; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #1fae5b; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 28px; height: 28px; }
.privacy-dialog { width: min(620px, calc(100% - 30px)); border: 0; border-radius: 16px; padding: 34px; box-shadow: var(--shadow); }
.privacy-dialog::backdrop { background: rgba(0,0,0,.72); }
.dialog-close { position: absolute; right: 12px; top: 10px; border: 0; background: transparent; font-size: 30px; }
.privacy-dialog h2 { margin-top: 0; }
.privacy-dialog p { color: #555; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Blog */
.blog-hero { padding: 150px 0 60px; background: var(--black); color: #fff; }
.blog-hero .eyebrow { color: var(--gold-light); }
.blog-hero h1 { margin: 0 0 18px; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; font-size: clamp(40px,6vw,64px); line-height: 1; }
.blog-hero p { max-width: 640px; color: #d4d2cd; font-size: 17px; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { position: relative; min-height: 420px; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0,0,0,.08); box-shadow: var(--shadow); display: block; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,7,7,.95) 12%, rgba(6,7,7,.65) 50%, rgba(6,7,7,.05) 85%); }
.blog-card .card-content { position: absolute; inset: auto 24px 24px; color: #fff; }
.blog-card .card-content span { display: block; color: var(--gold-light); font-weight: 900; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.blog-card .card-content h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.15; text-transform: uppercase; }
.blog-card .card-content p { margin: 0; color: #d4d2cd; font-size: 14px; line-height: 1.5; }

.article-hero { position: relative; min-height: 420px; margin-top: 84px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.article-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,7,7,.92), rgba(6,7,7,.35)); }
.article-hero-content { position: relative; z-index: 2; padding: 120px 0 44px; color: #fff; }
.article-hero-content .eyebrow { color: var(--gold-light); }
.article-hero-content h1 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; text-transform: uppercase; font-size: clamp(34px,5.5vw,58px); line-height: 1.02; max-width: 820px; }
.article-meta { margin-top: 16px; color: #d4d2cd; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }

.article-body { max-width: 720px; margin: 0 auto; padding: 70px 0; }
.article-body p { font-size: 17px; line-height: 1.75; color: #35362f; margin: 0 0 22px; }
.article-body p.lead { font-size: 20px; color: #181919; font-weight: 600; }
.article-body p a { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.article-body h2 { margin: 46px 0 18px; font-size: 28px; text-transform: uppercase; letter-spacing: .01em; }
.article-body ul { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; font-size: 17px; line-height: 1.6; color: #35362f; }
.article-body blockquote { margin: 34px 0; padding: 22px 26px; border-left: 4px solid var(--gold); background: var(--cream); font-size: 18px; font-style: italic; color: #24251f; }
.article-cta { margin-top: 50px; padding: 34px; border-radius: var(--radius); background: var(--black); color: #fff; text-align: center; }
.article-cta p { color: #d4d2cd; margin-bottom: 18px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 1000px) {
  .header-actions .btn { display: none; }
  .primary-nav { gap: 14px; }
  .primary-nav a { font-size: 10px; }
  .universe-grid { grid-template-columns: repeat(2,1fr); }
  .media-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); }
  .site-header { background: rgba(8,9,9,.95); }
  .nav-wrap { min-height: 70px; justify-content: space-between; }
  .brand { width: 74px; }
  .brand img { width: 67px; }
  .menu-toggle { display: block; order: 3; }
  .primary-nav {
    position: fixed; top: 70px; left: 0; right: 0; height: calc(100vh - 70px);
    background: #0b0c0c; padding: 34px 24px; flex-direction: column; justify-content: flex-start;
    align-items: flex-start; transform: translateX(100%); transition: transform .3s;
  }
  .primary-nav.open { transform: none; }
  .primary-nav a { font-size: 18px; padding: 9px 0; }
  .nav-more { width: 100%; }
  .nav-more summary { font-size: 18px; padding: 9px 0; }
  .nav-more-menu {
    position: static; transform: none; background: transparent; border: 0; box-shadow: none;
    padding: 0 0 0 16px; margin-top: -4px;
  }
  .nav-more-menu a { padding: 7px 0; font-size: 16px; }
  .header-actions { margin-left: auto; }
  .hero { min-height: 720px; }
  .hero-media { inset: 0; opacity: .85; }
  .hero-media img { object-position: 70% 32%; }
  .hero-overlay { background: linear-gradient(0deg, rgba(7,8,8,.55), transparent 55%); }
  .hero h1 span:not(.script), .hero h1 strong { font-size: clamp(60px,18vw,88px); }
  .hero h1 strong { font-size: clamp(52px,15vw,75px); }
  .hero-lead { font-size: 16px; max-width: 500px!important; }
  .section { padding: 78px 0; }
  .split, .feature-grid, .partners-layout, .contact-grid, .academy-layout { grid-template-columns: 1fr; }
  .feature-image { order: 2; }
  .feature-image img, .partner-visual { min-height: 450px; }
  .feature-image.js-slideshow { min-height: 450px; }
  .universe-grid { grid-template-columns: 1fr; }
  .universe-card { min-height: 420px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 130px 0 44px; }
  .article-hero { margin-top: 74px; min-height: 320px; }
  .article-hero-content { padding: 80px 0 34px; }
  .team-grid, .experience-grid { grid-template-columns: 1fr; }
  .event-banner > div { padding: 30px; }
  .event-banner h3 { font-size: 28px; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .newsletter { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .language-toggle { padding: 7px; }
  .hero-cta { align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-signature { gap: 10px; letter-spacing: .12em; }
  .section h2 { font-size: 42px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .newsletter { grid-column: auto; }
  .footer-bottom { display: grid; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}
