/* =============================================
   BROOKOVER REVIEW — Main Stylesheet
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1a2744;
  --navy-dark:  #111c35;
  --navy-mid:   #162040;
  --gold:       #c9a84c;
  --gold-light: #e2c97e;
  --white:      #ffffff;
  --off-white:  #f5f6f8;
  --light-gray: #e8eaed;
  --mid-gray:   #6b7280;
  --text:       #1f2937;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Source Sans 3', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ──────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.logo { height: 150px; width: auto; margin-bottom: 12px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > ul > li { position: relative; }

.main-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Subscribe button in nav */
.btn-nav-subscribe {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  margin-left: 12px;
  transition: background 0.2s;
}
.btn-nav-subscribe:hover { background: var(--gold); color: var(--navy-dark); }

/* Dropdown */
.has-dropdown:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-top: 3px solid var(--navy);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 200;
}

.dropdown li a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--light-gray);
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--off-white); color: var(--gold); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--navy);
  cursor: pointer;
}

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url('HeroImage.png') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 28, 53, 0.93) 0%,
    rgba(17, 28, 53, 0.85) 50%,
    rgba(17, 28, 53, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: 80px;
  padding: 80px 24px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── SECTION HEADERS ─────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-header h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  padding-left: 14px;
}

.view-all {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.view-all:hover { color: var(--gold); }

/* ── FEATURED ARTICLES ───────────────────── */
.featured-section {
  padding: 64px 0 72px;
  background: var(--off-white);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Article cards */
.article-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }

.card-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin: 16px 16px 0;
  width: fit-content;
}

.card-img-wrap {
  margin: 12px 16px;
  overflow: hidden;
  height: 180px;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card:hover .card-img-wrap img { transform: scale(1.03); }

.lifecycle-graphic-card {
  width: 100%;
  height: 100%;
  background: #162040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.lifecycle-graphic-card .lc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.lifecycle-graphic-card .lc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.lifecycle-graphic-card .lc-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  white-space: nowrap;
}
.lifecycle-graphic-card .lc-connector {
  flex: 0.5;
  height: 1px;
  background: rgba(201,168,76,0.35);
  margin-bottom: 16px;
}

.article-card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
  padding: 0 16px 10px;
  transition: color 0.2s;
}
.article-card:hover h3 { color: var(--gold); }

.article-card p {
  font-size: 0.86rem;
  color: var(--mid-gray);
  padding: 0 16px 14px;
  line-height: 1.6;
  flex: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--light-gray);
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin-top: auto;
}
.card-meta .author { font-weight: 700; color: var(--navy); }

/* ── EXPLORE KEY TOPICS ──────────────────── */
.topics-section {
  padding: 64px 0 72px;
  background: var(--white);
}

.topics-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.topic-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--light-gray);
  background: var(--off-white);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.topic-icon-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  transform: translateY(-2px);
  border-color: var(--gold);
}

.topic-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.topic-icon svg { width: 26px; height: 26px; stroke: var(--gold); }

.topic-icon-card h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.topic-icon-card p {
  font-size: 0.8rem;
  color: var(--mid-gray);
  line-height: 1.55;
}

/* ── STAY INFORMED STRIP ─────────────────── */
.stay-informed-strip {
  background: var(--navy);
  padding: 52px 0;
}

.stay-informed-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.stay-informed-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.stay-informed-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.stay-informed-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  width: 420px;
  justify-content: flex-start;
}

.stay-informed-form #strip-msg {
  width: 100%;
}

.stay-informed-form input[type="email"] {
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: var(--sans);
  width: 280px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.stay-informed-form input::placeholder { color: rgba(255,255,255,0.45); }
.stay-informed-form input:focus { border-color: var(--gold); }

.stay-informed-form button {
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.stay-informed-form button:hover { background: var(--gold-light); }

#strip-msg {
  font-size: 0.8rem;
  color: var(--gold);
  width: 100%;
}

/* ── TRUSTED PERSPECTIVE ─────────────────── */
.trusted-section {
  padding: 72px 0;
  background: var(--off-white);
}

.trusted-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}

.trusted-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.trusted-text h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}

.trusted-text p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.trusted-img-placeholder {
  background: var(--light-gray);
  border: 2px dashed var(--mid-gray);
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--mid-gray);
  font-size: 0.85rem;
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  height: 140px;
  width: auto;
  margin-bottom: 16px;
  background: var(--white);
  padding: 8px 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  transition: color 0.2s;
}
.linkedin-link:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  font-style: italic;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .topics-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .trusted-inner { grid-template-columns: 1fr; }
  .stay-informed-inner { flex-direction: column; align-items: flex-start; }
  .stay-informed-form { width: 100%; }
  .stay-informed-form input[type="email"] { flex: 1; width: auto; min-width: 0; }
  .topics-icons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-inner { height: 88px; }
  .logo { height: 70px; margin-bottom: 0; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--navy); padding: 16px; z-index: 99; }
  .main-nav.open > ul { flex-direction: column; width: 100%; }
  .btn-nav-subscribe { margin-left: 0; margin-top: 8px; }
  .hamburger { display: block; }
  .hero { min-height: 420px; }
  .hero-content { margin-left: 0; padding: 48px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .footer-logo { height: 100px; }
  .topics-icons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-content h1 { font-size: 1.7rem; }
  .featured-section, .topics-section, .trusted-section { padding: 48px 0; }
  .stay-informed-strip { padding: 40px 0; }
  .section-header h2 { font-size: 1.45rem; }
  .topics-icons-grid { grid-template-columns: 1fr; }
  .stay-informed-form { flex-direction: column; align-items: stretch; }
  .stay-informed-form input[type="email"] { width: 100%; }
  .stay-informed-form button { width: 100%; }
}
