/* ── DESIGN SYSTEM ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --charcoal: #3A3835;
  --gold: #C8A96E;
  --gold-light: #D9BF8F;
  --off-white: #F5F4F0;
  --body: #5A5856;
  --muted: #8A8885;
  --border: #E0DED8;
  --white: #ffffff;
  --font: 'Plus Jakarta Sans', sans-serif;
  --nav-h: 64px;
  --pad: clamp(20px, 5vw, 80px);
}

*, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--body); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(58,56,53,0.97);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  height: var(--nav-h);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  padding: 0 var(--pad);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.nav-logo {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  text-decoration: none; border-left: 3px solid var(--gold);
  padding-left: 12px; gap: 8px; -ms-flex-negative: 0; flex-shrink: 0;
}
.nav-logo-pge { font-size: 22px; font-weight: 700; color: var(--off-white); letter-spacing: 0.06em; }
.nav-logo-words span { display: block; font-size: 7px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); line-height: 1.4; }
.nav-links { display: -webkit-box; display: -ms-flexbox; display: flex; list-style: none; gap: 0; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); text-decoration: none; padding: 0 10px;
  height: var(--nav-h); display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  border-bottom: 2px solid transparent;
  -webkit-transition: color 0.2s, border-color 0.2s; transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-bottom-color: var(--gold); }
.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--charcoal); background: var(--gold); text-decoration: none;
  padding: 10px 16px; white-space: nowrap; -ms-flex-negative: 0; flex-shrink: 0;
  -webkit-transition: background 0.2s; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-burger {
  display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal;
  -ms-flex-direction: column; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-right: -8px;
  -webkit-appearance: none;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--off-white); -webkit-transition: all 0.25s; transition: all 0.25s; border-radius: 1px; }
.nav-burger.open span:nth-child(1) { -webkit-transform: rotate(45deg) translate(5px, 5px); transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { -webkit-transform: rotate(-45deg) translate(5px, -5px); transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu — avoids bottom:0 which breaks on iOS Safari */
.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: calc(100vh - var(--nav-h));
  background: rgba(46,44,42,0.99); z-index: 9998;
  -webkit-box-orient: vertical; -webkit-box-direction: normal;
  -ms-flex-direction: column; flex-direction: column;
  padding: 28px var(--pad) 80px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: -webkit-box; display: -ms-flexbox; display: flex; }
.nav-mobile a {
  font-size: 20px; font-weight: 600; color: var(--off-white);
  text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid rgba(200,169,110,0.15);
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile a.active { color: var(--gold); }
.nav-mobile-cta {
  display: block; margin-top: 28px; background: var(--gold) !important;
  color: var(--charcoal) !important; text-align: center;
  padding: 16px !important; font-size: 12px !important;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  border-bottom: none !important; border-radius: 0;
}

.nav-spacer { height: var(--nav-h); }

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 13px 22px; cursor: pointer; border: none;
  -webkit-transition: background 0.2s, color 0.2s; transition: background 0.2s, color 0.2s;
  -webkit-appearance: none; border-radius: 0;
}
.btn-gold { background: var(--gold); color: var(--charcoal); }
.btn-gold:hover { background: var(--gold-light); }

/* ── PAGE HEADER ───────────────────────────────── */
.page-header { background: var(--charcoal); padding: clamp(56px, 10vw, 100px) var(--pad) clamp(44px, 8vw, 80px); }
.page-header h1 { font-size: clamp(30px, 8vw, 72px); font-weight: 700; color: var(--off-white); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-header p { font-size: clamp(14px, 2.5vw, 18px); font-weight: 300; color: rgba(245,244,240,0.65); max-width: 600px; line-height: 1.75; }

/* ── SECTIONS ──────────────────────────────────── */
.section { padding: clamp(44px, 8vw, 96px) var(--pad); }
.section-charcoal { background: var(--charcoal); }
.section-offwhite { background: var(--off-white); }
.section-white { background: var(--white); }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-label::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--gold); -ms-flex-negative: 0; flex-shrink: 0; }
.section-h2 { font-size: clamp(22px, 5vw, 42px); font-weight: 700; color: var(--charcoal); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px; }
.section-h2-light { color: var(--off-white); }
.section-sub { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 36px; }
.section-sub-light { color: rgba(245,244,240,0.5); }
.gold-rule { width: 24px; height: 1.5px; background: var(--gold); opacity: 0.5; margin-bottom: 14px; }

/* ── GRIDS ─────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 64px); -webkit-box-align: start; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 32px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 2vw, 24px); }

/* ── CARDS ─────────────────────────────────────── */
.card { background: var(--white); border-top: 3px solid var(--gold); padding: clamp(18px, 3vw, 32px); }
.card-charcoal { background: var(--charcoal); border-top: 2px solid var(--gold); padding: clamp(18px, 3vw, 36px); }
.card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-body { font-size: 14px; font-weight: 300; color: var(--body); line-height: 1.75; }
.card-body-light { font-size: 13px; font-weight: 300; color: rgba(245,244,240,0.6); line-height: 1.7; }

/* ── QUOTE ─────────────────────────────────────── */
.quote-block { border-left: 3px solid var(--gold); padding: 4px 0 4px 22px; margin: 28px 0; }
.quote-block p { font-size: clamp(15px, 2.5vw, 22px); font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.55; margin-bottom: 10px; }
.quote-attr { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }

/* ── FOOTER ────────────────────────────────────── */
.footer { background: var(--charcoal); border-top: 1px solid rgba(200,169,110,0.2); padding: clamp(36px, 6vw, 64px) var(--pad) clamp(20px, 3vw, 28px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: clamp(20px, 4vw, 48px); margin-bottom: clamp(24px, 4vw, 48px); -webkit-box-align: start; align-items: start; }
.footer-logo-wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 8px; border-left: 3px solid var(--gold); padding-left: 10px; margin-bottom: 10px; }
.footer-logo-pge { font-size: 20px; font-weight: 700; color: var(--off-white); letter-spacing: 0.06em; }
.footer-logo-words span { display: block; font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); line-height: 1.4; }
.footer-tagline { font-size: 13px; font-weight: 300; font-style: italic; color: rgba(245,244,240,0.5); line-height: 1.5; }
.footer-col-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; font-weight: 300; color: rgba(245,244,240,0.55); text-decoration: none; margin-bottom: 8px; -webkit-transition: color 0.2s; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; font-weight: 300; color: rgba(245,244,240,0.55); }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 10px; font-size: 11px; font-weight: 300; color: rgba(245,244,240,0.3); }
.footer-bar a { color: rgba(245,244,240,0.3); text-decoration: none; }
.footer-bar-links { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 18px; -ms-flex-wrap: wrap; flex-wrap: wrap; }

/* ── EXPAND ────────────────────────────────────── */
.expand-body { max-height: 0; overflow: hidden; -webkit-transition: max-height 0.4s ease; transition: max-height 0.4s ease; }
.expand-body.open { max-height: 1400px; }
.expand-toggle { font-family: var(--font); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); background: var(--gold); border: none; padding: 11px 20px; cursor: pointer; -webkit-appearance: none; border-radius: 0; display: inline-block; }
.expand-toggle.open { background: var(--charcoal); color: var(--gold); }
.results-toggle { font-family: var(--font); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(200,169,110,0.35); background: none; padding: 8px 14px; cursor: pointer; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 6px; -webkit-appearance: none; border-radius: 0; }
.results-toggle svg { -webkit-transition: -webkit-transform 0.25s; transition: transform 0.25s; }
.results-toggle.open svg { -webkit-transform: rotate(180deg); transform: rotate(180deg); }

/* ── BREAKPOINTS ───────────────────────────────── */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: -webkit-box; display: -ms-flexbox; display: flex; }
}
