/* ═══════════════════════════════════════════════════════════
   PLACEHOLDER PAGES SHARED STYLES - v11.9
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #07111f;
  --bg2: #0d1e33;
  --bg3: #122a47;
  --gold: #c9a84c;
  --gold2: #e8c96a;
  --gold-dark: #8b6914;
  --ocean: #2a5f8f;
  --ocean2: #4a7fb0;
  --head: #f0f4fa;
  --body: #dde6f0;
  --muted: #7a9ab5;
  --border: rgba(201,168,76,0.18);
  --border-soft: rgba(201,168,76,0.08);
  --card: rgba(13,30,51,0.7);
  --success: #6ec97a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', ui-monospace, monospace;
  --maxw: 920px;
  --pad: 32px;
}

body.light {
  --bg: #faf7f2;
  --bg2: #f0ebe0;
  --bg3: #e6dfd0;
  --head: #0a1828;
  --body: #1a2c42;
  --muted: #5a6f85;
  --border: rgba(139,105,20,0.25);
  --border-soft: rgba(139,105,20,0.12);
  --card: rgba(255,253,247,0.85);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s, color 0.4s;
}
html { font-size: 100%; }
html[data-fontscale="2"] { font-size: 112.5%; }
html[data-fontscale="3"] { font-size: 125%; }
html[data-fontscale="4"] { font-size: 137.5%; }
html[data-fontscale="5"] { font-size: 150%; }
.page-wrap p, .page-wrap ul li, .info-card p, .coming-soon-card p { font-size: 1rem; }
.back-link, .font-btn, .fc-row, .footer-links a { font-size: clamp(10px, 0.7rem, 14px); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ───── NAV ───── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(7,17,31,0.88); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 10px 0; }
body.light .nav { background: rgba(250,247,242,0.9); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 48px; }
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--head); }
.brand .rx { font-style: italic; color: var(--gold); }
.brand .pipe { color: var(--muted); margin: 0 2px; font-weight: 300; }
.brand .med { font-style: italic; color: var(--ocean2); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gold); background: transparent; transition: all 0.25s; }
.icon-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.font-btn { width: auto; padding: 0 10px; font-family: var(--mono); font-size: 10px; letter-spacing: 1.2px; height: 32px; }
.back-link { font-family: var(--mono); font-size: 10px; letter-spacing: 1.4px; color: var(--body); text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--border); border-radius: 100px; transition: all 0.25s; }
.back-link:hover { border-color: var(--gold); color: var(--gold); }

/* ───── HERO ───── */
.page-hero { padding: 80px 0 50px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 400px at 50% 30%, rgba(42,95,143,0.2) 0%, transparent 60%), radial-gradient(ellipse 500px 300px at 50% 80%, rgba(201,168,76,0.1) 0%, transparent 60%); z-index: -1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; background: rgba(201,168,76,0.06); margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.page-hero h1 { font-family: var(--serif); font-size: 3.6rem; font-weight: 500; color: var(--head); line-height: 1.1; margin-bottom: 18px; letter-spacing: -0.5px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p.lead { font-size: 17px; color: var(--body); max-width: 680px; margin: 0 auto; line-height: 1.65; }

/* ───── CONTENT WRAP ───── */
.page-wrap { max-width: var(--maxw); margin: 0 auto; padding: 40px var(--pad) 100px; }
.page-wrap h2 { font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--head); margin: 36px 0 12px; line-height: 1.2; }
.page-wrap h2 em { font-style: italic; color: var(--gold); }
.page-wrap h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; color: var(--head); margin: 24px 0 10px; }
.page-wrap p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; color: var(--body); }
.page-wrap ul { margin: 12px 0 18px; padding-left: 0; list-style: none; }
.page-wrap ul li { position: relative; padding: 8px 0 8px 28px; font-size: 15px; line-height: 1.65; border-bottom: 1px solid var(--border-soft); }
.page-wrap ul li:last-child { border-bottom: none; }
.page-wrap ul li::before { content: ''; position: absolute; left: 0; top: 19px; width: 16px; height: 1px; background: var(--gold); }
.page-wrap ul li strong { color: var(--head); }
.page-wrap a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.page-wrap a:hover { color: var(--gold2); }

/* ───── COMING SOON CARD ───── */
.coming-soon-card { background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(42,95,143,0.08) 100%); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 14px; padding: 32px; margin: 30px 0; text-align: center; }
.coming-soon-card .label { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.coming-soon-card h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--head); margin: 0 0 12px; font-weight: 500; }
.coming-soon-card p { font-size: 14px; color: var(--body); max-width: 500px; margin: 0 auto 18px; line-height: 1.6; }

.btn { padding: 14px 26px; border-radius: 10px; font-family: var(--sans); font-size: 14px; font-weight: 600; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%); color: #0a0a0a; box-shadow: 0 4px 14px rgba(201,168,76,0.25); border: none; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,168,76,0.4); }
.btn-ghost { border: 1px solid var(--border); color: var(--body); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ───── CONTACT FORM ───── */
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 32px; margin: 30px 0; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { padding: 13px 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; font-family: var(--sans); font-size: 14px; color: var(--head); width: 100%; }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ───── INFO GRID ───── */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0; }
.info-card { padding: 22px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.info-card h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.info-card p { font-size: 14px; line-height: 1.6; color: var(--body); margin: 0; }

/* ───── FOOTER ───── */
footer { background: #050b15; border-top: 1px solid var(--border); padding: 40px 0; text-align: center; }
body.light footer { background: #f0ebe0; }
footer .container { max-width: 1240px; margin: 0 auto; padding: 0 var(--pad); }
footer .brand { justify-content: center; margin-bottom: 12px; }
footer .legal-line { font-family: var(--mono); font-size: 11px; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 16px; }

/* ───── FOOTER CONTACT INFO ───── */
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fc-row { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; color: var(--body); transition: color 0.2s; justify-content: center; }
.fc-row .fc-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid var(--border-soft); color: var(--gold); font-size: 10px; }
.fc-row a { color: var(--body); transition: color 0.2s; }
.fc-row a:hover { color: var(--gold); }

footer .footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; }
footer .footer-links a { color: var(--muted); transition: color 0.2s; }
footer .footer-links a:hover { color: var(--gold); }
