@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ===== TOKENS ===== */
:root {
  --teal:              #1A3A4A;
  --teal-mid:          #2E5C72;
  --teal-light:        #E8F2F6;
  --gold:              #C9A84C;
  --gold-light:        #F5EDD6;
  --ivory:             #F7F4EE;
  --charcoal:          #1C1C1C;
  --mid:               #5A6872;
  --border:            rgba(26,58,74,0.12);
  --ff-display:        'Cormorant Garamond', Georgia, serif;
  --ff-head:           'Playfair Display', Georgia, serif;
  --ff-body:           'Outfit', sans-serif;
  --shadow:            0 4px 32px rgba(26,58,74,0.10);
  --shadow-lg:         0 12px 64px rgba(26,58,74,0.16);
  --r:                 6px;
  --r-lg:              12px;
  --ease:              cubic-bezier(.22,.68,0,1.2);
  --color-text-success:#15803d;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(26,58,74,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all .3s;
}
.nav.scrolled { height: 62px; background: rgba(26,58,74,0.99); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px; border-radius: 4px;
  /* background: var(--gold); */
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 600; font-size: 18px;
  color: var(--teal); letter-spacing: -1px; flex-shrink: 0;
}
.nav-logo .logo-mark img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 4px;
}
.nav-logo .logo-text { line-height: 1.1; }
.nav-logo .logo-text .name {
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  color: #fff; letter-spacing: 0.02em;
}
.nav-logo .logo-text .tagline {
  font-size: 9px; color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em; transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  padding: 9px 20px; border-radius: var(--r);
  background: var(--gold); color: var(--teal);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; transition: all .2s; white-space: nowrap;
}
.nav-cta:hover { background: #d4b563; transform: translateY(-1px); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: #fff; transition: all .3s; }

/* ===== PAGE SECTIONS ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 40px; }

/* ===== LABELS ===== */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gold);
  vertical-align: middle; margin-right: 10px;
}

/* ===== HEADINGS ===== */
.h-display {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(40px, 5vw, 68px); line-height: 1.08;
  letter-spacing: -0.01em;
}
.h-section {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(30px, 3.5vw, 48px); line-height: 1.15;
}
.h-card {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.2;
}
.gold { color: var(--gold); }
.teal { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
  transition: all .25s var(--ease);
}
.btn-gold {
  background: var(--gold); color: var(--teal);
}
.btn-gold:hover { background: #d4b563; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  background: transparent; border: 1px solid var(--border);
  color: var(--teal);
}
.btn-outline-dark:hover { border-color: var(--teal); background: var(--teal); color: #fff; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== CARDS ===== */
.card {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s var(--ease);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 28px; }

/* ===== STAT CARDS ===== */
.stat-card {
  background: var(--teal); color: #fff;
  border-radius: var(--r-lg); padding: 28px 24px;
  text-align: center;
}
.stat-card .val {
  font-family: var(--ff-display); font-size: 38px; font-weight: 300;
  color: var(--gold); line-height: 1.1; margin-bottom: 6px;
}
.stat-card .lbl {
  font-size: 12px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===== DIVIDER ===== */
.divider { width: 48px; height: 2px; background: var(--gold); margin: 20px 0; }
.divider-center { margin: 20px auto; }

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  background: var(--gold-light); color: var(--teal);
}
.tag-dark { background: var(--teal); color: var(--gold); }

/* ===== FORM ===== */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; color: var(--mid);
  text-transform: uppercase; margin-bottom: 7px;
}
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 14px;
  background: #fff; color: var(--charcoal);
  transition: border-color .2s;
  outline: none;
}
.form-control:focus { border-color: var(--teal); }
select.form-control { appearance: none; cursor: pointer; }

/* ===== FOOTER ===== */
.footer {
  background: var(--teal); color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .name {
  font-family: var(--ff-display); font-size: 22px; font-weight: 600;
  color: #fff; margin-bottom: 6px;
}
.footer-brand .sub {
  font-size: 11px; color: var(--gold); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.fade-up { animation: fadeUp .7s var(--ease) both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }
.fade-up-d4 { animation-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 11px; }
}
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 24px; }
  .container, .container-wide { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--teal); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display); font-size: 28px; font-weight: 300;
  color: rgba(255,255,255,0.85); letter-spacing: 0.02em;
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .close-btn {
  position: absolute; top: 24px; right: 24px;
  font-size: 32px; color: rgba(255,255,255,0.6);
  background: none; border: none; cursor: pointer;
}

/* ===== PATTERN BG ===== */
.pattern-bg {
  background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ===== GOLD LINE ACCENT ===== */
.gold-line {
  position: relative;
}
.gold-line::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  border-radius: 2px;
}