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

:root {
  --navy: #0A1628;
  --navy-soft: #14243D;
  --gold: #C9A25D;
  --gold-light: #E3C88A;
  --cream: #F7F1E6;
  --cream-warm: #F0E7D5;
  --ink: #23201A;
  --terracotta: #C97757;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
ul { list-style: none; }

/* ===== NAV ===== */
nav.mainnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(8px);
  padding: 20px 0;
}
nav.mainnav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600;
  color: var(--cream); letter-spacing: 1px; flex-shrink: 0;
}
.nav-brand svg { width: 26px; height: 26px; flex-shrink: 0; }
.nav-links { display: flex; gap: 36px; align-items: center; font-size: 14.5px; letter-spacing: 0.3px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: rgba(247,241,230,0.78); transition: color 0.2s; display: flex; align-items: center; gap: 5px;
  padding: 8px 0;
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--gold-light); }
.nav-links > li > a svg { width: 12px; height: 12px; margin-top: 1px; flex-shrink: 0; }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--navy-soft); border: 1px solid rgba(201,162,93,0.2);
  min-width: 240px; padding: 10px; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.2s ease;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 11px 16px; font-size: 14px; color: rgba(247,241,230,0.75);
  border-radius: 2px; transition: all 0.15s;
}
.dropdown a:hover { background: rgba(201,162,93,0.1); color: var(--gold-light); }
.dropdown .dd-group-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--terracotta);
  padding: 10px 16px 6px;
}
.dropdown .dd-divider { height: 1px; background: rgba(247,241,230,0.08); margin: 6px 4px; }

.nav-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold-light); font-size: 14.5px; font-weight: 500; flex-shrink: 0;
}
.nav-phone svg { width: 17px; height: 17px; flex-shrink: 0; }

@media (max-width: 980px) {
  .nav-links { display: none; }
}

/* ===== SHARED SECTION BITS ===== */
.section-label {
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--terracotta); flex-shrink: 0; }
.section-label.on-dark { color: var(--gold-light); }
.section-label.on-dark::before { background: var(--gold); }

.btn-primary {
  background: var(--gold); color: var(--navy); padding: 17px 38px; font-size: 15px;
  font-weight: 500; letter-spacing: 0.5px; border-radius: 2px; transition: all 0.25s;
  display: inline-block; border: none; cursor: pointer; font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-secondary {
  border: 1px solid rgba(247,241,230,0.3); color: var(--cream); padding: 17px 38px;
  font-size: 15px; font-weight: 400; letter-spacing: 0.5px; border-radius: 2px; transition: all 0.25s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(201,162,93,0.08); }
.btn-secondary.on-light { border-color: rgba(10,22,40,0.25); color: var(--navy); }
.btn-secondary.on-light:hover { border-color: var(--terracotta); background: rgba(201,119,87,0.06); }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: var(--navy); color: var(--cream);
  padding: 150px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 90% 10%, rgba(201,162,93,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 5% 100%, rgba(201,162,93,0.08) 0%, transparent 55%);
}
.page-hero-inner { position: relative; max-width: 760px; }
.breadcrumb {
  font-size: 13px; color: rgba(247,241,230,0.45); margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: rgba(247,241,230,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 600; line-height: 1.12; margin-bottom: 22px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; }
.page-hero p { font-size: 17.5px; color: rgba(247,241,230,0.78); max-width: 620px; font-weight: 300; }

.hero-eyebrow {
  font-size: 14px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-light);
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ===== FOOTER ===== */
footer.mainfoot {
  background: var(--navy); color: var(--cream); padding: 80px 0 0;
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 50px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(247,241,230,0.1);
}
.foot-brand-block .nav-brand { margin-bottom: 18px; }
.foot-brand-block p { font-size: 14px; color: rgba(247,241,230,0.5); max-width: 260px; }
.foot-col h5 {
  font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px; font-weight: 500;
}
.foot-col ul li { margin-bottom: 12px; }
.foot-col ul li a { font-size: 14.5px; color: rgba(247,241,230,0.6); transition: color 0.2s; }
.foot-col ul li a:hover { color: var(--gold-light); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; flex-wrap: wrap; gap: 14px;
}
.foot-bottom .fb-brand { font-family: 'Cormorant Garamond', serif; font-size: 15px; color: rgba(247,241,230,0.4); }
.foot-bottom .fb-meta { font-size: 12.5px; color: rgba(247,241,230,0.3); }

@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ===== SVG SAFETY NET ===== */
svg { display: inline-block; }
