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

:root {
  --navy: #1a3a6b;
  --navy-dark: #0f2347;
  --navy-mid: #1e4080;
  --orange: #e8471a;
  --orange-light: #ff5a28;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --gray-light: #e8e8e8;
  --gray-mid: #888;
  --gray-text: #555;
  --red-stripe: #c0392b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.5px;
  background: var(--navy);
  flex-shrink: 0;
}

.nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
}

/* Mobile: hide full title on very small screens */
@media (max-width: 400px) {
  .nav-title { display: none; }
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
}

/* ── PAGES ── */
.page { display: none; padding-top: 64px; min-height: 100vh; }
.page.active { display: block; }

/* ── HOME HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #2255a0 100%);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,64,128,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232,71,26,0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero h1 .line1 { color: var(--white); display: block; }
.hero h1 .line2 { color: var(--orange); display: block; }

.hero p {
  margin-top: 1.5rem;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

/* ── FROM THE COURT SECTION ── */
.from-court {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.from-court-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.from-court-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.all-stories-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.all-stories-link:hover { text-decoration: underline; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

@media (max-width: 600px) {
  .articles-grid { grid-template-columns: 1fr; }
}

.article-card {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.article-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.article-body {
  padding: 1rem 1.25rem 1.25rem;
}

.article-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.article-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.article-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-mid);
  flex-wrap: wrap;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-mid);
  font-size: 15px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

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

@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 220px;
}

.footer-nav h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-tagline h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.footer-tagline p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── NEWS PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 3rem 2rem;
}

.page-hero .section-label { margin-bottom: 8px; }

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

/* Filter bar hidden — tags removed per design update */
.filter-bar { display: none; }

.news-content {
  padding: 1rem 2rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
}

.about-hero::before {
  content: 'GARDEN';
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 20vw, 180px);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  letter-spacing: 10px;
  text-transform: uppercase;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.about-hero-content { position: relative; z-index: 2; }

.about-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -1px;
}

.about-hero h1 .line1 { color: var(--white); display: block; }
.about-hero h1 .line2 { color: var(--orange); display: block; }

.about-hero p {
  margin-top: 1.25rem;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.6;
}

/* ── FOUNDERS ── */
.founders-section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .founders-grid { grid-template-columns: 1fr; }
}

.founder-card {
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}

.founder-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 2rem 1.5rem 1.5rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.founder-card-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}

.founder-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

.founder-body {
  padding: 1.25rem 1.5rem;
}

.founder-body p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.founder-detail-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.hottest-take {
  font-size: 13px;
  color: var(--gray-text);
  font-style: italic;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  line-height: 1.5;
}

/* ── ARTICLE DETAIL PAGE ── */
.article-page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 3rem 2rem 2.5rem;
}

.article-page-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-page-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.article-page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.article-page-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

.article-page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.article-page-content #article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 1.4rem;
}

.article-back {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.article-back a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
}

.article-back a:hover { text-decoration: underline; }

/* ── MISSION ── */
.mission-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.mission-section .section-label { margin-bottom: 12px; }

.mission-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.mission-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}
