:root {
  --navy: #07112c;
  --navy-soft: #0f1f42;
  --gold: #bb9447;
  --gold-light: #cba86a;
  --gold-muted: #b3a184;
  --text-muted: #5b6472;
  --bg-light: #f4f5f6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--bg-light);
}

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

ul {
  list-style: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 833;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  padding: 0 3vw 3vw;
}

.hero__logo {
  position: absolute;
  top: 4.5%;
  left: 3vw;
  height: 5.2%;
  min-height: 32px;
  width: auto;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.1vw, 2.85rem);
  line-height: 1.2;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hero__rule {
  display: block;
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin: 1.6rem 0 1.4rem;
}

.hero__subtext {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.4rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

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

.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--navy-soft);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  transform: translateY(-1px);
  background: var(--navy);
  color: #fff;
}

.btn__arrow {
  transition: transform 0.15s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

.hero__trust {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.hero__trust-icon {
  color: var(--navy);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.hero__trust-icon svg {
  width: 100%;
  height: 100%;
}

.hero__trust-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--navy);
}

.hero__trust-text strong {
  font-weight: 700;
}

.hero__trust-divider {
  width: 1px;
  align-self: stretch;
  background: #c9cdd4;
}

/* ---------- Strip ---------- */

.strip {
  background: var(--navy);
  padding: 1.5rem 2rem;
}

.strip__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-muted);
  text-align: center;
}

.strip__divider {
  width: 34px;
  height: 1px;
  background: var(--gold-muted);
  opacity: 0.6;
}

/* ---------- Story ---------- */

.story {
  display: flex;
  align-items: stretch;
  background: var(--bg-light);
}

.story__content {
  flex: 0 0 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3.2vw;
}

.story__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--navy);
}

.story__eyebrow strong {
  color: var(--gold);
  font-weight: 700;
}

.story__rule {
  display: block;
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin: 1.4rem 0;
}

.story__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.18;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 1.6rem;
}

.story__headline-accent {
  color: var(--gold);
}

.story__text {
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.story__belief {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.story__tagline {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--navy);
}

.story__visual {
  position: relative;
  flex: 1;
  aspect-ratio: 1154 / 941;
  overflow: hidden;
}

.story__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story__badge {
  position: absolute;
  top: 5%;
  right: 3%;
  text-align: right;
}

.story__badge p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.6;
  color: #f1f2f4;
}

.story__badge-rule {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold-muted);
  margin-top: 0.6rem;
}

.story__timeline {
  position: absolute;
  left: 0;
  right: 0;
  top: 72%;
}

.story__timeline-line {
  position: absolute;
  left: 2%;
  right: 2%;
  top: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.tl-point {
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-muted);
  display: block;
}

.tl-point--major .tl-dot {
  width: 13px;
  height: 13px;
}

.tl-point--gold .tl-dot {
  background: var(--gold);
}

.tl-point--white .tl-dot {
  background: #fff;
}

.tl-year {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-muted);
  white-space: nowrap;
}

.tl-label {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tl-point--gold .tl-label {
  color: var(--gold);
}

.tl-point--white .tl-label {
  color: #fff;
}

.tl-desc {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.story__caption {
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 4%;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.story__caption-light {
  color: rgba(255, 255, 255, 0.85);
}

.story__caption-gold {
  color: var(--gold-muted);
}

/* ---------- Modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 44, 0.6);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 20px 60px rgba(7, 17, 44, 0.35);
  transform: translateY(16px);
  transition: transform 0.2s ease;
  max-height: 90vh;
  overflow: auto;
}

.modal.is-open .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 0.4rem;
}

.modal__iframe {
  display: block;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    height: auto;
  }

  .hero__bg {
    position: static;
    order: 2;
    aspect-ratio: 1672 / 833;
    object-fit: cover;
    object-position: 62% top;
  }

  .hero__content {
    position: static;
    order: 1;
    height: auto;
    max-width: 100%;
    padding: 5.5rem 6vw 3rem;
  }

  .hero__logo {
    position: static;
    display: block;
    height: 30px;
    width: auto;
    min-height: 0;
    margin-bottom: 2.5rem;
  }

  .hero__subtext {
    max-width: 100%;
  }

  .hero__trust {
    gap: 1rem;
  }

  .hero__trust-divider {
    display: none;
  }

  .strip__text {
    flex-direction: column;
    gap: 0.8rem;
  }

  .strip__divider {
    display: none;
  }

  .story {
    flex-direction: column;
  }

  .story__content {
    padding: 3.5rem 6vw 2.5rem;
  }

  .story__visual {
    aspect-ratio: auto;
  }

  .story__badge {
    display: none;
  }

  .story__timeline {
    position: static;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 2rem 6vw;
  }

  .story__timeline-line {
    display: none;
  }

  .tl-point {
    position: static;
    transform: none;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.8rem;
  }

  .tl-point--minor {
    display: none;
  }

  .tl-dot {
    flex-shrink: 0;
  }

  .tl-year,
  .tl-label {
    margin-top: 0;
  }

  .tl-label {
    flex-shrink: 0;
    width: 3.2rem;
  }

  .tl-desc {
    margin-top: 0;
    white-space: normal;
  }

  .story__caption {
    position: static;
    background: var(--navy);
    display: block;
    padding: 0 6vw 2rem;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__trust-item {
    width: 100%;
  }
}
