:root {
  --navy: #0B1D38;
  --navy-dark: #061326;
  --gold: #F2C14E;
  --cream: #F6F1E7;
  --white: #ffffff;
  --text: #1B2434;
  --muted: #5d6a7e;
  --border: #e2dccd;
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

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

.section { padding: 76px 0; }

/* Back link */
.back-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;
  background: rgba(6, 19, 38, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}
.back-link:hover { transform: translateY(-1px); background: rgba(6, 19, 38, 0.9); }

/* Hero */
.hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(242, 193, 78, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, #10284f);
  color: #fff;
  padding: 96px 0 72px;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 500px; }
.badge {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 76px);
  line-height: 0.96;
  margin: 0 0 24px;
  color: #f7f3ea;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-copy {
  font-size: 21px;
  line-height: 1.6;
  color: #d7deec;
  max-width: 640px;
  margin: 0;
}
.btns {
  margin: 28px 0 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(242, 193, 78, 0.28);
}
.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-secondary.dark { border-color: rgba(11, 29, 56, 0.25); color: var(--navy); }
.btn-secondary.dark:hover { background: rgba(11, 29, 56, 0.06); }

.stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stats div { color: #fff; font-size: 15px; font-weight: 700; }
.stats span {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero-img { flex: 1 1 400px; }
.hero-img img {
  width: 100%;
  max-width: 560px;
  border-radius: 26px;
  margin-left: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

/* Video */
.video-wrapper { margin-top: 22px; }
.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 24px 60px rgba(11, 29, 56, 0.16);
}

/* About */
.about { max-width: 1000px; }
.about h2 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 28px;
}
.about p {
  font-size: 19px;
  line-height: 1.85;
  color: #2b3445;
  margin: 0 0 22px;
}
.about-lead {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--navy);
}
.about-highlight {
  font-weight: 700;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* Features */
.feature-box {
  background: #fff;
  padding: 44px;
  border-radius: 26px;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(11, 29, 56, 0.08);
}
.feature-box h3 {
  text-align: center;
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 32px;
  color: var(--navy);
}
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: #2b3445;
}
.feature-list li::before {
  content: "\2713";
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 18px 40px rgba(11, 29, 56, 0.18);
}

/* CTA */
.cta-section {
  text-align: center;
  background: var(--navy);
  color: #fff;
  border-radius: 30px;
  padding: 64px 32px;
  margin-bottom: 76px;
}
.cta-section h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.cta-section p { color: #d7deec; font-size: 18px; margin: 10px 0 28px; }
.cta-section .btns { justify-content: center; }

/* Footer */
.listing-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}
.listing-footer p { margin: 0; }

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 19, 38, 0.94);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 24px;
}
.modal.open { display: flex; }
.modal img {
  max-width: 92%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}
.modal-close:hover { opacity: 1; }

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 80px 0 56px; }
  .hero-img img { margin: 0 auto; }
  .stats { gap: 24px; }
  .feature-box { padding: 30px 24px; }
  .gallery img { height: 220px; }
  .cta-section { padding: 48px 24px; }
}
