:root {
  --black: #080909;
  --panel: #111313;
  --grey: #a9aeaa;
  --light: #f3f4f0;
  --yellow: #b7ff3c;
  --line: #2a2d2b;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 9, 9, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo-crop {
  display: block;
  position: relative;
  width: 78px;
  height: 16px;
  overflow: hidden;
  flex: 0 0 78px;
}
.logo-crop img {
  position: absolute;
  width: 103px;
  max-width: none;
  left: -14px;
  top: -44px;
}
.brand small {
  font:
    700 8px/1 Inter,
    sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: none;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}
.main-nav a,
.button {
  white-space: nowrap;
}
.main-nav > a:not(.button):hover {
  color: var(--yellow);
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: #fff;
  padding: 8px 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  border: 0;
  padding: 15px 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 255, 60, 0.2);
}
.button-small {
  padding: 10px 16px;
  font-size: 11px;
}
section[id] {
  scroll-margin-top: 76px;
}
.text-link {
  font-weight: 700;
  color: var(--yellow);
}
.hero {
  min-height: 760px;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.64) 55%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("https://images.unsplash.com/photo-1579952363873-27f3bade9f55?auto=format&fit=crop&w=2200&q=88")
      center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--black), transparent 32%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
.eyebrow {
  color: var(--yellow);
  font:
    800 13px/1.2 Inter,
    sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.expertise h2,
.contact h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0.18em 0;
  line-height: 0.9;
}
.hero h1 {
  font-size: clamp(62px, 9vw, 132px);
  max-width: 980px;
}
.hero h1 span {
  color: var(--yellow);
}
.hero-copy {
  font-size: clamp(16px, 2vw, 21px);
  max-width: 680px;
  color: #d9dcda;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
}
.hero-stats {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 9, 9, 0.74);
  backdrop-filter: blur(12px);
}
.hero-stats div {
  padding: 17px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-stats div:last-child {
  border: 0;
}
.hero-stats strong {
  display: block;
  font: 800 26px/1 "Barlow Condensed";
  color: var(--yellow);
}
.hero-stats span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-pad {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
}
.intro {
  background: var(--light);
  color: var(--black);
}
.intro .eyebrow,
.regions .eyebrow,
.tournaments .eyebrow {
  color: #315400;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 55px;
}
.section-heading h2,
.expertise h2,
.contact h2 {
  font-size: clamp(42px, 6vw, 76px);
}
.section-heading h2 span {
  color: var(--yellow);
}
.section-heading > p:last-child {
  max-width: 680px;
  color: var(--grey);
}
.intro .section-heading > p:last-child {
  color: inherit;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-grid p {
  margin: 0;
}
.lead {
  font-size: clamp(22px, 3vw, 36px);
  font-family: "Barlow Condensed";
  font-weight: 700;
  line-height: 1.16;
}
.dark-section {
  background: #0c0e0d;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature-card {
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 245px;
}
.feature-card b,
.reason-list span {
  color: var(--yellow);
  font: 800 15px "Barlow Condensed";
}
.feature-card h3,
.program-card h3,
.destination-card h3 {
  font: 800 28px/1 "Barlow Condensed";
  text-transform: uppercase;
}
.feature-card p,
.program-card p,
.program-card li {
  color: var(--grey);
  font-size: 14px;
}
.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.reason-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.reason-list h3 {
  margin: 0 0 6px;
  font: 800 26px "Barlow Condensed";
  text-transform: uppercase;
}
.reason-list p {
  margin: 0;
  color: var(--grey);
}
.expertise {
  background: var(--yellow);
  color: var(--black);
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  align-items: center;
}
.expertise .eyebrow {
  color: var(--black);
}
.expertise-number {
  font: 900 clamp(150px, 24vw, 310px)/0.72 "Barlow Condensed";
  letter-spacing: -0.08em;
}
.expertise-number span {
  font-size: 0.3em;
  vertical-align: top;
}
.expertise-copy p {
  max-width: 720px;
}
.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.proof span {
  border: 1px solid var(--black);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.regions {
  background: var(--light);
  color: var(--black);
}
.regions .section-heading > p:last-child {
  color: #555;
}
.map-tabs,
.schedule-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.map-tab,
.schedule-btn {
  font: 800 13px Inter;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #343735;
  color: inherit;
  cursor: pointer;
}
.map-tab.active,
.schedule-btn.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.map-wrap {
  background: #d4d7d3;
  padding: 12px;
  border: 1px solid #bbb;
}
.map-wrap img {
  width: 100%;
  height: min(650px, 65vw);
  object-fit: contain;
}
.region-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: #333;
}
.region-points span {
  background: var(--black);
  color: #fff;
  padding: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.programs {
  background: #0c0e0d;
}
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.program-card {
  padding: 44px;
  border: 1px solid var(--line);
  position: relative;
}
.program-card.featured {
  border-color: var(--yellow);
}
.program-label {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.program-card h3 {
  font-size: 42px;
  margin: 16px 0;
}
.program-card ul {
  padding-left: 18px;
  margin: 28px 0;
}
.program-card li {
  padding: 5px 0;
}
.itineraries {
  background: #111313;
}
.schedule-wrap {
  overflow: auto;
  border: 1px solid var(--line);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
th,
td {
  text-align: left;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--yellow);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
td:first-child {
  width: 25%;
  font-weight: 800;
  text-transform: uppercase;
}
.time {
  color: var(--yellow);
  font-weight: 700;
}
.fine-print {
  color: var(--grey);
  font-size: 11px;
  margin-top: 16px;
}
.tournaments {
  background: var(--light);
  color: var(--black);
}
.tournaments .section-heading > p:last-child {
  color: #555;
}
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tournament-card {
  background: #111;
  color: #fff;
  padding: 12px;
  transition: 0.2s;
  display: flex;
  flex-direction: column;
}
.tournament-card:hover {
  transform: translateY(-4px);
}
.tournament-card img {
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #080909;
}
.tournament-content {
  padding: 18px 8px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tournament-content h3 {
  margin: 0 0 8px;
  font:
    800 30px/1 "Barlow Condensed",
    sans-serif;
  text-transform: uppercase;
}
.tournament-content p {
  color: #c6cac7;
  font-size: 13px;
  margin: 5px 0;
}
.tournament-content strong {
  color: var(--yellow);
  font-size: 13px;
  margin: 8px 0 18px;
}
.tournament-links {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.tournament-links a,
.pending-link {
  display: block;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}
.pending-link {
  opacity: 0.62;
  cursor: default;
}
.destinations {
  background: #090a0a;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 310px;
  gap: 12px;
}
.destination-card {
  position: relative;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.destination-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.92),
    rgba(0, 0, 0, 0.05) 70%
  );
}
.destination-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 20px;
}
.destination-card h3 {
  margin: 0;
  font-size: 28px;
}
.destination-card p {
  margin: 6px 0;
  color: #ddd;
  font-size: 13px;
}
.photo-credit {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  padding: 3px 6px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 7px;
}
.wine {
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=900&q=82");
}
.mercedes {
  background-image: url("https://i.bssl.es/porconocer/2016/06/Museo-Mercedes-2.jpg");
}
.porsche {
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=82");
}
.munich {
  background-image: url("https://images.unsplash.com/photo-1595867818082-083862f3d630?auto=format&fit=crop&w=900&q=82");
}
.zurich {
  background-image: url("https://images.unsplash.com/photo-1515488764276-beab7607c1e6?auto=format&fit=crop&w=900&q=82");
}
.france {
  background-image: url("https://www.funweek.it/app/uploads/2021/05/shutterstock_1065169163.jpg");
}
.heidelberg {
  background-image: url("assets/heidelberg.jpg");
}
.neuschwanstein {
  background-image: url("https://a.travel-assets.com/findyours-php/viewfinder/images/res40/109000/109766.jpg");
}
.contact {
  background: var(--yellow);
  color: var(--black);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.contact .eyebrow {
  color: var(--black);
}
.contact-direct a {
  font-size: 20px;
  font-weight: 800;
}
.contact-direct a:hover {
  text-decoration: underline;
}
.inquiry-form {
  background: var(--black);
  color: #fff;
  padding: 35px;
}
.inquiry-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  margin-top: 6px;
  background: #181a19;
  color: #fff;
  border: 1px solid #343735;
  padding: 13px;
  font: 14px Inter;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-note {
  font-size: 10px;
  color: var(--grey);
}
.form-status {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid #ff6b6b;
  color: #fff;
  font-size: 12px;
}
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
}
.privacy-check input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex: 0 0 17px;
}
.privacy-check a {
  color: var(--yellow);
  text-decoration: underline;
}
footer {
  padding: 35px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey);
  font-size: 11px;
}
.footer-brand {
  color: #fff;
}
.footer-brand .logo-crop {
  width: 78px;
  height: 16px;
  flex-basis: 78px;
}
.footer-meta {
  text-align: right;
}
.footer-meta p {
  margin: 0 0 4px;
}
.footer-meta nav {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.footer-meta a:hover {
  color: var(--yellow);
}
.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #07150c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
}
.legal-page {
  background: var(--light);
  color: var(--black);
}
.legal-header {
  position: sticky;
}
.legal-shell {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 100px;
}
.legal-shell h1,
.legal-shell h2,
.legal-shell h3 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
.legal-shell h1 {
  margin: 0 0 35px;
  font-size: clamp(48px, 8vw, 86px);
}
.legal-shell h2 {
  margin-top: 42px;
  font-size: 30px;
}
.legal-shell h3 {
  margin-top: 32px;
  font-size: 23px;
}
.legal-shell a {
  color: #315400;
  font-weight: 700;
  text-decoration: underline;
}
.legal-shell address {
  font-style: normal;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .hero-stats {
    left: 24px;
    right: 24px;
    bottom: 20px;
  }
  .hero-stats div {
    flex: 1;
    padding: 12px;
  }
  .feature-grid,
  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-section,
  .expertise,
  .contact {
    grid-template-columns: 1fr;
  }
  .expertise-number {
    font-size: 180px;
  }
  .region-points {
    grid-template-columns: 1fr 1fr;
  }
  .tournament-grid {
    grid-template-columns: 1fr;
  }
  .tournament-card img {
    aspect-ratio: 16/9;
    object-fit: contain;
  }
  .section-pad {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  footer {
    flex-wrap: wrap;
    gap: 20px 30px;
  }
}
@media (max-width: 600px) {
  .logo-crop {
    width: 66px;
    height: 14px;
    flex-basis: 66px;
  }
  .logo-crop img {
    width: 88px;
    left: -12px;
    top: -38px;
  }
  .brand small {
    max-width: none;
    font-size: 6px;
  }
  .hero {
    min-height: 790px;
  }
  .hero h1 {
    font-size: clamp(46px, 15vw, 57px);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-stats {
    display: none;
  }
  .intro-grid,
  .program-grid,
  .feature-grid,
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .destination-grid {
    grid-auto-rows: 280px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading h2,
  .expertise h2,
  .contact h2 {
    font-size: 44px;
  }
  .section-pad {
    padding-left: 20px;
    padding-right: 20px;
  }
  .program-card,
  .feature-card,
  .inquiry-form {
    padding: 25px 20px;
  }
  .program-card h3 {
    font-size: 35px;
  }
  .schedule-switch {
    display: grid;
    grid-template-columns: 1fr;
  }
  .schedule-btn {
    width: 100%;
  }
  .contact-direct a {
    font-size: 17px;
  }
  .inquiry-form .button {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 11px;
  }
  .region-points,
  .form-row {
    grid-template-columns: 1fr;
  }
  .map-wrap img {
    height: 80vw;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .footer-meta {
    text-align: left;
  }
  .footer-meta nav {
    justify-content: flex-start;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 10px;
  }
  .legal-shell {
    width: min(100% - 40px, 900px);
    padding-top: 50px;
  }
}
@media (max-width: 380px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }
  .logo-crop {
    width: 58px;
    flex-basis: 58px;
  }
  .brand {
    gap: 7px;
  }
  .brand small {
    font-size: 5.5px;
    letter-spacing: 0.02em;
  }
  .menu-toggle {
    padding: 7px 9px;
    font-size: 11px;
  }
}
