:root {
  --black: #0b1015;
  --black-2: #121a22;
  --white: #ffffff;
  --text: #f6f7f8;
  --muted: rgba(246, 247, 248, 0.72);
  --ink: #10161d;
  --blue: #8bb3c1;
  --blue-dark: #1f5364;
  --gold: #f2b722;
  --gold-soft: #ffe08a;
  --paper: #f4f0e7;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 22, 29, 0.14);
  --max: 1180px;
  --header: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 50;
  width: auto;
  height: auto;
  clip: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--ink);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(11, 16, 21, 0.92);
  color: var(--white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  min-width: max-content;
  font-weight: 950;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: 7px;
}

.brand span {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--gold);
  color: var(--ink);
}

.language-select select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 2rem 0 0.8rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.language-select option {
  color: var(--ink);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(300px, 420px);
  gap: clamp(6rem, 9vw, 9rem);
  align-items: center;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: calc(var(--header) + 5rem) max(1.5rem, calc((100vw - 1240px) / 2)) 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(31, 83, 100, 0.5), transparent 38%),
    radial-gradient(circle at 76% 25%, rgba(242, 183, 34, 0.24), transparent 26rem),
    linear-gradient(180deg, #0b1015, #101820);
  background-repeat: no-repeat;
  background-size: cover;
}

.company-section {
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(110deg, rgba(242, 183, 34, 0.1), transparent 32rem),
    #0f161d;
  background-repeat: no-repeat;
  background-size: cover;
}

.areas-section {
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 12%, rgba(139, 179, 193, 0.16), transparent 22rem),
    #0b1015;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-section {
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(242, 183, 34, 0.14), transparent 34rem),
    #111a22;
  background-repeat: no-repeat;
  background-size: cover;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3.3rem, 6.4vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
  max-width: 100%;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.hero-copy p,
.section-copy p,
.area-content p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-copy > p:not(.kicker) {
  max-width: 690px;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 950;
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-ghost {
  border-color: var(--line);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: visible;
  justify-self: end;
}

.hero-bull-logo {
  width: min(100%, 440px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.34));
}

.company-section,
.contact-section,
.areas-section {
  max-width: none;
  margin: 0;
  padding: 6.5rem max(1.5rem, calc((100vw - var(--max)) / 2));
}

.section-label {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.section-copy {
  max-width: 850px;
}

.section-head {
  max-width: 850px;
  margin-bottom: 2rem;
}

.area-list {
  display: grid;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.area-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  min-height: 420px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111a22;
}

.area-card:nth-child(even) .area-media {
  order: 2;
}

.area-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.area-media img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  padding: 1.5rem;
}

.area-content {
  max-width: 620px;
}

.area-number {
  color: var(--gold);
  font-weight: 950;
}

.fitness-card {
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 179, 193, 0.22), transparent 20rem),
    #111a22;
}

.racing-card {
  background:
    radial-gradient(circle at 75% 20%, rgba(242, 183, 34, 0.22), transparent 20rem),
    #111a22;
}

.rider-card {
  background:
    linear-gradient(135deg, rgba(139, 179, 193, 0.16), rgba(242, 183, 34, 0.12)),
    #111a22;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.9fr);
  gap: 3rem;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.contact-links a {
  color: var(--gold);
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.25);
  color: var(--white);
  padding: 0.8rem;
}

.contact-form select {
  padding-right: 2.4rem;
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.language-select select:focus {
  outline: 2px solid rgba(242, 183, 34, 0.85);
  outline-offset: 2px;
  border-color: rgba(242, 183, 34, 0.7);
}

.contact-form option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 2.5rem max(1.5rem, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #090d12;
  color: var(--white);
}

.footer p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.footer .copyright {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-weight: 850;
}

.legal-body {
  background: var(--paper);
  color: var(--ink);
}

.contact-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 18%, rgba(139, 179, 193, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 10%, rgba(242, 183, 34, 0.18), transparent 30rem),
    #0b1015;
  color: var(--text);
}

.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--header) + 4rem) 1.5rem 5rem;
}

.contact-page-main {
  min-height: calc(100vh - 235px);
  max-width: 960px;
  margin: 0 auto;
  padding: calc(var(--header) + 5rem) 1.5rem 6rem;
}

.contact-page-main h1 {
  margin-bottom: 1.3rem;
  color: var(--white);
}

.legal-main h1 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
}

.legal-note {
  padding: 1rem;
  border-left: 5px solid var(--gold);
  background: var(--white);
  color: var(--ink);
}

.legal-main section {
  padding: 2rem 0;
  border-top: 1px solid var(--line-dark);
}

.legal-main p,
.legal-main li {
  color: #3f4a52;
  line-height: 1.7;
}

.contact-page-card {
  max-width: 820px;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(9, 13, 18, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.contact-page-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.contact-page-links {
  margin-top: 1.5rem;
}

.legal-document {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  color: var(--ink);
}

.legal-document :where(h1, h2, h3, h4) {
  margin: 2rem 0 1rem;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-document h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.legal-document h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.legal-document h3,
.legal-document h4 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.legal-document :where(p, li, td, th) {
  color: #3f4a52;
  line-height: 1.7;
}

.legal-document a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-document table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.legal-document :where(td, th) {
  padding: 0.75rem;
  border: 1px solid var(--line-dark);
  vertical-align: top;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .main-nav,
  .language-select {
    display: none;
  }

  .topbar.is-open {
    height: 100svh;
    align-content: start;
    grid-template-rows: var(--header) auto auto;
    background: rgba(11, 16, 21, 0.98);
  }

  .topbar.is-open .main-nav,
  .topbar.is-open .language-select {
    display: flex;
    grid-column: 1 / -1;
  }

  .topbar.is-open .main-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar.is-open .main-nav a {
    min-height: 60px;
    font-size: 1.2rem;
  }

  .hero,
  .company-section,
  .contact-section,
  .area-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.5rem;
  }

  .hero-visual {
    justify-self: center;
  }

  .area-card:nth-child(even) .area-media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .hero,
  .company-section,
  .contact-section,
  .areas-section {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: calc(var(--header) + 3rem);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-copy > p:not(.kicker) {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-visual,
  .area-media {
    min-height: 240px;
  }

  .area-card {
    padding: 1rem;
  }

  .footer nav {
    justify-content: flex-start;
  }
}
