/* ==========================================================================
   Swarnika International Private Limited - Design System & High-Contrast Architecture
   Senior UI/UX Typography & Contrast System Specification
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..700;1,400..700&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Tokens */
  --color-ink-dark: #0D141C;
  --color-ink: #16222F;
  --color-ink-surface: rgba(22, 34, 47, 0.7);
  
  --color-gold: #C29A3B;
  --color-gold-light: #E8D48A;
  --color-gold-deep: #A8872A;
  --color-gold-glow: rgba(194, 154, 59, 0.35);

  --color-paper: #F5F5F7;
  --color-paper-pure: #FFFFFF;
  --color-paper-border: rgba(220, 220, 225, 0.8);
  
  --color-alliance-slate: #2E4B60;
  --color-alliance-bg: #F0F4F8;

  --color-agro-green: #4F7243;
  --color-agro-bg: #F0F5EE;

  /* Typography Stacks */
  --font-sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-serif: 'EB Garamond', Georgia, serif;

  /* Glassmorphism Tokens */
  --glass-bg-dark: rgba(13, 20, 28, 0.85);
  --glass-bg-light: rgba(255, 255, 255, 0.9);
  --glass-border-light: rgba(255, 255, 255, 0.15);
  --glass-border-dark: rgba(22, 34, 47, 0.12);
  --glass-border-gold: rgba(194, 154, 59, 0.3);
  --glass-blur: blur(30px);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-apple: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-ink-dark);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-paper);
  color: var(--color-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================================================
   0. CONTAINER (base layout width — was previously undefined, causing
      text to run edge-to-edge and overflow on tablet widths)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 992px) {
  .container { padding: 0 1.5rem; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
}

/* ==========================================================================
   1. TYPOGRAPHY SYSTEM
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.font-serif, h1 em, h2 em {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

/* ==========================================================================
   2. AUTOMATIC THEME CONTRAST RULES
   ========================================================================== */

/* DARK THEME SCOPE */
.theme-dark {
  background-color: var(--color-ink-dark) !important;
  color: #FFFFFF !important;
}

.theme-dark h1, .theme-dark h2, .theme-dark h3, .theme-dark h4 {
  color: #FFFFFF !important;
}

.theme-dark h1 em, .theme-dark h2 em {
  color: var(--color-gold-light) !important;
}

.theme-dark p, .theme-dark .hero-copy-text {
  color: rgba(255, 255, 255, 0.82) !important;
}

.theme-dark .section-label-gold {
  color: var(--color-gold-light) !important;
}

/* LIGHT THEME SCOPE */
.theme-light {
  background-color: var(--color-paper) !important;
  color: var(--color-ink) !important;
}

.theme-light h1, .theme-light h2, .theme-light h3, .theme-light h4 {
  color: var(--color-ink) !important;
}

.theme-light h1 em, .theme-light h2 em {
  color: var(--color-gold-deep) !important;
}

.theme-light p {
  color: #424245 !important;
}

.theme-light .section-label-gold {
  color: var(--color-gold-deep) !important;
}

/* LIGHT GLASS CARDS (Light Theme Surfaces) */
.theme-light .glass-card {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-paper-border) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  color: var(--color-ink) !important;
}

.theme-light .glass-card h3, .theme-light .glass-card h4 {
  color: var(--color-ink) !important;
}

.theme-light .glass-card p {
  color: #424245 !important;
}

/* DARK GLASS CARDS (Dark Theme Surfaces) */
.theme-dark .glass-card, .glass-enquiry-box {
  background: rgba(22, 34, 47, 0.75) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}

.theme-dark .glass-card h3, .theme-dark .glass-card h4, .glass-enquiry-box h3, .glass-enquiry-box h4 {
  color: #FFFFFF !important;
}

.theme-dark .glass-card p, .glass-enquiry-box p {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ==========================================================================
   3. PRELOADER & CURSOR SPOTLIGHT
   ========================================================================== */

#apple-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-ink-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: opacity 0.6s ease-out, visibility 0.6s;
}

#apple-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-monogram {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold-light);
  box-shadow: 0 0 30px var(--color-gold-glow);
  margin-bottom: 1.25rem;
}

.preloader-bar-bg {
  width: 160px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  transition: width 1s ease-out;
}

#cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  margin-top: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 154, 59, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 90;
  mix-blend-mode: screen;
}

/* ==========================================================================
   4. NAVIGATION & BUTTONS CONTRAST
   ========================================================================== */

.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  z-index: 100;
  background: var(--glass-bg-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-pill);
  padding: 0.75rem 2rem;
  transition: all var(--transition-apple);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header.scrolled {
  padding: 0.55rem 1.75rem;
  background: rgba(13, 20, 28, 0.92);
  border-color: rgba(194, 154, 59, 0.3);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-monogram {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  background: radial-gradient(circle, var(--color-ink) 0%, var(--color-ink-dark) 100%);
  overflow: hidden;
}

.preloader-monogram img,
.brand-monogram img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: #FFFFFF !important;
  text-transform: uppercase;
  font-weight: 700;
}
.brand-name span { color: var(--color-gold) !important; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-apple);
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.12);
}

.nav-link.active {
  color: var(--color-gold-light) !important;
  background: rgba(194, 154, 59, 0.18);
  border: 1px solid rgba(194, 154, 59, 0.35);
}

/* ==========================================================================
   3b. RESPONSIVE NAV (hamburger collapse for tablet/mobile)
   ========================================================================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-gold-light);
  border-radius: 2px;
  transition: all var(--transition-apple);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(13, 20, 28, 0.97);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }

  .main-nav.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .main-nav .btn {
    width: 100%;
    margin-top: 0.75rem;
  }
}

/* BUTTON CONTRAST ENFORCEMENT */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-apple);
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-deep) 100%) !important;
  color: #0D141C !important;
  box-shadow: 0 4px 20px rgba(194, 154, 59, 0.3);
}

.btn-gold:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(194, 154, 59, 0.5);
  color: #000000 !important;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: var(--color-gold-light) !important;
  color: var(--color-gold-light) !important;
  transform: scale(1.04);
}

.btn-slate {
  background: var(--color-alliance-slate) !important;
  color: #FFFFFF !important;
}

.btn-slate:hover {
  background: #395D77 !important;
  transform: scale(1.04);
}

.btn-green {
  background: var(--color-agro-green) !important;
  color: #FFFFFF !important;
}

.btn-green:hover {
  background: #3D5A34 !important;
  transform: scale(1.04);
}

/* ==========================================================================
   5. SECTIONS LAYOUT & VIEWS
   ========================================================================== */

.view-section { display: none; }
.view-section.active { display: block; }

.hero-3d-wrapper {
  padding: 10rem 0 6rem 0;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-3d-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-3d-grid { grid-template-columns: 1fr; }
  .hero-3d-wrapper { padding-top: 8rem; }
  .hero-headline { font-size: 3rem; }
  .editorial-title { font-size: 2.3rem; }
  .glass-card, .glass-enquiry-box { padding: 2rem; }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light) !important;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-headline {
  font-size: 4.2rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-headline em {
  font-family: var(--font-serif);
  color: var(--color-gold-light) !important;
}

.hero-copy-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.globe-canvas-container {
  width: 100%;
  height: 540px;
  position: relative;
}

/* Group Intro & Engine Cards */
.group-intro-section {
  padding: 7rem 0;
}

.editorial-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.two-engines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .two-engines-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.4rem; }
  .hero-copy-text { font-size: 1.05rem; }
  .stat-number-large { font-size: 2.6rem; }
  .globe-canvas-container { height: 380px; }
}

@media (max-width: 480px) {
  .globe-canvas-container { height: 280px; }
}

.glass-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  transition: all var(--transition-apple);
  display: flex;
  flex-direction: column;
}

.glass-card > div:first-child {
  flex: 1; /* absorbs leftover space so the button always lands in the same spot in both cards */
}

.card-3d-preview {
  width: 100%;
  height: 180px;
  margin: 1.5rem 0;
}

/* Global Footprint & Counters */
.footprint-dark-section {
  padding: 7rem 0;
  border-top: 1px solid rgba(194, 154, 59, 0.2);
}

.stats-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 992px) {
  .stats-grid-4col { grid-template-columns: repeat(2, 1fr); }
}

.stat-number-large {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 3.8rem;
  color: var(--color-gold-light) !important;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-desc-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 600;
}

/* Division Heroes */
.division-hero-slate {
  background-color: var(--color-ink-dark) !important;
  background-image: linear-gradient(135deg, rgba(46, 75, 96, 0.55) 0%, rgba(13, 20, 28, 0.95) 100%);
  color: #FFFFFF !important;
  padding: 8rem 0 5rem 0;
  border-bottom: 3px solid var(--color-alliance-slate);
}

.division-hero-green {
  background-color: #2D4226 !important;
  background-image: linear-gradient(135deg, rgba(79, 114, 67, 0.8) 0%, rgba(13, 20, 28, 0.95) 100%);
  color: #FFFFFF !important;
  padding: 8rem 0 5rem 0;
  border-bottom: 3px solid var(--color-agro-green);
}

/* Corridor Buttons */
.corridor-btn {
  background-color: #FFFFFF !important;
  border: 1px solid var(--color-paper-border) !important;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink) !important;
  cursor: pointer;
  transition: all var(--transition-apple);
}

.corridor-btn:hover, .corridor-btn.active {
  background-color: var(--color-alliance-slate) !important;
  color: #FFFFFF !important;
  border-color: var(--color-alliance-slate) !important;
}

/* Contact Forms & Inputs */
.dual-enquiry-section {
  padding: 7rem 0;
}

.dual-desks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

@media (max-width: 992px) {
  .dual-desks-grid { grid-template-columns: 1fr; }
}

.glass-enquiry-box {
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glass-enquiry-box.alliance-desk { border-top: 3px solid var(--color-alliance-slate); }
.glass-enquiry-box.agro-desk { border-top: 3px solid var(--color-agro-green); }

.form-group { margin-bottom: 1.35rem; }

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light) !important;
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(13, 20, 28, 0.85);
  color: #FFFFFF !important;
  transition: all var(--transition-apple);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-gold) !important;
  background: rgba(13, 20, 28, 0.98);
  box-shadow: 0 0 0 3px rgba(194, 154, 59, 0.3);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(13, 20, 28, 0.88);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.active { display: flex; }

.modal-card {
  background: rgba(22, 34, 47, 0.95);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(194, 154, 59, 0.3);
  width: 100%;
  max-width: 650px;
  border-radius: var(--radius-lg);
  color: #FFFFFF !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 1.75rem 2rem;
  background: rgba(13, 20, 28, 0.95);
  color: var(--color-gold-light) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(194, 154, 59, 0.2);
}

.modal-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body { padding: 2rem; }

/* Footer */
.footer {
  background-color: var(--color-ink-dark) !important;
  color: rgba(255, 255, 255, 0.65) !important;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(194, 154, 59, 0.15);
  font-size: 0.85rem;
}

/* ==========================================================================
   6. TRANSITION ROADMAP SECTION
   ========================================================================== */
.transition-section {
  padding: 7rem 0;
  border-top: 1px solid rgba(194, 154, 59, 0.2);
}

.blueprint-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(194, 154, 59, 0.3);
  border-radius: var(--radius-md);
  background: rgba(194, 154, 59, 0.08);
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.phase-card { padding: 2.25rem; }

/* ==========================================================================
   7. MOBILE-RESPONSIVE FIXES for grids/headings that had no breakpoint
   ========================================================================== */

/* Two-column 50/50 layout blocks (Founder-led, Nordic Office sections) */
.responsive-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) {
  .responsive-grid-2col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Three-column practice-area cards (Alliance section) */
.responsive-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 992px) {
  .responsive-grid-3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .responsive-grid-3col { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Two-column business-line cards (Agro section) */
.responsive-grid-2col-b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (max-width: 700px) {
  .responsive-grid-2col-b { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Large section headings that previously had a fixed inline font-size */
.responsive-heading {
  font-size: 3rem;
}
.responsive-heading-lg {
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .responsive-heading { font-size: 2.1rem; }
  .responsive-heading-lg { font-size: 2.2rem; }
}
@media (max-width: 480px) {
  .responsive-heading { font-size: 1.75rem; }
  .responsive-heading-lg { font-size: 1.85rem; }
}

/* Header breathing room on small phones */
@media (max-width: 420px) {
  .header { padding: 0.6rem 1.1rem; width: calc(100% - 1.5rem); }
  .brand-name { font-size: 0.85rem; }
}

.phase-weeks {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-light) !important;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.phase-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.phase-card p { font-size: 0.95rem; }
