/* =========================================================
   Syria Silicon — Stylesheet
   Aesthetic direction: refined industrial editorial
   Type pairing: Cormorant Garamond (display) + Inter (body)
   ========================================================= */

:root {
  /* Palette */
  --navy-dark: #0B2545;
  --navy: #13315C;
  --navy-mid: #1A4070;
  --gold: #A89569;
  --gold-soft: #C5B58F;
  --sand: #F7F2E8;
  --cream: #FAF7F1;
  --paper: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #3D3D3D;
  --muted: #6B7280;
  --faint: #9CA3AF;
  --line: #E5DFD3;
  --line-dark: #1F3A5C;
  --red: #9B2C2C;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-xxl: 6rem;

  /* Container */
  --container-max: 1240px;
  --container-pad: 1.5rem;
}

/* =========================================================
   Reset & base
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container.narrow {
  max-width: 880px;
}

/* =========================================================
   Top navigation
   ========================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 37, 69, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--paper);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.nav-brand:hover .brand-mark {
  background: var(--gold);
  color: var(--navy-dark);
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: var(--paper);
}

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

.nav-links a {
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55rem 1.2rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
}

.nav-cta::after {
  display: none;
}

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--paper);
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 1.5rem var(--container-pad);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile a {
  color: var(--paper);
  padding: 0.85rem 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile.active {
  display: flex;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/aerial_mine.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: contrast(0.95) brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 37, 69, 0.85) 0%,
      rgba(11, 37, 69, 0.6) 40%,
      rgba(11, 37, 69, 0.95) 100%),
    radial-gradient(ellipse at 70% 30%,
      rgba(168, 149, 105, 0.15) 0%,
      transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 4rem;
  max-width: 1100px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  font-weight: 500;
  position: relative;
  padding-left: 3rem;
}

.hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 2.5rem;
  max-width: 920px;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

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

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  width: 100%;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}

.hero-scroll-indicator span {
  display: block;
  width: 100%;
  height: 30%;
  background: var(--gold);
  animation: scroll-down 2.5s infinite;
}

@keyframes scroll-down {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(330%); }
}

/* =========================================================
   Facts band
   ========================================================= */

.facts-band {
  background: var(--cream);
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.fact {
  text-align: left;
}

.fact-figure {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.fact-unit {
  display: inline;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gold);
  margin-left: 0.15em;
  letter-spacing: 0;
}

.fact-label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 400;
}

/* =========================================================
   Sections (shared)
   ========================================================= */

.section {
  padding: 7rem 0;
  position: relative;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: var(--navy-dark);
  color: var(--paper);
}

.section-head {
  margin-bottom: 4rem;
  max-width: 880px;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 3rem;
  display: inline-block;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.eyebrow-light {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy-dark);
}

.section-title-light {
  color: var(--paper);
}

/* =========================================================
   Two-column layout (Project section)
   ========================================================= */

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.two-col-text p:first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  color: var(--navy-dark);
}

.aside-card {
  background: var(--sand);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
  position: sticky;
  top: 100px;
}

.aside-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

.aside-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.aside-list dt {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.aside-list dd {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}

/* =========================================================
   Resource section (dark)
   ========================================================= */

.resource-imagery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.resource-image-wide, .resource-image-tall {
  margin: 0;
}

.resource-image-wide img, .resource-image-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
}

.resource-image-wide img {
  aspect-ratio: 16/9;
}

.resource-image-tall img {
  aspect-ratio: 4/5;
}

figcaption {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.8rem;
  font-style: italic;
  line-height: 1.5;
}

.resource-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-block {
  border-top: 1px solid rgba(168, 149, 105, 0.4);
  padding-top: 1.5rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.stat-figure {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  color: var(--paper);
  line-height: 1;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.stat-decoration {
  color: var(--gold);
  font-weight: 300;
  margin: 0 0.05em;
}

.stat-unit {
  font-size: 0.65em;
  color: var(--gold-soft);
  margin-left: 0.15em;
  font-weight: 400;
}

.stat-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  font-weight: 300;
}

/* =========================================================
   Phases section
   ========================================================= */

.phases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.phase-card {
  padding: 3rem;
  position: relative;
  border-top: 4px solid var(--gold);
  background: var(--cream);
}

.phase-card-2 {
  background: var(--sand);
  border-top-color: var(--navy-mid);
  opacity: 0.92;
}

.phase-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.phase-card-2 .phase-tag {
  color: var(--navy-mid);
}

.phase-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.phase-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.phase-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.phase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.phase-summary {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-style: italic;
}

.phases-imagery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.phases-imagery figure {
  margin: 0;
}

.phases-imagery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.phases-imagery figcaption {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.8rem;
}

/* =========================================================
   Partnerships
   ========================================================= */

.partnerships-imagery {
  margin-bottom: 4rem;
}

.partnerships-imagery figure {
  margin: 0;
  max-width: 880px;
}

.partnerships-imagery img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.partnerships-imagery figcaption {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  font-style: italic;
}

.partnerships-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.partnership {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.partnership-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.partnership p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* =========================================================
   Team
   ========================================================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.team-member {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.team-member-recruiting {
  background: var(--sand);
  padding: 1.5rem;
  border-top-color: var(--gold);
  border-top-width: 3px;
}

.team-recruiting-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* =========================================================
   Regulatory / sanctions section
   ========================================================= */

.regulatory-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.regulatory-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-style: italic;
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 149, 105, 0.3);
}

/* =========================================================
   Contact
   ========================================================= */

.section-contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.contact-role {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
}

.contact-method {
  margin-bottom: 1.5rem;
}

.contact-method-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-method-value {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
}

a.contact-method-value {
  color: var(--navy);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

a.contact-method-value:hover {
  border-bottom-color: var(--gold);
}

.contact-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Form */
.contact-form-wrap {
  background: var(--paper);
  padding: 2.5rem;
  border-top: 3px solid var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* =========================================================
   Footer
   ========================================================= */

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  max-width: 900px;
}

/* =========================================================
   Animations
   ========================================================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeUp 0.8s ease forwards;
}

.hero-eyebrow,
.hero-title,
.hero-lede,
.hero-actions {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-lede { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.6s; }

/* Scroll reveal — only hides if JS class is present.
   If JS doesn't load, content is visible by default (graceful fallback). */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  .resource-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partnerships-list {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .nav-links {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding-top: 7rem;
  }
  .hero-eyebrow {
    padding-left: 2.5rem;
    font-size: 0.7rem;
  }
  .hero-title {
    margin-bottom: 1.5rem;
  }

  .facts-band {
    padding: 3.5rem 0;
  }
  .facts-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .two-col,
  .phases-grid,
  .phases-imagery,
  .partnerships-list,
  .resource-imagery,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .aside-card {
    position: static;
    margin-top: 2rem;
  }

  .resource-stats {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

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

  .phase-card,
  .contact-form-wrap {
    padding: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .brand-name {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
  .section {
    padding: 4rem 0;
  }
  .resource-stats {
    grid-template-columns: 1fr;
  }
  .two-col-text p:first-letter {
    font-size: 2.8rem;
  }
}

/* =========================================================
   Print
   ========================================================= */

@media print {
  .nav, .nav-mobile, .hero-scroll-indicator, .contact-form-wrap {
    display: none;
  }
  body {
    color: black;
    background: white;
  }
  .section-dark {
    background: white;
    color: black;
  }
  .section-title-light {
    color: black;
  }
}

/* =========================================================
   Diagrams (SVG)
   ========================================================= */

.diagram {
  margin: 3rem 0 0 0;
  padding: 0;
}

.diagram img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
}

.diagram figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin-top: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(168, 149, 105, 0.25);
  max-width: 880px;
}

.diagram-wide {
  margin-top: 3.5rem;
}

/* =========================================================
   Second resource image (full-width below the main pair)
   ========================================================= */

.resource-image-second {
  margin-top: 2rem;
  grid-column: 1 / -1;
}

.resource-image-second img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

/* =========================================================
   Language toggle (nav)
   ========================================================= */

.nav-lang {
  display: inline-flex;
  align-items: center;
  margin-left: 0.6rem;
  padding: 0.4rem 0.85rem !important;
  border: 1px solid rgba(168, 149, 105, 0.5);
  color: var(--gold) !important;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem !important;
  letter-spacing: 0 !important;
  transition: all 0.2s ease;
}

.nav-lang:hover {
  background: var(--gold);
  color: var(--navy-dark) !important;
  border-color: var(--gold);
}

.nav-lang::after {
  display: none;
}

/* =========================================================
   Raising banner (between hero and facts)
   ========================================================= */

.raising-banner {
  background: var(--navy-dark);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(168, 149, 105, 0.2);
  border-bottom: 1px solid rgba(168, 149, 105, 0.2);
  position: relative;
  overflow: hidden;
}

.raising-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.raising-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
}

.raising-item {
  text-align: center;
  padding: 0.5rem;
}

.raising-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.raising-item-future .raising-label,
.raising-item-total .raising-label {
  color: rgba(168, 149, 105, 0.7);
}

.raising-figure {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--paper);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.raising-item-future .raising-figure,
.raising-item-total .raising-figure {
  color: rgba(255, 255, 255, 0.85);
}

.raising-detail {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  font-weight: 300;
}

.raising-arrow, .raising-equals {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

/* =========================================================
   Pathway section
   ========================================================= */

.pathway-intro {
  max-width: 880px;
  margin-bottom: 3.5rem;
}

.pathway-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.pathway-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.pathway-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-top: 4px solid var(--gold);
  position: relative;
}

.pathway-card-2 {
  background: var(--sand);
  border-top-color: var(--navy-mid);
}

.pathway-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.pathway-card-2 .pathway-tag {
  color: var(--navy-mid);
}

.pathway-figure {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--navy-dark);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pathway-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.pathway-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.pathway-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  position: relative;
  min-width: 60px;
}

.pathway-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.pathway-arrow {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  background: var(--paper);
  padding: 0 0.5rem;
  position: relative;
  z-index: 2;
}

.pathway-combined {
  background: var(--navy-dark);
  color: var(--paper);
  padding: 2.5rem 3rem;
  border-top: 4px solid var(--gold);
  text-align: center;
}

.pathway-combined-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.pathway-combined-figure {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--paper);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.pathway-combined-body {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 300;
}

/* =========================================================
   Investment / Lock-in section
   ========================================================= */

.lockin-intro {
  max-width: 880px;
  margin-bottom: 3rem;
}

.lockin-intro p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.lockin-mechanisms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.lockin-card {
  background: var(--paper);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  position: relative;
  transition: all 0.3s ease;
}

.lockin-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11, 37, 69, 0.06);
}

.lockin-tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.lockin-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.lockin-body {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* =========================================================
   Calculator
   ========================================================= */

.calculator {
  background: var(--sand);
  padding: 3rem 2.5rem;
  border-top: 4px solid var(--gold);
  margin-top: 1rem;
}

.calculator-head {
  text-align: left;
  margin-bottom: 2.5rem;
  max-width: 760px;
}

.calculator-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.calculator-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.calculator-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.calculator-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.calc-tab {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.calc-tab:hover {
  color: var(--navy-dark);
}

.calc-tab-active {
  color: var(--navy-dark);
  border-bottom-color: var(--gold);
}

.calculator-output {
  background: var(--paper);
  padding: 2.5rem 2rem;
  min-height: 280px;
}

.calc-scenario {
  display: none;
  animation: fadeUp 0.4s ease forwards;
}

.calc-scenario.calc-scenario-active {
  display: block;
}

.calc-headline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.calc-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calc-outcomes li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.calc-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.calc-outcomes li strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.calculator-disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 149, 105, 0.25);
  max-width: 880px;
}

/* =========================================================
   Team-member-full (recruiting placeholder spans full width)
   ========================================================= */

.team-member-full {
  grid-column: 1 / -1;
}

.team-member-recruiting h3.team-name {
  font-size: 1.2rem;
}

/* =========================================================
   Responsive tweaks for new sections
   ========================================================= */

@media (max-width: 1024px) {
  .raising-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .raising-arrow, .raising-equals {
    display: none;
  }
  .pathway-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pathway-connector {
    transform: rotate(90deg);
    height: 40px;
    width: 100%;
    margin: 0;
  }
  .lockin-mechanisms {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .calculator-tabs {
    grid-template-columns: 1fr;
  }
  .calc-tab {
    border-bottom: 1px solid var(--line);
    text-align: left;
  }
  .calc-tab-active {
    border-bottom-color: var(--gold);
  }
}

@media (max-width: 768px) {
  .raising-banner {
    padding: 2rem 0;
  }
  .pathway-combined {
    padding: 2rem 1.5rem;
  }
  .calculator {
    padding: 2rem 1.5rem;
  }
  .calculator-output {
    padding: 1.5rem 1rem;
  }
  .nav-lang {
    margin-left: 0;
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}
