:root{
  --navy: #0d2340;
  --navy-strong: #07182c;
  --navy-soft: rgba(13, 35, 64, 0.72);
  --sand: #efe2cf;
  --sand-strong: #e4d0b0;
  --cream: #f8f3ea;
  --white: #fffdf8;
  --brass: #d4a247;
  --brass-deep: #b67a1f;
  --mist: rgba(255,255,255,0.58);
  --stroke: rgba(13, 35, 64, 0.1);
  --stroke-light: rgba(255,255,255,0.18);
  --shadow: 0 30px 90px rgba(11, 29, 51, 0.13);
  --radius-xl: 48px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1220px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: "Manrope", "Avenir Next", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 10% 0%, rgba(212,162,71,0.22), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(13,35,64,0.10), transparent 22%),
    linear-gradient(180deg, #fbf8f1 0%, #f7efe3 48%, #f5ede3 100%);
}

img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button, input, textarea{ font: inherit; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.siteHeader{
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 10px 0;
  backdrop-filter: blur(18px);
  background: rgba(248,243,234,0.72);
  border-bottom: 1px solid rgba(13,35,64,0.06);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img{
  width: clamp(118px, 13vw, 168px);
}

.brandMark{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brandMark strong{
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brandMark span{
  color: var(--navy-soft);
  font-size: 13px;
}

.menuWrap{
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(13,35,64,0.08);
}

.menu a{
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 800;
}

.menu a.active,
.menu a:hover{
  background: var(--navy);
  color: var(--white);
}

.mobileToggle{
  display: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13,35,64,0.12);
  background: rgba(255,255,255,0.56);
  color: var(--navy);
  font-weight: 800;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(13,35,64,0.12);
  background: rgba(255,255,255,0.58);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(13,35,64,0.12);
}

.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--navy-strong), #1a3f6d);
  color: var(--white);
}

.btn.secondary{
  background: rgba(212,162,71,0.14);
  border-color: rgba(212,162,71,0.22);
}

.eyebrow,
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(13,35,64,0.08);
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before{
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e0b867, var(--brass-deep));
}

h1, h2, h3, h4{
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

p{
  margin: 0;
  line-height: 1.7;
}

.lede{
  color: var(--navy-soft);
  font-size: 18px;
  max-width: 62ch;
}

.hero{
  padding: 54px 0 42px;
}

.heroShell{
  position: relative;
  overflow: hidden;
  border-radius: 56px;
  padding: 58px 58px 46px;
  background:
    radial-gradient(circle at 15% 12%, rgba(212,162,71,0.24), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(255,255,255,0.14), transparent 20%),
    linear-gradient(140deg, #081b31 0%, #0d2746 42%, #143862 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.heroShell::after{
  content: "";
  position: absolute;
  inset: auto auto -120px -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(212,162,71,0.12);
}

.heroShell .eyebrow,
.heroShell .kicker{
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84);
}

.heroGrid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: 44px;
  align-items: center;
}

.heroCopy{
  display: grid;
  align-content: start;
  justify-items: start;
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.heroCopy h1{
  margin-top: 0;
  font-size: clamp(44px, 5.8vw, 78px);
  max-width: 9.2ch;
}

.heroShell .lede{
  margin-top: 22px;
  max-width: 52ch;
  color: rgba(255,255,255,0.78);
}

.heroActions{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 30px;
}

.heroActions .btn{
  min-width: 178px;
}

.heroActions .btn.secondary{
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.heroStill{
  position: relative;
  min-height: 440px;
  padding: 22px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 24px 50px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.heroStill::before{
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 18%, rgba(212,162,71,0.34), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.12), transparent 18%),
    linear-gradient(145deg, rgba(8,27,49,0.94), rgba(17,51,87,0.82));
  border: 1px solid rgba(255,255,255,0.08);
}

.stillCard{
  position: absolute;
  inset: 22px;
  z-index: 1;
  display: grid;
  align-content: space-between;
  padding: 26px;
}

.stillTag{
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stillPlaceholder{
  align-self: center;
  justify-self: stretch;
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  border: 1.5px dashed rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 24px;
}

.stillPlaceholder strong{
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.heroMeta{
  display: grid;
  gap: 14px;
}

.heroCaption{
  margin: 0;
  max-width: 100%;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}

.heroCaption p{
  color: rgba(255,255,255,0.78);
}

.heroCaption strong{
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proofStrip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 0 6px;
}

.proofItem{
  padding-top: 18px;
  border-top: 1px solid rgba(13,35,64,0.14);
}

.proofItem strong{
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proofItem span{
  color: var(--navy-soft);
  line-height: 1.6;
}

.proofBand{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.proofBand .tile{
  background: rgba(255,255,255,0.56);
}

.proofBand .tile h4{
  font-size: 24px;
  margin-bottom: 8px;
}

.section{
  padding: 56px 0;
}

.section.editorial{
  padding-top: 42px;
}

.sectionHead{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.sectionHead h2{
  font-size: clamp(38px, 6vw, 74px);
  max-width: 10ch;
}

.sectionHead p{
  max-width: 50ch;
  color: var(--navy-soft);
}

.softWrap{
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.54), rgba(255,255,255,0.36));
  border: 1px solid rgba(13,35,64,0.08);
  box-shadow: var(--shadow);
}

.editorialSplit{
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.editorialIntro{
  display: grid;
  gap: 18px;
  padding-top: 6px;
}

.editorialIntro h2{
  font-size: clamp(42px, 6vw, 72px);
  max-width: 9ch;
}

.editorialCards{
  display: grid;
  gap: 18px;
}

.editorialCards .tile{
  background: rgba(255,255,255,0.5);
}

.formatsBlock{
  display: grid;
  gap: 24px;
}

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

.sectionNote{
  max-width: 44ch;
  color: var(--navy-soft);
}

.softWrap.dark{
  background:
    radial-gradient(circle at 12% 15%, rgba(212,162,71,0.18), transparent 28%),
    linear-gradient(145deg, #0b1f38 0%, #13345a 100%);
  color: var(--white);
}

.softWrap.dark .sectionHead p,
.softWrap.dark .bodyText,
.softWrap.dark .small,
.softWrap.dark .list{
  color: rgba(255,255,255,0.76);
}

.softWrap.dark .tile{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.softWrap.dark .eyebrow,
.softWrap.dark .kicker{
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84);
}

.grid{
  display: grid;
  gap: 24px;
}

.grid.two{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tile{
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(13,35,64,0.08);
}

.tile h3{
  font-size: 34px;
  margin-bottom: 12px;
}

.tile h4{
  font-size: 28px;
  margin-bottom: 10px;
}

.tile p,
.bodyText,
.tile li{
  color: var(--navy-soft);
}

.label{
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brass-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.list{
  margin: 14px 0 0;
  padding-left: 18px;
}

.list li + li{
  margin-top: 8px;
}

.split{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
}

.quotePanel{
  padding: 36px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(212,162,71,0.14), rgba(255,255,255,0.5));
  border: 1px solid rgba(212,162,71,0.26);
}

.quotePanel p{
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.quotePanel small{
  display: block;
  margin-top: 18px;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.6;
}

.featureVideo{
  overflow: hidden;
  border-radius: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.14);
  line-height: 0;
}

.featureVideo iframe{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
}

.subHero{
  padding: 42px 0 18px;
}

.subHeroShell{
  position: relative;
  overflow: hidden;
  padding: 42px 46px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 0% 0%, rgba(212,162,71,0.16), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,255,255,0.38));
  border: 1px solid rgba(13,35,64,0.08);
}

.subHeroShell h1{
  margin-top: 16px;
  font-size: clamp(46px, 8vw, 90px);
  max-width: 10ch;
}

.faqItem{
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(13,35,64,0.08);
}

.faqItem h3{
  margin-bottom: 12px;
  font-size: 30px;
}

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

.contactStack{
  display: grid;
  gap: 18px;
}

.contactCard{
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.42));
  border: 1px solid rgba(13,35,64,0.08);
}

.contactCard a{
  color: #1b4e83;
  font-weight: 800;
}

.formShell{
  padding: 34px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.46));
  border: 1px solid rgba(13,35,64,0.08);
  box-shadow: var(--shadow);
}

.form{
  display: grid;
  gap: 18px;
}

.formStatus{
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13,35,64,0.08);
  background: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.5;
}

.formStatus[data-tone="success"]{
  border-color: rgba(31, 122, 74, 0.24);
  background: rgba(31, 122, 74, 0.08);
  color: #155c38;
}

.formStatus[data-tone="error"]{
  border-color: rgba(146, 46, 46, 0.2);
  background: rgba(146, 46, 46, 0.08);
  color: #7d2020;
}

.field{
  display: grid;
  gap: 8px;
}

label{
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

input,
textarea{
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(13,35,64,0.1);
  background: rgba(255,255,255,0.7);
  color: var(--navy);
}

textarea{
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus{
  outline: none;
  border-color: rgba(27,78,131,0.34);
  box-shadow: 0 0 0 4px rgba(27,78,131,0.1);
}

.small{
  font-size: 14px;
  line-height: 1.6;
}

.footer{
  padding: 34px 0 48px;
}

.footerShell{
  overflow: hidden;
  padding: 34px 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 14%, rgba(212,162,71,0.18), transparent 28%),
    linear-gradient(145deg, #081b31 0%, #102b4a 100%);
  color: var(--white);
}

.footerGrid{
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footerBrand{
  display: grid;
  gap: 16px;
}

.watchHero{
  display: grid;
  gap: 30px;
}

.watchHero .sectionHead{
  margin-bottom: 0;
}

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

.watchFrame{
  overflow: hidden;
  padding: 0;
  border-radius: 42px;
  background: transparent;
  box-shadow: none;
}

.watchCopy{
  padding: 30px 34px;
}

.watchCopy .sectionHead{
  gap: 16px;
}

.watchCopy .sectionHead h2{
  font-size: clamp(34px, 4.8vw, 58px);
  max-width: 9ch;
}

.footerBrand img{
  width: min(250px, 100%);
}

.footerShell .small{
  color: rgba(255,255,255,0.76);
}

.badgeRow{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 800;
}

[data-reveal]{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].revealed{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px){
  .grid.four,
  .split,
  .contactGrid,
  .proofBand,
  .watchTop,
  .editorialSplit,
  .formatsGrid,
  .proofStrip{
    grid-template-columns: 1fr;
  }

  .sectionHead{
    flex-direction: column;
    align-items: start;
  }

  .heroShell{
    padding: 48px;
  }

  .heroGrid{
    gap: 28px;
  }
}

@media (max-width: 860px){
  .menuWrap{
    flex-direction: column;
    align-items: stretch;
  }

  .mobileToggle{
    display: inline-flex;
    align-self: flex-end;
  }

  .menu{
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
    padding: 10px;
  }

  .menu.open{
    display: flex;
  }

  .grid.two,
  .grid.three{
    grid-template-columns: 1fr;
  }

  .footerGrid{
    flex-direction: column;
  }

  .hero{
    padding: 54px 0 40px;
  }

  .heroActions .btn{
    min-width: 0;
  }

  .heroCopy{
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 640px){
  .container{
    width: min(var(--max), calc(100% - 24px));
  }

  .siteHeader{
    padding: 8px 0;
  }

  .brand{
    align-items: start;
  }

  .brand img{
    width: 110px;
  }

  .heroShell,
  .softWrap,
  .footerShell,
  .subHeroShell,
  .formShell{
    padding: 26px;
    border-radius: 32px;
  }

  .watchCopy{
    padding: 26px;
  }

  .section{
    padding: 34px 0;
  }

  .sectionHead{
    gap: 18px;
    margin-bottom: 24px;
  }

  .grid{
    gap: 18px;
  }

  .heroCopy h1{
    font-size: clamp(48px, 17vw, 82px);
  }

  .heroStill{
    min-height: 320px;
    padding: 14px;
    border-radius: 28px;
  }

  .heroStill::before{
    inset: 14px;
    border-radius: 18px;
  }

  .stillCard{
    inset: 14px;
    padding: 18px;
  }

  .subHeroShell h1{
    font-size: clamp(42px, 15vw, 70px);
  }

  .tile h3,
  .faqItem h3{
    font-size: 28px;
  }

  .tile h4{
    font-size: 24px;
  }

  .watchHero{
    gap: 20px;
  }

  .watchFrame{
    border-radius: 30px;
  }

  .featureVideo{
    padding: 0;
  }

  .featureVideo iframe{
    border-radius: 20px;
  }
}
