/* Newham Caritas — Deanery of Newham. Design language shared with St Stephen's,
   its own deep-burgundy identity. Mobile-first. */

:root {
  --bg-main: #FAF6EE;
  --bg-elevated: #FFFFFF;
  --burgundy: #7B1E27;          /* Newham Caritas accent */
  --burgundy-hover: #601018;
  --burgundy-light: rgba(123, 30, 39, 0.08);
  --deep-navy: #2D2620;
  --stone-grey: #E7DECD;
  --text-main: #2A2620;
  --text-light: #6F665A;

  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Playfair Display', serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-accent: 0 8px 30px rgba(123, 30, 39, 0.18);
  --transition: all 0.3s ease;
}

* , *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* keep the hidden attribute working under display:flex etc. */

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; }

/* --- Navigation ------------------------------------------------------------ */
#glass-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 72px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 30, 39, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 5%; z-index: 1000; box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.brand {
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: var(--text-main); letter-spacing: -0.01em; line-height: 1;
}
.brand span { color: var(--burgundy); font-family: var(--font-script); font-style: italic; font-weight: 400; }

.nav-links { display: flex; list-style: none; gap: 32px; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px;
  font-weight: 500; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--burgundy); }
.nav-links a::after {
  content: ''; position: absolute; width: 0; height: 1.5px; bottom: -6px; left: 0;
  background: var(--burgundy); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--burgundy); color: #fff; padding: 9px 24px; border-radius: var(--radius-pill);
  font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  box-shadow: var(--shadow-accent);
}
.nav-cta:hover { background: var(--burgundy-hover); color: #fff; transform: translateY(-1px); }

.hamburger-menu {
  display: none; background: none; border: none; font-size: 1.4rem; color: var(--text-main);
}
.mobile-nav-overlay {
  position: fixed; inset: 0; height: 100vh; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px); z-index: 2000;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.close-mobile-nav { position: absolute; top: 24px; right: 28px; background: none; border: none; font-size: 2rem; color: var(--text-main); }
.mobile-nav-overlay ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-nav-overlay a { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* --- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 28px; border-radius: var(--radius-pill); border: 1px solid transparent;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; transition: var(--transition);
}
.btn-primary { background: var(--burgundy); color: #fff; box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--burgundy-hover); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--text-main); border-color: var(--stone-grey); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--burgundy); color: var(--burgundy); transform: translateY(-2px); }
.btn-call { background: var(--burgundy-light); color: var(--burgundy); flex: 1; padding: 10px 16px; font-size: 0.8rem; }
.btn-call:hover { background: var(--burgundy); color: #fff; }
.btn-whatsapp { background: rgba(37, 211, 102, 0.12); color: #128C4A; flex: 1; padding: 10px 16px; font-size: 0.8rem; }
.btn-whatsapp:hover { background: #25D366; color: #fff; }

/* --- Page shell ------------------------------------------------------------ */
.page { max-width: 1180px; margin: 0 auto; padding: 120px 24px 80px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 0 0 12px; letter-spacing: -0.02em; }
.section-head p { max-width: 640px; margin: 0 auto; color: var(--text-light); }
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; color: var(--burgundy); display: block; margin-bottom: 14px; }

/* --- Home hero ------------------------------------------------------------- */
.hero {
  min-height: 92vh; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 120px 24px 60px;
  background:
    radial-gradient(ellipse at top, rgba(123,30,39,0.06), transparent 60%),
    var(--bg-main);
}
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.8rem, 8vw, 5.5rem); line-height: 1; margin: 0 0 20px; letter-spacing: -0.03em; }
.hero h1 span { color: var(--burgundy); font-family: var(--font-script); font-style: italic; display: block; font-size: 0.62em; margin-top: 6px; }
.hero p { max-width: 620px; color: var(--text-light); font-size: 1.1rem; margin: 0 0 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* --- Parish strip ---------------------------------------------------------- */
.strip { max-width: 1180px; margin: 0 auto; padding: 0 24px 90px; text-align: center; }
.strip h2 { font-family: var(--font-serif); font-size: 2rem; margin: 0 0 8px; }
.strip .sub { color: var(--text-light); margin: 0 0 32px; }
.parish-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.parish-chip {
  background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-pill);
  padding: 10px 22px; font-size: 0.9rem; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.parish-chip:hover { border-color: var(--burgundy); color: var(--burgundy); transform: translateY(-2px); }

/* --- AI triage panel ------------------------------------------------------- */
.triage {
  background: #fff; border: 1px solid var(--stone-grey); border-left: 4px solid var(--burgundy);
  border-radius: var(--radius-md); padding: 26px; margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
.triage h2 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 6px; }
.triage h2 i { color: var(--burgundy); }
.triage > p { color: var(--text-light); margin: 0 0 16px; font-size: 0.95rem; }
.triage textarea {
  width: 100%; border: 1px solid var(--stone-grey); border-radius: var(--radius-sm);
  padding: 14px; font-family: inherit; font-size: 0.95rem; resize: vertical; margin-bottom: 14px;
}
.triage textarea:focus { outline: none; border-color: var(--burgundy); }
.triage-privacy { font-size: 0.8rem; color: var(--text-light); margin: 12px 0 0; display: flex; align-items: center; gap: 8px; }
.triage-privacy i { color: var(--burgundy); }
.triage-result { margin-top: 22px; }
.triage-msg { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-main); margin: 0 0 18px; line-height: 1.5; }

/* --- Filters --------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: center; margin-bottom: 40px; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-btn {
  padding: 8px 20px; border-radius: var(--radius-pill); border: 1px solid var(--stone-grey);
  background: #fff; font-size: 0.82rem; font-weight: 500; color: var(--text-light); transition: var(--transition);
}
.filter-btn:hover { background: var(--stone-grey); }
.filter-btn.active { background: var(--text-main); color: #fff; border-color: var(--text-main); }
.parish-select {
  padding: 9px 18px; border-radius: var(--radius-pill); border: 1px solid var(--stone-grey);
  background: #fff; font-size: 0.85rem; color: var(--text-main); font-family: inherit;
}

/* --- Card grid ------------------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }

.service-card {
  background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(123,30,39,0.3); }
.service-card .cat-tag {
  align-self: flex-start; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
  color: var(--burgundy); background: var(--burgundy-light); padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 14px;
}
.service-card h3 { font-family: var(--font-serif); font-size: 1.45rem; margin: 0 0 8px; }
.service-card .desc { color: var(--text-light); font-size: 0.92rem; margin: 0 0 14px; flex: 1; }
.service-card .meta { font-size: 0.85rem; color: var(--text-main); margin-bottom: 6px; }
.service-card .meta i { color: var(--burgundy); width: 18px; }
.service-card .actions { display: flex; gap: 10px; margin-top: 16px; }

/* Parish cards */
.parish-card {
  background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.parish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.parish-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 4px; }
.parish-card .area { color: var(--burgundy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.parish-card .addr { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; }

/* --- Prose (About) --------------------------------------------------------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-family: var(--font-serif); font-size: 1.9rem; margin: 40px 0 12px; }
.prose p { color: var(--text-main); margin: 0 0 16px; }
.prose blockquote {
  border-left: 3px solid var(--burgundy); padding: 6px 0 6px 20px; margin: 24px 0;
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: var(--text-light);
}

/* --- States --------------------------------------------------------------- */
.state { text-align: center; padding: 60px 20px; color: var(--text-light); grid-column: 1 / -1; }
.state i { font-size: 2rem; color: var(--stone-grey); display: block; margin-bottom: 14px; }

/* --- Portal: login --------------------------------------------------------- */
.auth-wrap { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; gap: 8px; }
.auth-wrap .brand { font-size: 1.8rem; }
.auth-sub { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; color: var(--burgundy); font-weight: 600; margin: 0 0 18px; }
.auth-card { background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; max-width: 440px; padding: 28px; }
.auth-tabs { display: flex; gap: 6px; background: var(--bg-main); border-radius: var(--radius-pill); padding: 5px; margin-bottom: 22px; }
.auth-tab { flex: 1; border: none; background: none; padding: 10px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.85rem; color: var(--text-light); }
.auth-tab.active { background: var(--burgundy); color: #fff; }
.auth-hint { color: var(--text-light); font-size: 0.9rem; margin: 0 0 18px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-form .btn { margin-top: 4px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field span { font-size: 0.8rem; font-weight: 600; color: var(--text-main); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--stone-grey); border-radius: var(--radius-sm); padding: 11px 14px;
  font-family: inherit; font-size: 0.95rem; background: #fff;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--burgundy); }
.form-check { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-light); }
.auth-notice { border-radius: var(--radius-sm); padding: 12px 14px; font-size: 0.9rem; margin-bottom: 16px; }
.auth-notice.ok { background: rgba(37,211,102,0.12); color: #0f6b38; }
.auth-notice.warn { background: rgba(123,30,39,0.09); color: var(--burgundy); }
.auth-notice.info { background: var(--bg-main); color: var(--text-light); }
.auth-back { margin-top: 18px; font-size: 0.85rem; color: var(--text-light); }
.auth-back:hover { color: var(--burgundy); }

/* --- Portal: top bar + gate ------------------------------------------------ */
.portal-topbar {
  position: fixed; top: 0; left: 0; width: 100%; height: 66px; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123,30,39,0.15); box-shadow: 0 1px 12px rgba(0,0,0,0.04);
  display: flex; align-items: center; justify-content: space-between; padding: 0 5%;
}
.portal-links { display: flex; align-items: center; gap: 22px; }
.portal-links a { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.portal-links a:hover, .portal-links a.active { color: var(--burgundy); }
.btn-signout { background: var(--burgundy-light); color: var(--burgundy); border: none; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.78rem; font-weight: 600; }
.btn-signout:hover { background: var(--burgundy); color: #fff; }

.portal-gate { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 40px 20px; text-align: center; }
.portal-gate .brand { font-size: 1.8rem; }
.gate-card { background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); max-width: 440px; padding: 40px 32px; }
.gate-card i { font-size: 2.4rem; color: var(--burgundy); margin-bottom: 16px; }
.gate-card h1 { font-family: var(--font-serif); font-size: 1.9rem; margin: 0 0 10px; }
.gate-card p { color: var(--text-light); margin: 0 0 20px; }
.gate-card code { background: var(--bg-main); padding: 2px 6px; border-radius: 5px; font-size: 0.85em; }

@media (max-width: 600px) {
  .portal-links { gap: 14px; }
  .portal-links a { font-size: 0.72rem; }
}

/* --- Portal content (Phase 3) ---------------------------------------------- */
.portal-page { max-width: 760px; }
.events-heading { font-family: var(--font-serif); font-size: 1.4rem; margin: 30px 0 14px; color: var(--text-main); }
.muted { color: var(--text-light); font-size: 0.9rem; }
.badge { display: inline-block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill); background: var(--burgundy-light); color: var(--burgundy); }
.badge-urgent { background: #fdecea; color: #c0392b; }

/* Noticeboard */
.post-list { display: flex; flex-direction: column; gap: 18px; }
.post-card { background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.post-card.pinned { border-color: rgba(123,30,39,0.35); box-shadow: var(--shadow-accent); }
.post-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.post-top .pin { color: var(--burgundy); }
.post-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 4px; }
.post-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; }
.post-body { color: var(--text-main); line-height: 1.6; }
.post-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.chip { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--stone-grey); background: #fff; border-radius: var(--radius-pill); padding: 7px 15px; font-size: 0.82rem; font-weight: 500; color: var(--text-light); }
.chip:hover { border-color: var(--burgundy); color: var(--burgundy); }
.chip.react-btn.active { background: var(--burgundy-light); border-color: var(--burgundy); color: var(--burgundy); }
.comments { margin-top: 16px; border-top: 1px solid var(--stone-grey); padding-top: 14px; }
.comment-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.comment strong { font-size: 0.9rem; }
.comment .c-date { font-size: 0.72rem; color: var(--text-light); margin-left: 8px; }
.comment p { margin: 4px 0 0; font-size: 0.92rem; color: var(--text-main); }
.comment-form { display: flex; gap: 8px; }
.comment-form input { flex: 1; border: 1px solid var(--stone-grey); border-radius: var(--radius-pill); padding: 10px 16px; font-family: inherit; font-size: 0.9rem; }
.comment-form input:focus { outline: none; border-color: var(--burgundy); }
.comment-form .btn { padding: 8px 18px; }

/* Events */
.event-card { background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.event-card.past { opacity: 0.75; }
.event-when { color: var(--burgundy); font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
.event-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 8px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 12px; }
.event-meta i { color: var(--burgundy); margin-right: 5px; }
.event-desc { color: var(--text-main); margin: 0 0 16px; }
.event-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.rsvp { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.rsvp-label { font-size: 0.85rem; font-weight: 600; }
.segmented { display: inline-flex; border: 1px solid var(--stone-grey); border-radius: var(--radius-pill); overflow: hidden; }
.segmented button { border: none; background: #fff; padding: 8px 20px; font-size: 0.85rem; font-weight: 500; color: var(--text-light); border-right: 1px solid var(--stone-grey); }
.segmented button:last-child { border-right: none; }
.segmented button.active { background: var(--burgundy); color: #fff; }
.rsvp-summary { font-size: 0.88rem; color: var(--text-light); }
.rsvp-summary strong { color: var(--burgundy); }
.past-events { margin-top: 24px; }
.past-events summary { cursor: pointer; font-weight: 600; color: var(--text-light); margin-bottom: 14px; }

/* Groups */
.group-section { margin-bottom: 24px; }
.group-links { display: flex; flex-direction: column; gap: 12px; }
.group-link { justify-content: flex-start; }

/* People */
.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.person-card { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); }
.avatar { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; background: var(--burgundy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; }
.person-info h3 { font-family: var(--font-serif); font-size: 1.2rem; margin: 0; }
.person-ministry { font-size: 0.82rem; color: var(--text-light); }
.person-contact { display: flex; gap: 12px; align-items: center; font-size: 0.82rem; margin-top: 4px; }
.person-contact a { color: var(--burgundy); }

/* --- Admin (Phase 4) ------------------------------------------------------- */
.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.admin-tab { border: 1px solid var(--stone-grey); background: #fff; border-radius: var(--radius-pill); padding: 10px 20px; font-weight: 600; font-size: 0.85rem; color: var(--text-light); display: inline-flex; align-items: center; gap: 8px; }
.admin-tab.active { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.tab-badge { background: #c0392b; color: #fff; border-radius: var(--radius-pill); font-size: 0.72rem; padding: 1px 8px; min-width: 20px; text-align: center; }
.admin-tab.active .tab-badge { background: #fff; color: var(--burgundy); }

.admin-form { background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.admin-form h3 { font-family: var(--font-serif); font-size: 1.4rem; margin: 0; }
.admin-form-actions { display: flex; gap: 10px; margin-top: 4px; }

.admin-list { display: flex; flex-direction: column; gap: 10px; }
.admin-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border: 1px solid var(--stone-grey); border-radius: var(--radius-sm); padding: 14px 18px; }
.admin-row-main { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.95rem; }
.admin-row-main .muted { font-size: 0.82rem; }
.admin-row-actions { display: flex; gap: 8px; flex-shrink: 0; }
.admin-row-actions .btn { padding: 8px 16px; font-size: 0.8rem; }
.chip.danger:hover { border-color: #c0392b; color: #c0392b; }
.tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); background: var(--bg-main); padding: 2px 8px; border-radius: var(--radius-pill); }

/* --- Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--deep-navy); color: rgba(255,255,255,0.75); text-align: center;
  padding: 40px 24px; font-size: 0.88rem;
}
.site-footer .brand { color: #fff; font-size: 1.3rem; display: inline-block; margin-bottom: 8px; }
.site-footer a { color: var(--burgundy); }
.site-footer a:hover { color: #fff; }

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 768px) {
  #glass-nav { height: 62px; padding: 0 20px; }
  .nav-links, .nav-cta.desktop-only { display: none; }
  .hamburger-menu { display: block; }
  .page { padding: 96px 18px 60px; }
}
