/* ===============================================
   JENGA TEK — UNIFIED STYLESHEET
   Static website for jenga tek
   =============================================== */

/* =============================================
   ROOT VARIABLES & BASE STYLES
   ============================================= */

:root {
  --navy: #1B2B39;
  --navy-deep: #111d27;
  --teal: #008080;
  --teal-light: #009999;
  --gold: #B29562;
  --gold-light: #c9aa78;
  --white: #F5F3EF;
  --grey: #8a9aa8;
  --light-bg: #f0ede7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* =============================================
   SHARED NAVIGATION
   ============================================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(27, 43, 57, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(178, 149, 98, 0.2);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.logo span {
  color: var(--teal);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul li {
  list-style: none;
}

nav ul a {
  text-decoration: none;
  color: rgba(245, 243, 239, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--teal-light);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--teal-light) !important;
  color: var(--white) !important;
}

/* =============================================
   SHARED BUTTON STYLES
   ============================================= */

.btn-primary {
  background: var(--teal);
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(245, 243, 239, 0.3);
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid rgba(27, 43, 57, 0.3);
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

/* =============================================
   SHARED SECTION LABELS & HEADINGS
   ============================================= */

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--teal);
}

.section-label.gold {
  color: var(--gold);
}

.section-label.gold::before {
  background: var(--gold);
}

.section-label.light {
  color: var(--teal-light);
}

.section-label.light::before {
  background: var(--teal-light);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  max-width: 600px;
  margin-bottom: 1rem;
}

.section-heading strong {
  font-weight: 700;
}

.section-heading.light {
  color: var(--white);
}

.section-intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.65;
  max-width: 580px;
  margin-bottom: 4rem;
}

/* =============================================
   SHARED FOOTER
   ============================================= */

footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(178, 149, 98, 0.15);
  padding: 3rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.footer-logo span {
  color: var(--teal);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links li {
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.45);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 243, 239, 0.25);
  letter-spacing: 0.05em;
}

/* =============================================
   SHARED ANIMATIONS
   ============================================= */

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

/* =============================================
   PAGE-SPECIFIC: HOMEPAGE (index.html)
   ============================================= */

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 128, 128, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 128, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 128, 128, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5% 6rem 8%;
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero-headline strong {
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 243, 239, 0.65);
  max-width: 420px;
  margin-bottom: 3rem;
  font-weight: 300;
}

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

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 8% 6rem 4%;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(178, 149, 98, 0.2);
  border: 1px solid rgba(178, 149, 98, 0.2);
  width: 100%;
  max-width: 440px;
}

.stat-block {
  background: rgba(27, 43, 57, 0.9);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.stat-block:hover {
  background: rgba(0, 128, 128, 0.1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.55);
}

/* CERTAINTY STRIP */
.certainty-strip {
  background: var(--teal);
  padding: 1.4rem 8%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.certainty-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certainty-item::before {
  content: '✦';
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
}

/* PROBLEM / SOLUTION */
.section {
  padding: 7rem 8%;
}

.problem-solution {
  background: var(--light-bg);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 3rem;
}

.ps-block {
  padding: 3.5rem;
}

.ps-problem {
  background: var(--navy);
  color: var(--white);
}

.ps-solution {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ps-solution::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
}

.ps-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  border-radius: 1px;
}

.ps-problem .ps-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.ps-solution .ps-tag {
  background: rgba(0, 128, 128, 0.3);
  color: var(--teal-light);
}

.ps-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ps-problem h3 {
  color: rgba(255, 255, 255, 0.5);
}

.ps-solution h3 {
  color: var(--white);
}

.ps-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ps-block li {
  font-size: 0.92rem;
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
  color: rgba(245, 243, 239, 0.7);
}

.ps-problem li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 0.8rem;
}

.ps-solution li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.8rem;
}

/* SERIES */
.series {
  background: var(--white);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  max-width: 560px;
  margin-bottom: 3.5rem;
}

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

.series-card {
  background: var(--navy);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.series-card:hover {
  transform: translateY(-4px);
}

.series-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.series-card:hover::before {
  transform: scaleX(1);
}

.series-card.premium {
  background: var(--navy-deep);
}

.series-card.premium::before {
  background: var(--gold);
}

.series-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.series-card.premium .series-tag {
  color: var(--gold);
}

.series-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.series-card p {
  font-size: 0.88rem;
  color: rgba(245, 243, 239, 0.6);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.series-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.series-spec {
  font-size: 0.75rem;
  color: rgba(245, 243, 239, 0.4);
  letter-spacing: 0.05em;
}

.series-spec span {
  color: var(--teal);
  font-weight: 600;
}

.series-card.premium .series-spec span {
  color: var(--gold);
}

.series-price {
  margin-top: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

/* PROOF POINTS */
.proof {
  background: var(--navy);
}

.proof .section-label {
  color: var(--teal);
}

.proof .section-label::before {
  background: var(--teal);
}

.proof-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 3.5rem;
  line-height: 1.2;
}

.proof-heading strong {
  font-weight: 700;
  color: var(--gold);
}

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

.proof-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.proof-card:hover {
  background: rgba(0, 128, 128, 0.08);
}

.proof-icon {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.proof-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.proof-card p {
  font-size: 0.88rem;
  color: rgba(245, 243, 239, 0.55);
  line-height: 1.65;
}

/* GEOGRAPHY */
.geography {
  background: var(--light-bg);
}

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.geo-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.geo-left h2 strong {
  font-weight: 700;
}

.geo-left p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 2.5rem;
}

.geo-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.geo-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(27, 43, 57, 0.2);
  border-radius: 1px;
  color: var(--navy);
}

.geo-tag.primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.geo-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.geo-stat {
  background: var(--navy);
  padding: 2.5rem 2rem;
  color: var(--white);
}

.geo-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.geo-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.5);
  line-height: 1.4;
}

/* CTA SECTION */
.cta-section {
  background: var(--navy-deep);
  padding: 8rem 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 128, 128, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 128, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

.cta-section h2 strong {
  font-weight: 700;
  color: var(--gold);
}

.cta-section p {
  font-size: 1rem;
  color: rgba(245, 243, 239, 0.55);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* PAGE ANIMATIONS */
.hero-eyebrow {
  animation: fadeUp 0.7s ease both;
}

.hero-headline {
  animation: fadeUp 0.7s ease 0.15s both;
}

.hero-sub {
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-ctas {
  animation: fadeUp 0.7s ease 0.45s both;
}

.hero-right {
  animation: fadeUp 0.7s ease 0.3s both;
}

/* =============================================
   PAGE-SPECIFIC: ABOUT (about.html)
   ============================================= */

.page-hero {
  background: var(--navy-deep);
  padding: 12rem 8% 8rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 128, 128, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 128, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-gold-accent {
  position: absolute;
  bottom: 0;
  right: 8%;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}

.page-hero > *:not(.hero-bg-grid):not(.hero-gold-accent) {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.3);
  margin-bottom: 2rem;
}

.breadcrumb span {
  color: var(--teal);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
}

.hero-left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.03;
  margin-bottom: 2rem;
}

.hero-left h1 strong {
  font-weight: 700;
  display: block;
}

.hero-left h1 em {
  font-style: italic;
  color: rgba(245, 243, 239, 0.5);
  font-weight: 300;
}

.hero-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 243, 239, 0.6);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.hero-right p:last-child {
  margin-bottom: 0;
}

/* PULL QUOTE */
.pull-quote-section {
  background: var(--teal);
  padding: 5rem 8%;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  max-width: 860px;
}

.pull-quote strong {
  font-weight: 700;
}

.pull-quote-attr {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.55);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pull-quote-attr::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(245, 243, 239, 0.4);
}

/* ORIGIN STORY */
.story-section {
  padding: 8rem 8%;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.story-left p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--navy);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.story-left p:first-of-type {
  font-size: 1.1rem;
  opacity: 0.85;
}

.story-left p strong {
  font-weight: 600;
  opacity: 1;
  color: var(--navy);
}

.story-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.story-stat-block {
  background: var(--navy);
  padding: 2.5rem 2.5rem;
  border-left: 3px solid var(--teal);
}

.story-stat-block.gold-border {
  border-left-color: var(--gold);
}

.ssb-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.ssb-num.gold {
  color: var(--gold);
}

.ssb-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.5);
  margin-bottom: 0.5rem;
}

.ssb-detail {
  font-size: 0.85rem;
  color: rgba(245, 243, 239, 0.45);
  line-height: 1.5;
}

/* PROBLEM SECTION */
.problem-section {
  padding: 8rem 8%;
  background: var(--light-bg);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 3.5rem;
}

.problem-card {
  background: var(--navy);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.problem-card.solution {
  background: var(--navy-deep);
}

.problem-card.solution::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: var(--teal);
}

.pc-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1.5rem;
  border-radius: 1px;
}

.pc-tag.chaos {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 243, 239, 0.45);
}

.pc-tag.cert {
  background: rgba(0, 128, 128, 0.25);
  color: var(--teal-light);
}

.problem-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.problem-card.chaos h3 {
  opacity: 0.5;
}

.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pc-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 1.3rem;
  position: relative;
  color: rgba(245, 243, 239, 0.65);
  list-style: none;
}

.pc-list.chaos li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 0.75rem;
}

.pc-list.cert li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
}

/* VALUES SECTION */
.values-section {
  padding: 8rem 8%;
  background: var(--navy);
}

.values-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: end;
}

.values-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
}

.values-header h2 strong {
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.values-header p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 243, 239, 0.55);
}

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

.value-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem 2.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s, border-color 0.2s;
}

.value-card:hover {
  background: rgba(0, 128, 128, 0.08);
  border-color: var(--teal);
}

.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(245, 243, 239, 0.06);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.value-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(245, 243, 239, 0.5);
  line-height: 1.65;
}

/* FACTORY SECTION */
.factory-section {
  padding: 8rem 8%;
  background: var(--white);
}

.factory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.factory-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.factory-left h2 strong {
  font-weight: 700;
}

.factory-left p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.65;
  margin-bottom: 1.4rem;
}

.factory-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 2.5rem;
}

.factory-pillar {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.pillar-marker {
  background: var(--teal);
  width: 4px;
  flex-shrink: 0;
}

.pillar-body {
  background: var(--light-bg);
  padding: 1.4rem 1.8rem;
  flex: 1;
}

.pillar-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.pillar-detail {
  font-size: 0.83rem;
  color: var(--navy);
  opacity: 0.6;
  line-height: 1.5;
}

.factory-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.factory-cell {
  background: var(--navy);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.factory-cell:hover {
  background: rgba(0, 128, 128, 0.15);
}

.fc-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.fc-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.fc-detail {
  font-size: 0.78rem;
  color: rgba(245, 243, 239, 0.4);
  line-height: 1.4;
}

/* GEO SECTION */
.geo-section {
  padding: 8rem 8%;
  background: var(--light-bg);
}

.geo-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.geo-left h2 strong {
  font-weight: 700;
}

.geo-left p {
  font-size: 0.95rem;
  line-height: 1.75;
  opacity: 0.65;
  margin-bottom: 2.5rem;
}

.geo-market-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.geo-market-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.gm-flag {
  background: var(--navy);
  color: var(--teal);
  padding: 1rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-width: 140px;
}

.gm-flag.primary {
  background: var(--teal);
  color: var(--white);
}

.gm-detail {
  background: rgba(27, 43, 57, 0.06);
  padding: 1rem 1.5rem;
  flex: 1;
  font-size: 0.83rem;
  color: var(--navy);
  opacity: 0.65;
  line-height: 1.4;
}

/* DIVISIONS SECTION */
.divisions-section {
  padding: 7rem 8%;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.divisions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 128, 128, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 128, 128, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.divisions-section > * {
  position: relative;
  z-index: 1;
}

.div-header {
  margin-bottom: 3.5rem;
}

.div-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 560px;
}

.div-header h2 strong {
  font-weight: 700;
  color: var(--gold);
}

.div-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.div-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 2.5rem 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  display: block;
}

.div-card:hover {
  background: rgba(0, 128, 128, 0.08);
  border-top-color: var(--teal);
}

.div-card.d1 {
  border-top-width: 4px;
  border-top-color: var(--teal);
  background: rgba(0, 128, 128, 0.07);
}

.div-weight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(245, 243, 239, 0.07);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.div-num-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.7rem;
}

.div-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.div-card p {
  font-size: 0.82rem;
  color: rgba(245, 243, 239, 0.45);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.div-share {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
}

/* CTA CLOSE */
.cta-close {
  background: var(--navy);
  padding: 8rem 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 128, 128, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 128, 128, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-close > * {
  position: relative;
  z-index: 1;
}

.cta-close h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}

.cta-close h2 strong {
  font-weight: 700;
  color: var(--gold);
}

.cta-close p {
  font-size: 1rem;
  color: rgba(245, 243, 239, 0.5);
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-pair {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   PAGE-SPECIFIC: BOMA HOMES, COMPONENTS, FITOUTS
   ============================================= */

.hero-division-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: rgba(0, 128, 128, 0.15);
  border: 1px solid rgba(0, 128, 128, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 1px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

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

  .hero-right {
    display: none;
  }

  .ps-grid,
  .series-grid,
  .proof-grid,
  .geo-grid,
  .geo-right,
  .hero-grid,
  .story-grid,
  .problem-grid,
  .values-header,
  .factory-grid,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .div-grid,
  .factory-right {
    grid-template-columns: 1fr 1fr;
  }

  nav ul {
    display: none;
  }

  .certainty-strip {
    gap: 1.5rem;
  }
}
