:root {
  --navy: #071729;
  --navy-2: #0b2238;
  --ink: #122032;
  --cream: #f7f2e8;
  --paper: #fffaf0;
  --white: #ffffff;
  --gold: #c99a42;
  --gold-dark: #9b6f23;
  --line: rgba(7, 23, 41, 0.14);
  --muted: #5d6875;
  --shadow: 0 24px 80px rgba(7, 23, 41, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 23, 41, 0.82), rgba(7, 23, 41, 0.12));
}

.brand,
.site-header nav,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.site-header nav {
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header nav a {
  opacity: 0.82;
}

.site-header nav a:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(7, 23, 41, 0.36);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 23, 41, 0.9) 0%, rgba(7, 23, 41, 0.62) 34%, rgba(7, 23, 41, 0.12) 74%),
    linear-gradient(0deg, rgba(7, 23, 41, 0.7), transparent 42%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  padding: clamp(124px, 15vh, 170px) 0 118px;
  margin-left: clamp(18px, 6vw, 88px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.9;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  color: var(--navy);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.25;
}

p {
  line-height: 1.65;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  white-space: nowrap;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 23, 41, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 5px;
  color: var(--gold);
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.4;
}

.section-band,
.offer,
.booking {
  padding: clamp(62px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(34px, 6vw, 88px);
  background: var(--paper);
}

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

.section-copy p:not(.eyebrow),
.studio-copy p,
.sponsor-copy p,
.booking-card p {
  color: var(--muted);
  font-size: 1.02rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  min-height: 230px;
  padding: 26px;
  background: var(--white);
}

.proof-strip span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border: 1px solid rgba(201, 154, 66, 0.5);
  color: var(--gold-dark);
  font-weight: 900;
}

.proof-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
}

.proof-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.studio-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(18px, 5vw, 72px) clamp(72px, 10vw, 132px);
  background: var(--paper);
}

.studio-image-wrap {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.studio-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.studio-copy {
  max-width: 600px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
}

.use-cases {
  background: var(--cream);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.use-grid article {
  min-height: 230px;
  padding: 28px;
  background: var(--paper);
}

.use-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(30px, 5vw, 72px);
  background: var(--white);
}

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

.offer-grid div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.offer-grid strong,
.offer-grid span {
  display: block;
}

.offer-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.offer-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.sponsor-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(68px, 10vw, 128px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.sponsor-band h2 {
  color: var(--white);
}

.sponsor-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.sponsor-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.sponsor-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 23, 41, 0.4), transparent 42%),
    linear-gradient(0deg, rgba(7, 23, 41, 0.54), transparent 42%);
  content: "";
}

.sponsor-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.booking {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.8), rgba(255, 250, 240, 1)),
    url("assets/stream-wagon-exterior.png") center / cover;
}

.booking-card {
  width: min(850px, 100%);
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(201, 154, 66, 0.34);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  font-size: 0.92rem;
}

footer span:first-child {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .intro,
  .studio-feature,
  .offer,
  .sponsor-band {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand span {
    max-width: 132px;
    line-height: 1.1;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 23, 41, 0.92), rgba(7, 23, 41, 0.5)),
      linear-gradient(0deg, rgba(7, 23, 41, 0.78), transparent 48%);
  }

  .hero-content {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 118px 0 280px;
    margin-left: 16px;
  }

  .hero-lede {
    width: min(330px, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    font-size: 1rem;
  }

  .hero-actions {
    width: min(330px, calc(100vw - 48px));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 3.7rem);
    line-height: 0.94;
  }

  .hero-panel {
    right: 16px;
    bottom: 18px;
    left: 16px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .proof-strip,
  .use-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .sponsor-visual,
  .sponsor-visual img {
    min-height: 260px;
  }

  .proof-strip div,
  .use-grid article {
    min-height: 0;
  }

  .button {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .studio-feature {
    padding-top: 0;
  }

  footer {
    flex-direction: column;
  }
}
