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

:root {
  --navy:      #0f1f35;
  --navy-mid:  #1a2e4a;
  --blue:      #2c5282;
  --blue-light:#3a6ba8;
  --gold:      #c8952a;
  --gold-light:#e0a830;
  --gold-pale: #fdf3e0;
  --light:     #f7f8fc;
  --white:     #ffffff;
  --text:      #1a202c;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --max:       1120px;
  --radius:    10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
}

a { color: var(--blue); }

/* ── TOP ANNOUNCEMENT BAR ── */
.announce-bar {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.55rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.announce-bar a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  color: var(--white);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  height: 74px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.logo-text p {
  font-size: 0.7rem;
  color: #7a9cc4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav a {
  color: #94aec8;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

nav a.nav-cta {
  color: var(--navy);
  background: var(--gold);
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  transition: background 0.2s;
}

nav a.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* diagonal accent */
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200,149,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2.5rem 5.5rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  /* max-width: 640px; */
}

.hero-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text p.tagline {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: #94aec8;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.75rem;
  border-radius: 7px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,149,42,0.35);
}

.btn-ghost {
  background: transparent;
  color: #94aec8;
  border: 1.5px solid rgba(255,255,255,0.18);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* Hero photo */
.hero-photo {
  flex: 0 0 auto;
  width: 400px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.04);
  color: #3a5a8a;
  text-align: center;
  padding: 1.5rem;
}

.hero-photo-placeholder svg {
  color: #2d4e7a;
}

.hero-photo-placeholder p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4a72a8;
  margin: 0;
  line-height: 1;
}

.hero-photo-placeholder span {
  font-size: 0.72rem;
  color: #2d4e7a;
  letter-spacing: 0.06em;
}

/* ── URGENCY STRIP ── */
.urgency-strip {
  background: linear-gradient(135deg, #1e3a5f 0%, var(--navy-mid) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.urgency-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.urgency-text {
  flex: 1;
}

.urgency-text strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.urgency-text span {
  color: #94aec8;
  font-size: 0.9rem;
}

.urgency-cta {
  flex-shrink: 0;
}

/* ── MAIN CONTENT ── */
main {
  max-width: var(--max);
  margin: 3.5rem auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.07);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--gold);
}

.card-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
}

/* Concern list */
.concern-list {
  padding-left: 1.25rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.concern-list li {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

.concern-list li strong {
  color: var(--navy);
}

/* Paragraph that follows the concern list */
.concern-closing {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

/* Updates list */
.updates-list {
  list-style: none;
  padding: 0;
}

.updates-list > li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.updates-list > li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.update-date {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--gold-pale);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.4rem;
}

.update-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.97rem;
  margin-bottom: 0.3rem;
}

.update-body {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 0.5rem;
}

.update-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.update-body p:last-child {
  margin-bottom: 0;
}

.update-body ul,
.update-body ol {
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
}

.update-body li {
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.65;
}

.update-body ul ul,
.update-body ol ul {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

.update-body a {
  color: var(--blue);
  font-weight: 600;
}

/* Action items */
.action-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--light);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.action-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.action-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.action-body { flex: 1; }

.action-body a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  display: inline-block;
  text-decoration: none;
}

.action-body a:hover { color: var(--blue); }

.action-body span {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
  display: block;
}

div.quote-block {
    margin-left: 40px;
    padding-left: 15px;
    border-left: 2px solid #ccc;
}

/* Contact */
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-intro {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.contact-row {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  align-items: flex-start;
}

.contact-row:last-child { border-bottom: none; }

.contact-label {
  flex-shrink: 0;
  width: 90px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 0.15rem;
}

.contact-value { color: var(--text); }

.contact-value a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-note {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--light);
  border-radius: 8px;
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.6;
}



/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #4a6282;
  padding: 2.5rem 2.5rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 200px;
}

.footer-brand h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #4a6282;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #5a7299;
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: #94aec8; }

.footer-bottom {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #3a5272;
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  header { padding: 0 1.5rem; }
  nav { gap: 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem 4rem;
    gap: 2.5rem;
  }

  .hero-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .urgency-inner { padding: 1.5rem; gap: 1rem; }
  main { grid-template-columns: 1fr; padding: 0 1.5rem; }

  .footer-inner { gap: 2rem; }
}

@media (max-width: 560px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
