/* ============================================================
   GumGauge — Stylesheet v2
   Brand: #1a237e (Navy), #edddbb (Cream), #e8411e (Logo Red)
   Fonts: Nunito + Inter (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 17px; color: #1a1a2e; background: #fff; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --navy:   #1a237e;
  --navy2:  #283593;
  --cream:  #edddbb;
  --cream2: #f7f1e3;
  --red:    #e8411e;
  --gold:   #c9a84c;
  --dark:   #1a1a2e;
  --white:  #ffffff;
  --grey:   #f4f4f6;
  --text:   #3a3a4a;
  --sh:     0 4px 32px rgba(26,35,126,0.10);
  --sh-lg:  0 12px 48px rgba(26,35,126,0.16);
}

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Nunito', sans-serif; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(36px, 5.5vw, 62px); font-weight: 900; }
h2 { font-size: clamp(26px, 3.8vw, 44px); font-weight: 800; }
h3 { font-size: clamp(19px, 2.4vw, 26px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text); }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* ── Utility ─────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-cream  { color: var(--cream) !important; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 14px 34px;
  border-radius: 8px;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary   { background: var(--navy);  color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--red); border-color: var(--red); }
.btn-red       { background: var(--red);   color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--navy);  border-color: var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-cream     { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-cream:hover { background: #fff; border-color: #fff; }

/* ── Navigation ──────────────────────────────────────────── */
nav {
  background: #fff;
  border-bottom: 1px solid rgba(26,35,126,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(26,35,126,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  gap: 10px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--cream);
  color: var(--navy);
}
.nav-cta { margin-left: 8px; padding: 10px 24px; font-size: 14px; }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: 0.3s;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(26,35,126,0.08);
  padding: 16px 24px 24px;
}
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,35,126,0.06);
}
.mobile-menu .btn { margin-top: 16px; width: 100%; text-align: center; display: block; }
.mobile-menu.open { display: block; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Action%20Shots/Rougemont%20Urdd7s.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(26,35,126,0.95) 0%,
    rgba(26,35,126,0.82) 50%,
    rgba(26,35,126,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 100px 0 100px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,65,30,0.15);
  border: 1.5px solid rgba(232,65,30,0.5);
  color: #ff8a70;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .accent { color: var(--cream); }
.hero-lead {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-tagline {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-tag-item {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--cream);
}
.hero-tag-item span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero-bg { background-attachment: scroll; }
  .hero-content { padding: 72px 0 72px; }
  .hero-tagline { gap: 24px; }
}

/* ── See. Spot. Check. Strip ─────────────────────────────── */
.ssc-strip {
  background: var(--navy);
  padding: 0;
}
.ssc-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ssc-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
}
.ssc-item:last-child { border-right: none; }
.ssc-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--cream);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.ssc-word {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.ssc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .ssc-inner { grid-template-columns: 1fr; }
  .ssc-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ── Product Intro ───────────────────────────────────────── */
.product-intro { background: #fff; }
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-intro-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.product-intro-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.product-intro-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 0 3px rgba(26,35,126,0.08);
}
.feature-list { list-style: none; margin: 28px 0 36px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26,35,126,0.06);
  font-size: 16px;
  color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.f-check {
  width: 26px; height: 26px; min-width: 26px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; margin-top: 1px;
}
@media (max-width: 900px) {
  .product-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-intro-img img { height: 340px; }
}

/* ── Variants ────────────────────────────────────────────── */
.variants { background: var(--cream); }
.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.variant-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform 0.22s, box-shadow 0.22s;
}
.variant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.variant-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.variant-body { padding: 28px 28px 32px; }
.variant-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tag-kids   { background: #fff3c4; color: #a07000; }
.tag-teens  { background: #dbeafe; color: #1e40af; }
.tag-adults { background: #e5e7eb; color: #374151; }
.variant-body h3 { font-size: 21px; margin-bottom: 8px; }
.variant-body p  { font-size: 14px; margin: 0 0 16px; color: #666; }
.variant-price {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--navy);
}
.variant-price span { font-size: 13px; font-weight: 600; color: #888; margin-left: 4px; }
@media (max-width: 900px) { .variants-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

/* ── How It Works ────────────────────────────────────────── */
.how-it-works { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: var(--cream);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.step:nth-child(1) .step-num { background: var(--navy); }
.step:nth-child(2) .step-num { background: var(--red); }
.step:nth-child(3) .step-num { background: var(--navy); }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p   { font-size: 15px; color: #666; margin: 0; }
@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
}

/* ── Photo Band ──────────────────────────────────────────── */
.photo-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
  overflow: hidden;
}
.photo-band-item {
  overflow: hidden;
  position: relative;
}
.photo-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-band-item:hover img { transform: scale(1.06); }
@media (max-width: 768px) {
  .photo-band { grid-template-columns: repeat(2, 1fr); height: 240px; }
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials { background: var(--navy); }
.testimonials h2 { color: var(--cream); }
.testimonials .label { color: var(--cream); opacity: 0.7; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(237,221,187,0.15);
  border-radius: 14px;
  padding: 32px 36px 28px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--cream);
  opacity: 0.2;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}
.testi-card blockquote {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  padding-top: 28px;
  margin-bottom: 20px;
}
.testi-author {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
@media (max-width: 700px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── Partners Section ────────────────────────────────────── */
.partners { background: var(--cream2); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.partner-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform 0.2s;
}
.partner-card:hover { transform: translateY(-4px); }
.partner-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.partner-card-body { padding: 22px 24px 26px; }
.partner-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.partner-card h3 { font-size: 17px; margin-bottom: 8px; }
.partner-card p  { font-size: 14px; color: #666; margin: 0 0 14px; }
.read-more {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.read-more:hover { border-color: var(--navy); }
@media (max-width: 900px) { .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .partners-grid { grid-template-columns: 1fr; } }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2fa0 100%);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p  { color: rgba(255,255,255,0.75); font-size: 19px; margin-bottom: 36px; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #0e1150;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 38px; width: auto; }
.footer-desc { font-size: 14px; line-height: 1.75; max-width: 320px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: background 0.15s, color 0.15s;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}
.social-btn:hover { background: var(--red); color: #fff; }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Page Header (inner pages) ───────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2fa0 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 64px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header .label { color: rgba(255,255,255,0.6); }
.page-header h1 { color: #fff; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 18px; margin-top: 12px; max-width: 580px; }

/* ── Products Page ───────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-main-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.product-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.product-thumb {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.15s;
}
.product-thumb:hover { border-color: var(--navy); }
.product-thumb img { width: 100%; height: 90px; object-fit: cover; display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(even) td { background: var(--grey); }
.spec-table td {
  padding: 13px 16px;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}
.spec-table td:first-child {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--navy);
  width: 42%;
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-main-img img { height: 320px; }
}

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-detail {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 24px;
}
.contact-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--navy); color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-icon-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}
.contact-form-box {
  background: #fff;
  border-radius: 18px;
  padding: 44px;
  box-shadow: var(--sh-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8f0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-box { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── News / Article ──────────────────────────────────────── */
.article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,126,0.85) 0%, rgba(26,35,126,0.2) 60%);
}
.article-hero-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 0 32px;
}
.article-hero-meta h1 { color: #fff; font-size: clamp(24px, 3.5vw, 40px); }
.article-meta-row {
  display: flex; gap: 16px; align-items: center;
  margin-top: 12px; flex-wrap: wrap;
}
.article-tag {
  background: var(--red);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}
.article-date {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}
.article-body {
  max-width: 740px;
  margin: 64px auto 80px;
  padding: 0 28px;
}
.article-body h2 { font-size: 24px; margin: 44px 0 16px; }
.article-body p  { font-size: 17px; line-height: 1.85; color: var(--text); margin-bottom: 22px; }
.article-body blockquote {
  border-left: 4px solid var(--navy);
  padding: 16px 24px;
  background: var(--cream2);
  border-radius: 0 8px 8px 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
}
.article-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.article-image-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 40px;
  padding: 10px 0;
}
.article-back:hover { color: var(--red); }

/* ── Scroll fade ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
