/* ============================================================
   MILLIONER BRAND PROTECTION PORTAL — GLOBAL DESIGN SYSTEM
   Swiss Bank / Wealth Defense Aesthetic
   Primary: #1A1A1B | Gold: #C5A059 | White: #FFFFFF | Cream: #F5F0E8
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --obsidian:      #1A1A1B;
  --obsidian-mid:  #242426;
  --obsidian-light:#2E2E31;
  --gold:          #C5A059;
  --gold-light:    #D4B472;
  --gold-dark:     #A8853A;
  --white:         #FFFFFF;
  --cream:         #F5F0E8;
  --cream-dim:     #E8E0D0;
  --text-primary:  #F0EBE0;
  --text-muted:    #A09880;
  --text-dim:      #706858;
  --border-gold:   rgba(197,160,89,0.35);
  --border-subtle: rgba(197,160,89,0.12);
  --glass-bg:      rgba(36,36,38,0.72);
  --glass-border:  rgba(197,160,89,0.22);
  --shadow-gold:   0 4px 32px rgba(197,160,89,0.10);
  --shadow-deep:   0 8px 48px rgba(0,0,0,0.55);
  --radius:        4px;
  --radius-lg:     8px;
  --font-serif:    'Georgia', 'Times New Roman', serif;
  --font-sans:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:     'Courier New', Courier, monospace;
  --transition:    all 0.22s ease;
}

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

body {
  background-color: var(--obsidian);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.72;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(197,160,89,0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(197,160,89,0.025) 39px,
      rgba(197,160,89,0.025) 40px
    );
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.28;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.62rem; }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.08rem; }
h5 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; }

p { margin-bottom: 1rem; color: var(--text-primary); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); text-decoration: underline; }
strong { color: var(--cream); font-weight: 600; }
em { color: var(--gold-light); font-style: italic; }
small { font-size: 0.82rem; color: var(--text-muted); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.3rem; }

blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1.2rem;
  margin: 1.4rem 0;
  background: rgba(197,160,89,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--cream-dim);
}

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  background: rgba(197,160,89,0.08);
  border: 1px solid var(--border-subtle);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  color: var(--gold-light);
}

hr {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 2rem 0;
}

/* ============================================================
   LAYOUT SYSTEM
   ============================================================ */

.site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.page-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.main-content {
  padding: 2.4rem 2.2rem 2.4rem 0;
  border-right: 1px solid var(--border-subtle);
}

.sidebar {
  padding: 2.4rem 0 2.4rem 1.8rem;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  background: var(--obsidian-mid);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.header-brand .shield-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--obsidian);
  box-shadow: 0 2px 12px rgba(197,160,89,0.4);
  flex-shrink: 0;
}

.header-brand .brand-text { display: flex; flex-direction: column; }
.header-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1.1;
}
.header-brand .brand-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.header-nav { display: flex; align-items: center; gap: 0.1rem; }
.header-nav a {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
  text-decoration: none;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3ecf6e;
  box-shadow: 0 0 6px #3ecf6e;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================================
   HERO / PAGE BANNER
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--obsidian-mid) 0%, var(--obsidian) 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 3rem 1.5rem 2.6rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(197,160,89,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(197,160,89,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-size: 2.4rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  max-width: 780px;
}

.page-hero .hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.65;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hero-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}
.hero-meta-value {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-family: var(--font-mono);
}

/* ============================================================
   GLASS CARDS
   ============================================================ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-gold);
  position: relative;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.5;
}

.glass-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.glass-card .card-title .card-icon {
  font-size: 1rem;
  opacity: 0.8;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--obsidian);
  border: 1px solid var(--gold);
  box-shadow: 0 2px 16px rgba(197,160,89,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 24px rgba(197,160,89,0.4);
  color: var(--obsidian);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: rgba(197,160,89,0.08);
  border-color: var(--gold);
  color: var(--gold-light);
  text-decoration: none;
}

.btn-danger {
  background: rgba(180,40,40,0.15);
  color: #e07070;
  border: 1px solid rgba(180,40,40,0.35);
}
.btn-danger:hover {
  background: rgba(180,40,40,0.25);
  color: #f09090;
  text-decoration: none;
}

/* ============================================================
   TABLES
   ============================================================ */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-bottom: 1.4rem;
}

.data-table thead tr {
  background: rgba(197,160,89,0.12);
  border-bottom: 1px solid var(--border-gold);
}

.data-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.data-table tbody tr:hover {
  background: rgba(197,160,89,0.04);
}
.data-table tbody td {
  padding: 0.7rem 1rem;
  color: var(--text-primary);
  vertical-align: top;
}

.badge {
  display: inline-block;
  padding: 0.18em 0.65em;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold     { background: rgba(197,160,89,0.18); color: var(--gold-light); border: 1px solid rgba(197,160,89,0.3); }
.badge-green    { background: rgba(62,207,110,0.12); color: #5de08a; border: 1px solid rgba(62,207,110,0.25); }
.badge-red      { background: rgba(207,62,62,0.12);  color: #e07070; border: 1px solid rgba(207,62,62,0.25); }
.badge-blue     { background: rgba(62,140,207,0.12); color: #70b0e0; border: 1px solid rgba(62,140,207,0.25); }
.badge-gray     { background: rgba(160,152,128,0.12); color: var(--text-muted); border: 1px solid rgba(160,152,128,0.2); }

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  margin-bottom: 1.3rem;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.45rem;
  font-weight: 600;
}
.form-label .required { color: #e07070; margin-left: 0.2rem; }
.form-label .optional { color: var(--text-dim); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.75rem; }

.form-control {
  width: 100%;
  background: rgba(26,26,27,0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 0.65rem 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
  background: rgba(36,36,38,0.9);
}
.form-control::placeholder { color: var(--text-dim); }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C5A059' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
select.form-control option { background: var(--obsidian-mid); }

textarea.form-control { resize: vertical; min-height: 110px; }

.form-hint {
  font-size: 0.76rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
}
.step-item.active:not(:last-child)::after,
.step-item.done:not(:last-child)::after {
  background: var(--border-gold);
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--obsidian-light);
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}
.step-item.active .step-num {
  background: var(--gold-dark);
  border-color: var(--gold);
  color: var(--obsidian);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(197,160,89,0.35);
}
.step-item.done .step-num {
  background: rgba(62,207,110,0.15);
  border-color: rgba(62,207,110,0.4);
  color: #5de08a;
}
.step-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-align: center;
}
.step-item.active .step-label { color: var(--gold); }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */

.sidebar-widget {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.4rem;
  overflow: hidden;
}

.sidebar-widget-header {
  background: rgba(197,160,89,0.1);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-widget-body { padding: 1rem; }

.bulletin-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}
.bulletin-item:last-child { border-bottom: none; padding-bottom: 0; }
.bulletin-date {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 0.15rem;
}
.bulletin-text { color: var(--text-primary); line-height: 1.45; }

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
}
.stat-row:last-child { border-bottom: none; }
.stat-label { color: var(--text-muted); }
.stat-value { color: var(--gold-light); font-family: var(--font-mono); font-weight: 600; }
.stat-value.red { color: #e07070; }
.stat-value.green { color: #5de08a; }

.nav-list { list-style: none; padding: 0; margin: 0; }
.nav-list li { border-bottom: 1px solid var(--border-subtle); }
.nav-list li:last-child { border-bottom: none; }
.nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-list a:hover { color: var(--gold); text-decoration: none; }
.nav-list a.active { color: var(--gold); }
.nav-list .nav-arrow { font-size: 0.65rem; opacity: 0.5; }

/* ============================================================
   SECTION DIVIDERS & LABELS
   ============================================================ */

.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.2rem 0 1.6rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
.section-divider-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ============================================================
   ALERT / NOTICE BOXES
   ============================================================ */

.alert {
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
  border-left: 3px solid;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.alert-icon { flex-shrink: 0; font-size: 1rem; margin-top: 0.05rem; }
.alert-gold  { background: rgba(197,160,89,0.08); border-color: var(--gold); color: var(--cream-dim); }
.alert-red   { background: rgba(207,62,62,0.08);  border-color: #cf3e3e;    color: #f0c0c0; }
.alert-green { background: rgba(62,207,110,0.08); border-color: #3ecf6e;    color: #c0f0d0; }
.alert-blue  { background: rgba(62,140,207,0.08); border-color: #3e8ccf;    color: #c0d8f0; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--obsidian-mid);
  border-top: 1px solid var(--border-gold);
  margin-top: 3rem;
}

.footer-top {
  max-width: 1380px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  line-height: 1.6;
}

.footer-col h5 {
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-size: 0.7rem;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a { font-size: 0.82rem; color: var(--text-muted); }
.footer-col ul li a:hover { color: var(--gold); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  max-width: 1380px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); text-decoration: none; }

.footer-legal-bar {
  background: rgba(0,0,0,0.3);
  padding: 0.6rem 1.5rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(197,160,89,0.06);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gold   { color: var(--gold) !important; }
.text-cream  { color: var(--cream) !important; }
.text-muted  { color: var(--text-muted) !important; }
.text-red    { color: #e07070 !important; }
.text-green  { color: #5de08a !important; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.w-100 { width: 100%; }

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.6rem 0 1.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.info-box {
  background: rgba(197,160,89,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.info-box .info-box-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  margin-bottom: 0.3rem;
}
.info-box .info-box-value {
  font-size: 1.35rem;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-weight: 700;
}
.info-box .info-box-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .page-body { grid-template-columns: 1fr; }
  .main-content { padding: 2rem 0; border-right: none; }
  .sidebar { padding: 0; border-top: 1px solid var(--border-subtle); padding-top: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.32rem; }
  .page-hero { padding: 2rem 1rem 1.8rem; }
  .header-inner { padding: 0 1rem; }
  .header-nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .info-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  body { background: white; color: black; }
  .site-header, .sidebar, .site-footer { display: none; }
  .main-content { padding: 0; border: none; }
  .glass-card { border: 1px solid #ccc; background: white; }
}
