@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --navy: #0d1b2e;
  --navy-2: #16324f;
  --navy-3: #1e4a6e;
  --gold: #c6a15b;
  --gold-2: #e4d0a0;
  --cream: #f3eee5;
  --paper: #fffcf8;
  --ink: #161b24;
  --muted: #5b6573;
  --line: #e4dccb;
  --ok: #1b6b4a;
  --danger: #8b2e2e;
  --shadow: 0 24px 60px rgba(13, 27, 46, 0.12);
  --radius: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.disclosure {
  background: var(--navy);
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 1.2rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(198, 161, 91, 0.28);
}

.disclosure strong {
  color: #fff;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: rgba(255, 252, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 34px;
  z-index: 40;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 220px;
}

.logo-mark {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.logo-text span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.92rem;
  color: var(--navy-2);
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--cream);
  color: var(--navy);
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #d4b36c;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover {
  background: var(--navy-2);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: #fff;
  background: #0d1b2e url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 46, 0.25) 0%, rgba(13, 27, 46, 0.78) 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto 4.5rem;
}

.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--gold-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.hero h1,
.page-hero h1,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.lede {
  max-width: 46ch;
  font-size: 1.12rem;
  color: #ece7dc;
  margin-bottom: 1.6rem;
}

.hero-actions,
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.stat {
  background: var(--paper);
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--navy);
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head p,
.muted {
  color: var(--muted);
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--navy);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split img,
.media-frame video {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame {
  position: relative;
}

.caption {
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 46, 0.05);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1.3rem 1.25rem 1.5rem;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.pill {
  display: inline-block;
  background: var(--cream);
  color: var(--navy-2);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.75rem;
  margin-bottom: 0.55rem;
}

.fees {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 2.2rem;
}

.fees h2,
.fees h3 {
  color: #fff;
}

.fees p {
  color: #d7deea;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1.4rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: left;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.fees th {
  color: var(--gold-2);
  font-weight: 500;
}

.paper-table th,
.paper-table td {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.paper-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.4rem 1rem 1rem;
}

.note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--gold-2);
}

.disclaimer {
  background: #fff8e8;
  border: 1px solid #ead9a8;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  font-size: 0.92rem;
  color: #5b4a22;
  margin: 1.2rem 0;
}

.timeline {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
}

.tl-item {
  padding: 0 0 1.6rem;
  position: relative;
}

.tl-item::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: -1.75rem;
  top: 0.35rem;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(13, 27, 46, 0.78), rgba(13, 27, 46, 0.45)),
    var(--hero, url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80"))
      center/cover;
  color: #fff;
  padding: 5.5rem 0 4rem;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  max-width: 16ch;
}

.page-hero p {
  max-width: 46ch;
  color: #ece7dc;
  margin-top: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card,
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
}

.contact-card a:hover {
  color: var(--navy);
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.7rem 0 0.3rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--paper);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.legal {
  max-width: 50rem;
}

.legal h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}

.legal p,
.legal li {
  margin-bottom: 0.8rem;
  color: #3b4450;
}

.split ul,
.legal ul {
  margin: 1rem 0 1.2rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.split li,
.legal li {
  margin: 0.35rem 0;
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.ad-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.ad-card small {
  color: var(--muted);
}

.count {
  float: right;
  font-variant-numeric: tabular-nums;
  color: var(--ok);
  font-size: 0.78rem;
}

.count.warn {
  color: var(--danger);
}

.keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.keywords span {
  background: var(--cream);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.86rem;
}

.footer {
  background: var(--navy);
  color: #d5dbe6;
  padding: 3.2rem 0 1.4rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer h3,
.footer .logo-text strong {
  color: #fff;
}

.footer a:hover {
  color: var(--gold-2);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin: 0.35rem 0;
}

.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #9aa6b5;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  display: none;
  z-index: 80;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie.show {
  display: flex;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.3;
  color: var(--navy);
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.8rem;
}

.gallery img:first-child {
  grid-row: span 2;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery img {
  height: 205px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.has-sub {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.4rem;
  box-shadow: var(--shadow);
  z-index: 20;
}

.has-sub:hover .submenu,
.has-sub.open .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

.faq p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f7a4d;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  z-index: 70;
  box-shadow: var(--shadow);
}

.copy-btn {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.7rem;
}

.ad-card {
  position: relative;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav.open .nav-links,
  .nav.open .nav-cta {
    display: flex;
  }

  .nav.open {
    flex-wrap: wrap;
  }

  .nav.open .nav-links {
    width: 100%;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .split,
  .split.reverse,
  .cards,
  .stats,
  .contact-grid,
  .footer-grid,
  .ads-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .split img,
  .media-frame video,
  .gallery img,
  .gallery img:first-child {
    height: 280px;
    min-height: 0;
  }

  .hero {
    min-height: 78vh;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
  }
}
