:root {
  --bg: #081017;
  --bg-deep: #050b10;
  --surface: rgba(10, 20, 29, 0.82);
  --surface-strong: rgba(9, 16, 24, 0.92);
  --text: #f8f2e6;
  --muted: #d6c7ad;
  --accent: #e3b35f;
  --accent-strong: #f2c36d;
  --card-border: rgba(237, 200, 122, 0.24);
  --shadow: rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(88, 125, 164, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(4, 9, 14, 0.68), rgba(4, 8, 12, 0.96)),
    url("./Banner.png") center top / cover fixed no-repeat,
    var(--bg);
  font-family: Georgia, "Times New Roman", serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(227, 179, 95, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(87, 134, 181, 0.08), transparent 26%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 10, 16, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 230, 182, 0.15), rgba(227, 179, 95, 0.06));
  border: 1px solid rgba(255, 227, 180, 0.16);
  padding: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #21160a;
  background: linear-gradient(180deg, #f1c775, #dca14c);
  border-color: rgba(92, 56, 27, 0.2);
  transform: translateY(-1px);
}

.nav-links a.active,
.nav-links a.active:hover,
.nav-links a.active:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.58);
  transform: none;
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switch a {
  min-width: 40px;
  padding: 8px 10px;
  border-radius: 7px;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: #21160a;
  background: linear-gradient(180deg, #f1c775, #dca14c);
}

.language-switch a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  color: #21160a;
  background: linear-gradient(180deg, #f1c775, #dca14c);
  border-color: rgba(92, 56, 27, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(138, 91, 27, 0.28);
}

.hero,
.section,
.legal-page,
.press-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.hero {
  padding-top: 42px;
  padding-bottom: 28px;
}

.marquee-band,
.cinematic-banner,
.campaign-step,
.value-card {
  background: linear-gradient(180deg, rgba(12, 22, 31, 0.82), rgba(6, 13, 20, 0.9));
  border: 1px solid var(--card-border);
  box-shadow: 0 28px 60px var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-gallery-card,
.panel,
.legal-card,
.support-card,
.gallery-card,
.image-band,
.highlight,
.campaign-step,
.value-card {
  background: linear-gradient(180deg, rgba(12, 22, 31, 0.82), rgba(6, 13, 20, 0.9));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px var(--shadow);
}

.hero-copy {
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(227, 179, 95, 0.14), transparent 40%),
    radial-gradient(circle at top right, rgba(120, 171, 214, 0.2), transparent 32%);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  line-height: 0.95;
  max-width: 11ch;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: #f1d29a;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions,
.actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  width: min(190px, 100%);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.store-badge img {
  width: 100%;
}

.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 1.65rem;
  color: var(--accent-strong);
}

.stat span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-gallery-card {
  padding: 18px;
  display: grid;
}

.hero-main-shot,
.legal-shot {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.hero-main-shot img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-main-shot figcaption,
.gallery-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 28ch;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(4, 9, 14, 0.7);
  color: var(--text);
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-band {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.marquee-band h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  max-width: 18ch;
}

.marquee-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.marquee-points span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section[id] {
  scroll-margin-top: 110px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
}

.panel,
.image-band,
.legal-card,
.support-card {
  padding: 30px;
}

.section-header p,
.panel p,
.legal-card p,
.support-card p,
.highlight p,
.image-band p,
.caption,
li {
  color: var(--muted);
  line-height: 1.8;
}

.info-list,
.legal-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.info-list li,
.legal-list li {
  margin-bottom: 12px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campaign-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.campaign-step {
  padding: 26px;
}

.step-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
}

.campaign-step h3,
.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.campaign-step p,
.value-card p {
  color: var(--muted);
  line-height: 1.8;
}

.highlight {
  overflow: hidden;
}

.highlight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.highlight-copy {
  padding: 22px;
}

.highlight-copy h3 {
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card.large {
  grid-column: span 7;
}

.gallery-card.small {
  grid-column: span 5;
}

.gallery-card figure {
  margin: 0;
  height: 100%;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-card figcaption {
  left: 16px;
  right: 16px;
}

.cinematic-banner {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
}

.cinematic-banner img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.cinematic-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  max-width: 620px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(4, 9, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cinematic-copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.cinematic-copy p:last-child {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.value-card {
  padding: 26px;
}

.value-card img {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.legal-page {
  max-width: 980px;
  padding-top: 40px;
  padding-bottom: 72px;
}

.press-page {
  padding-top: 40px;
  padding-bottom: 72px;
}

.press-hero {
  min-height: 560px;
  display: flex;
  align-items: end;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(5, 10, 16, 0.08), rgba(5, 10, 16, 0.82)),
    url("./Images/1.png") center / cover no-repeat;
  border: 1px solid var(--card-border);
  box-shadow: 0 28px 60px var(--shadow);
}

.press-hero-copy {
  max-width: 760px;
}

.press-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.press-panel,
.press-feature,
.asset-card,
.press-media {
  background: linear-gradient(180deg, rgba(12, 22, 31, 0.82), rgba(6, 13, 20, 0.9));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 60px var(--shadow);
}

.press-panel,
.press-feature,
.press-media {
  padding: 30px;
}

.press-panel p,
.press-feature p,
.press-facts dd {
  color: var(--muted);
  line-height: 1.8;
}

.press-facts dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.press-facts div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.press-facts div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.press-facts dt {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.press-facts dd {
  margin: 6px 0 0;
}

.press-feature-grid,
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.press-feature h3 {
  margin-bottom: 10px;
}

.press-media {
  display: grid;
  gap: 22px;
}

.press-media video {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.asset-card {
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
}

.asset-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.asset-card span {
  display: block;
  padding: 18px 20px;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #21160a;
  background: linear-gradient(180deg, #f1c775, #dca14c);
  border-color: rgba(92, 56, 27, 0.2);
  box-shadow: 0 16px 28px rgba(138, 91, 27, 0.22);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.press-store {
  margin-top: 18px;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  margin-bottom: 22px;
}

.legal-card .meta {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.legal-shot {
  min-height: 100%;
  border: 1px solid var(--card-border);
  box-shadow: 0 28px 60px var(--shadow);
}

.legal-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-section {
  margin-top: 26px;
}

.legal-section h2 {
  font-size: 1.28rem;
}

.legal-section + .legal-section {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .hero-grid,
  .panel-grid,
  .legal-hero,
  .cta-grid,
  .highlights,
  .campaign-grid,
  .value-grid,
  .marquee-band,
  .press-grid,
  .press-feature-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large,
  .gallery-card.small {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .legal-page,
  .press-page,
  .nav-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-wrap,
  .section-header {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-controls {
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }

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

  .language-switch {
    align-self: flex-start;
  }

  .hero-copy,
  .panel,
  .image-band,
  .legal-card,
  .support-card,
  .press-panel,
  .press-feature,
  .press-media {
    padding: 24px;
  }

  .press-hero {
    min-height: 520px;
    padding: 24px;
  }

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

  .hero-main-shot img {
    min-height: 340px;
  }

  .cinematic-banner,
  .cinematic-banner img {
    min-height: 380px;
  }

  .cinematic-copy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .highlight img {
    height: 200px;
  }

  .marquee-band {
    padding: 20px;
  }

  .marquee-points {
    justify-content: flex-start;
  }
}
