:root {
  --navy: #0d1730;
  --navy-soft: #18243e;
  --white: #ffffff;
  --text: #111a30;
  --muted: #6b7485;
  --line: rgba(17, 26, 48, 0.1);
  --accent: #f2c318;
  --shadow: 0 24px 60px rgba(8, 15, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
}

h1,
h2,
p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 23, 48, 0.98);
  backdrop-filter: blur(18px);
}

.header-inner,
.hero-inner,
.intro-section,
.discover-section,
.social-section,
.contact-section,
.site-footer {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 120px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo {
  width: clamp(220px, 28vw, 340px);
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a,
.section-label,
.eyebrow {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.menu-button {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  flex: 0 0 auto;
}

.menu-button span {
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.mobile-menu {
  display: none;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-menu a {
  display: block;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu a:first-child {
  border-top: 0;
}

.mobile-menu-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(24, 36, 62, 0.98);
  box-shadow: 0 18px 40px rgba(8, 15, 32, 0.22);
}

body.menu-open .mobile-menu {
  display: block;
}

body.menu-open .menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 120px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), var(--white)),
    linear-gradient(rgba(17, 26, 48, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 48, 0.06) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 32%, rgba(255, 255, 255, 0.96) 100%);
}

.hero-inner {
  position: relative;
  padding: 140px 0 140px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid rgba(17, 26, 48, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  box-shadow: 0 10px 30px rgba(8, 15, 32, 0.06);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 7ch;
  margin-top: 40px;
  font-size: clamp(4.8rem, 15vw, 9.2rem);
  line-height: 0.88;
}

h1 span {
  display: block;
  color: var(--accent);
}

.home-title {
  max-width: 11ch;
  line-height: 0.94;
}

.home-title span {
  display: inline;
}

.intro {
  max-width: 42rem;
  margin-top: 44px;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.5;
  color: var(--muted);
}

.intro-section,
.discover-section,
.content-section,
.contact-section {
  padding-top: 72px;
}

.section-label {
  margin-bottom: 48px;
  color: var(--text);
}

.brand-block {
  margin-bottom: 28px;
}

.brand-mark {
  width: min(440px, 100%);
  height: auto;
  display: block;
}

.intro-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
}

.intro-copy p,
.contact-actions p {
  font-size: 1.38rem;
  line-height: 1.52;
  color: var(--muted);
}

.contact-section {
  padding-bottom: 64px;
}

.contact-panel {
  max-width: 760px;
}

.contact-actions {
  display: grid;
  align-content: start;
  gap: 22px;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 88px;
  padding: 22px 34px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(8, 15, 32, 0.08);
}

.site-footer {
  padding: 0 0 52px;
}

.site-footer p {
  border-top: 1px solid rgba(17, 26, 48, 0.08);
  padding-top: 42px;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 26, 48, 0.28);
}

.page-main {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 64px;
}

.page-hero {
  max-width: 840px;
  padding: 0 0 32px;
}

.page-title {
  max-width: 10ch;
  margin-top: 28px;
  font-size: clamp(3rem, 9vw, 6.4rem);
  line-height: 0.92;
}

.page-intro {
  max-width: 46rem;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.section-stack {
  display: grid;
  gap: 28px;
}

.section-stack-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgba(17, 26, 48, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(8, 15, 32, 0.05);
}

.content-card-accent {
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: start;
}

.content-card h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 0.98;
}

.content-card p,
.card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.card-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(8, 15, 32, 0.12);
}

.card-copy {
  display: grid;
  gap: 16px;
}

.rating {
  color: var(--text);
  font-weight: 700;
}

.link-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.link-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 18px;
  background: rgba(13, 23, 48, 0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.video-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(8, 15, 32, 0.12);
}

.video-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .section-stack-grid,
  .content-card-accent {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 96px;
  }

  .menu-button {
    order: 2;
    justify-self: end;
  }

  .logo-link {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    background-size: auto, 44px 44px, 44px 44px;
  }

  .hero-inner {
    padding: 44px 0 72px;
  }

  h1 {
    margin-top: 18px;
    font-size: clamp(2.3rem, 10.5vw, 3.8rem);
  }

  .home-title {
    max-width: 9.8ch;
    line-height: 0.98;
  }

  .home-title span {
    display: inline;
  }

  .page-title {
    max-width: 11ch;
    margin-top: 18px;
    font-size: clamp(2.15rem, 9.6vw, 3.4rem);
    line-height: 0.94;
  }

  .page-main {
    padding: 28px 0 48px;
  }

  .page-hero {
    padding: 0 0 18px;
  }

  .page-intro {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .intro-copy p,
  .content-card p,
  .contact-actions p,
  .intro {
    font-size: 1.02rem;
    line-height: 1.45;
  }

  .brand-mark {
    width: min(320px, 100%);
  }

  .content-card {
    padding: 24px;
    border-radius: 24px;
  }

  .video-frame iframe {
    min-height: 220px;
  }

  .contact-mail {
    width: 100%;
  }
}
