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

:root {
  --navy-deep:   #060b20;
  --navy:        #08102a;
  --navy-mid:    #0c1840;
  --gold:        #d4a843;
  --gold-bright: #f0c050;
  --gold-dim:    #b8922a;
  --off-white:   #f0eadb;
  --w80: rgba(240,234,219,0.80);
  --w50: rgba(240,234,219,0.50);
  --w20: rgba(240,234,219,0.12);
  --w08: rgba(240,234,219,0.05);
  --gborder: rgba(212,168,67,0.25);
  --gglow:   rgba(212,168,67,0.10);
  --ease: cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deep);
  color: var(--off-white);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 180px; opacity: 0.4;
}

/* Layout */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 2.5rem; position: relative; z-index: 2; }
section { position: relative; z-index: 2; }

/* Typography */
.display { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }
.display em { font-style: italic; color: var(--gold-bright); }
.eyebrow {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.9rem; border-radius: 2px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold-bright) 50%, var(--gold-dim) 100%);
  background-size: 200% auto;
  color: var(--navy-deep); font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.77rem; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; box-shadow: 0 4px 20px rgba(212,168,67,0.25);
  transition: background-position 0.5s var(--ease), box-shadow 0.3s, transform 0.25s;
}
.btn-gold:hover { background-position: right center; box-shadow: 0 8px 36px rgba(212,168,67,0.4); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.9rem; border-radius: 2px;
  border: 1px solid var(--gborder);
  color: var(--off-white); font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: 0.77rem; letter-spacing: 0.13em; text-transform: uppercase;
  text-decoration: none; background: transparent;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: var(--gglow); transform: translateY(-2px); }

/* Divider */
.divider {
  width: 100%; height: 1px; position: relative; z-index: 2;
  background: linear-gradient(90deg, transparent, var(--gborder) 20%, var(--gold) 50%, var(--gborder) 80%, transparent);
}

/* Card */
.card {
  background: var(--w08); border: 1px solid var(--gborder); border-radius: 3px; padding: 2rem;
  transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover::after { transform: scaleX(1); }
.card:hover { background: rgba(212,168,67,0.06); border-color: rgba(212,168,67,0.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

/* Sec header */
.sec-head { margin-bottom: 3rem; }
.sec-title { font-size: clamp(2rem, 3.5vw, 3.4rem); margin-top: 0.75rem; }
.sec-rule { width: 44px; height: 1px; background: var(--gold); margin-top: 1.2rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ NAV ═══════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2.5rem;
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(6,11,32,0.95);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--gborder);
}
.nav-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--gold-bright); letter-spacing: 0.1em; line-height: 1;
  text-shadow: 0 0 24px rgba(212,168,67,0.35);
}
.nav-logo-tag { font-size: 0.5rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--w50); }
.nav-links { display: flex; list-style: none; align-items: center; gap: 0; }
.nav-links a {
  display: block; padding: 0.45rem 0.95rem;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; color: var(--w50);
  border: 1px solid transparent; border-radius: 3px;
  transition: all 0.3s var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 0.95rem; right: 0.95rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-bright); }
.nav-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.nav-contact a { font-size: 0.68rem; color: var(--w50); text-decoration: none; transition: color 0.3s; letter-spacing: 0.04em; }
.nav-contact a:hover { color: var(--gold-bright); }

/* ═══════════ PAGE HERO ═══════════ */
.page-hero {
  padding: 130px 2.5rem 70px;
  background: radial-gradient(ellipse at 70% 30%, rgba(13,24,64,0.7) 0%, var(--navy-deep) 65%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; top: 0; right: 22%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gborder), transparent);
}
.page-hero-inner { max-width: 1220px; margin: 0 auto; }
.page-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

/* Hero left */
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-title { font-size: clamp(2.6rem, 5vw, 5rem); margin-bottom: 1.5rem; }
.hero-body { font-size: 0.95rem; color: var(--w80); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.85; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-pills { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 0.5rem; }
.hero-pill {
  background: var(--w08); border: 1px solid var(--gborder); border-radius: 3px; padding: 1.1rem 1.2rem;
  transition: all 0.3s var(--ease);
}
.hero-pill:hover { background: var(--gglow); border-color: rgba(212,168,67,0.4); }
.hero-pill-title { font-size: 0.85rem; font-weight: 600; color: var(--off-white); margin-bottom: 0.3rem; }
.hero-pill-desc { font-size: 0.75rem; color: var(--w50); line-height: 1.5; }

/* Hero right panel */
.hero-panel {
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid var(--gborder); border-radius: 6px;
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.panel-img {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light, #1a2c6e));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--gborder);
}
.panel-items { padding: 0; }
.panel-item {
  padding: 1rem 1.5rem; border-top: 1px solid rgba(212,168,67,0.15);
  transition: background 0.3s;
}
.panel-item:hover { background: rgba(212,168,67,0.05); }
.panel-item-title { font-size: 0.85rem; font-weight: 600; color: var(--off-white); margin-bottom: 0.2rem; }
.panel-item-desc { font-size: 0.75rem; color: var(--w50); line-height: 1.5; }

/* ═══════════ INFO BOX (2-col highlight box) ═══════════ */
.info-box {
  border: 1px solid var(--gborder); border-radius: 4px;
  background: rgba(212,168,67,0.03);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  overflow: hidden;
}
.info-box-col { padding: 2.5rem; }
.info-box-col + .info-box-col { border-left: 1px solid var(--gborder); }
.info-box-title { font-size: 0.88rem; font-weight: 600; color: var(--off-white); margin-bottom: 1.25rem; }
.info-box-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.info-box-list li { font-size: 0.83rem; color: var(--w80); display: flex; align-items: flex-start; gap: 0.65rem; }
.info-box-list li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; margin-top: 0.3rem; flex-shrink: 0; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border: 1px solid rgba(212,168,67,0.2); border-radius: 20px;
  color: var(--gold); background: rgba(212,168,67,0.04); transition: all 0.3s;
}
.tag:hover { background: rgba(212,168,67,0.1); border-color: var(--gold); }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  border-radius: 4px; padding: 2.8rem 3rem;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid var(--gborder);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner-title { font-size: 1.05rem; font-weight: 600; color: var(--off-white); margin-bottom: 0.4rem; }
.cta-banner-body { font-size: 0.83rem; color: var(--w50); max-width: 500px; }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--gborder);
  padding: 3.5rem 2.5rem 2rem;
  position: relative; z-index: 2;
}
.footer-inner {
  max-width: 1220px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem;
}
.footer-brand {}
.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold-bright); letter-spacing: 0.1em; }
.footer-logo-tag { font-size: 0.5rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--w50); margin-top: 2px; }
.footer-tagline { font-size: 0.82rem; color: var(--w50); line-height: 1.7; margin-top: 0.85rem; }
.footer-nav { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.footer-nav a { font-size: 0.82rem; color: var(--w50); text-decoration: none; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: 1220px; margin: 1.75rem auto 0;
  padding-top: 1.25rem; border-top: 1px solid var(--w20);
  font-size: 0.72rem; color: var(--w50);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 960px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-pills { grid-template-columns: 1fr 1fr; }
  .info-box { grid-template-columns: 1fr; }
  .info-box-col + .info-box-col { border-left: none; border-top: 1px solid var(--gborder); }
  .cta-banner { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 700px) {
  .nav-contact { display: none; }
  .nav-links a { padding: 0.45rem 0.55rem; font-size: 0.68rem; }
  .hero-pills { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .nav-links { gap: 0; }
  .nav-links a { font-size: 0.62rem; padding: 0.4rem 0.4rem; }
}
