/* =========================
   RESET + VARIABLES
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0b1633;
  --navy2: #16214a;
  --gold: #c9a24d;
  --ivory: #f6f4ef;
  --dark: #0a0f1f;
  --text: #1f2937;
  --muted: #6b7280;
  --radius: 14px;
  --maxw: 1200px;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.container {
  max-width: var(--maxw);
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HEADER / NAV
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 51, 0.92);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  min-width: 170px;
}

.brand-name strong {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.brand-name .tagline {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  opacity: 0.75;
  letter-spacing: 0.08em;
  font-style: italic;
  text-transform: lowercase;
}

.navlinks {
  display: flex;
  gap: 28px;
  align-items: center;
}

.navlinks a {
  color: white;
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.86;
}

.navlinks a:hover {
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.45rem;
  cursor: pointer;
  line-height: 1;
  padding: 10px 8px;
}

/* =========================
   MOBILE MENU
========================= */
.mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
}

.mobile a {
  padding: 16px 20px;
  color: white;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: .92;
}

.mobile a:hover { opacity: 1; }

/* =========================
   BUTTONS
========================= */
.btn {
  background: linear-gradient(135deg, var(--gold), #e6c97a);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* =========================
   HERO (GLOBAL)
========================= */
.hero {
  padding: 84px 0;
  background: radial-gradient(circle at top, var(--navy2), #050914);
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero .overline {
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.82;
}

.hero .hero-tagline {
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.90);
  font-size: 0.95rem;
}

.hero h1 {
  margin-top: 16px;
  font-size: 2.65rem;
  line-height: 1.15;
}

.hero p {
  margin-top: 14px;
  color: #d1d5db;
  max-width: 62ch;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-right .img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 90px 0;
}

.head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  align-items: flex-end;
}

.head h2 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.head p {
  max-width: 70ch;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 0.95rem;
}

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

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
}

.card .media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.card .body {
  padding: 22px;
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 0.95rem;
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--navy);
  color: white;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}

footer p {
  font-size: 0.86rem;
  opacity: 0.78;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

footer .foot-tagline {
  font-style: italic;
  letter-spacing: 0.06em;
  opacity: 0.75;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .navlinks {
    display: none;
  }

  .burger {
    display: block;
  }

  .mobile.active {
    display: flex;
  }
}

@media (max-width: 520px) {
  .brand { min-width: unset; }
  .brand-name strong { font-size: 1rem; }
  .brand-name .tagline { font-size: 0.70rem; }

  .hero {
    padding: 66px 0;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }
}