/* ============================================================
   TERRAIN AUTOMOTIVE — Corporate Theme CSS v2.0
   Brand: Navy #01016F | Red #CC0000 | White #FFFFFF
   ============================================================ */

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

:root {
  --navy:       #01016F;
  --navy-dark:  #000050;
  --navy-mid:   #020285;
  --red:        #CC0000;
  --red-dark:   #A00000;
  --white:      #FFFFFF;
  --off-white:  #F8F8F8;
  --light-grey: #F2F2F2;
  --mid-grey:   #E0E0E0;
  --text-grey:  #555555;
  --dark-text:  #1A1A1A;
  --sans:       'Inter', 'Helvetica Neue', Arial, sans-serif;
  --serif:      'Georgia', 'Times New Roman', serif;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CUSTOM CURSOR ── */
/* Uses mix-blend-mode: exclusion so it always contrasts with ANY background */
.t-cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: exclusion;
  transition: width 0.15s ease, height 0.15s ease;
  will-change: transform, left, top;
}
.t-cursor.is-hover {
  width: 48px; height: 48px;
}
.t-cursor-ring {
  /* Ring is separate, no blend mode — uses a visible stroke on all BGs */
  position: fixed;
  width: 36px; height: 36px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  will-change: left, top;
  /* Two-layer border trick: dark ring + white ring stacked via box-shadow */
  border: 1.5px solid rgba(1, 1, 111, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}
.t-cursor-ring.is-hover {
  width: 52px; height: 52px;
  opacity: 0.9;
  border-color: rgba(204, 0, 0, 0.7);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Hide system cursor on EVERYTHING without exception */
html, html * { cursor: none !important; }

/* ── TOP ANNOUNCEMENT BAR ── */
.t-topbar {
  background: var(--navy);
  padding: 8px 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.t-topbar a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.t-topbar a:hover { color: var(--white); }
.t-topbar-divider {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.2);
}

/* ── NAVIGATION ── */
nav.t-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--mid-grey);
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: var(--nav-height);
  gap: 0;
  transition: box-shadow 0.3s;
}
nav.t-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.t-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 48px;
}
.t-nav-logo svg { height: 48px; width: auto; }

.t-nav-items {
  display: flex;
  align-items: center;
  list-style: none;
  flex: 1;
  gap: 0;
}
.t-nav-item {
  position: relative;
}
.t-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  height: var(--nav-height);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.t-nav-link:hover,
.t-nav-item.active > .t-nav-link {
  color: var(--navy);
  border-bottom-color: var(--red);
}
.t-nav-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.t-nav-item:hover .t-nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.t-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-top: 3px solid var(--navy);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 600;
}
.t-nav-item:hover .t-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.t-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-grey);
  text-decoration: none;
  border-bottom: 1px solid var(--light-grey);
  transition: all 0.15s;
}
.t-dropdown a:last-child { border-bottom: none; }
.t-dropdown a:hover {
  background: var(--light-grey);
  color: var(--navy);
  padding-left: 28px;
}

/* Portal CTA in nav */
.t-nav-portal {
  margin-left: auto;
  padding: 10px 24px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
  border-bottom: 3px solid transparent !important;
}
.t-nav-portal:hover {
  background: var(--red) !important;
  border-bottom-color: transparent !important;
  color: var(--white) !important;
}

/* Mobile Hamburger */
.t-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.t-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ── HERO ── */
.t-hero {
  background: var(--navy-dark);
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.t-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.t-hero-bg-pattern {
  position: absolute;
  right: -5%;
  top: 0;
  width: 65%;
  height: 100%;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: linear-gradient(135deg, #010160 0%, #01016F 40%, #020285 100%);
  opacity: 0.5;
}
.t-hero-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.t-hero-diagonal {
  position: absolute;
  right: 40%;
  top: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--navy-dark) 0%, transparent 100%);
  z-index: 2;
}

.t-hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 60px 80px 80px;
  max-width: 700px;
}
.t-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  opacity: 0;
  animation: tFadeUp 0.8s 0.2s forwards;
}
.t-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
}
.t-hero-headline {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: tFadeUp 0.8s 0.35s forwards;
}
.t-hero-headline span {
  color: var(--red);
  font-style: italic;
}
.t-hero-tagline {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 520px;
  opacity: 0;
  animation: tFadeUp 0.8s 0.5s forwards;
}
.t-hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: tFadeUp 0.8s 0.65s forwards;
}
.t-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.25s;
}
.t-btn-primary:hover {
  background: transparent;
  color: var(--white);
}
.t-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}
.t-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.t-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: rgba(1,1,50,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  opacity: 0;
  animation: tFadeUp 0.8s 0.9s forwards;
}
.t-hero-stat {
  flex: 1;
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.t-hero-stat:last-child { border-right: none; }
.t-hero-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.t-hero-stat-num span { color: var(--red); }
.t-hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

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

/* ── MARQUEE TICKER ── */
.t-ticker {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
}
.t-ticker-track {
  display: flex;
  animation: tMarquee 22s linear infinite;
  white-space: nowrap;
}
.t-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}
.t-ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
.t-section {
  padding: 100px 80px;
}
.t-section-sm { padding: 60px 80px; }
.t-section-alt { background: var(--light-grey); }
.t-section-navy {
  background: var(--navy);
  color: var(--white);
}
.t-section-dark {
  background: var(--navy-dark);
  color: var(--white);
}
.t-container {
  max-width: 1320px;
  margin: 0 auto;
}
.t-section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.t-section-label::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.t-section-heading {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.t-section-navy .t-section-heading,
.t-section-dark .t-section-heading {
  color: var(--white);
}
.t-section-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-grey);
  max-width: 620px;
  margin-bottom: 56px;
}
.t-section-navy .t-section-sub,
.t-section-dark .t-section-sub {
  color: rgba(255,255,255,0.65);
}

/* ── ABOUT SECTION ── */
.t-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.t-about-visual {
  position: relative;
}
.t-about-video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-about-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,1,111,0.7) 0%, rgba(1,1,50,0.9) 100%);
}
.t-about-play-btn {
  position: relative;
  z-index: 2;
  width: 72px; height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.t-about-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(204,0,0,0.4);
}
.t-play-icon {
  width: 0; height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--white);
  margin-left: 4px;
}
.t-about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 80px; height: 80px;
  background: var(--red);
  z-index: -1;
}
.t-about-tagline-box {
  border-left: 4px solid var(--red);
  padding: 20px 28px;
  margin-top: 48px;
  background: var(--light-grey);
}
.t-about-tagline-box p {
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

/* ── TRADITION & INNOVATION SECTION ── */
.t-tradition-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  align-items: stretch;
}
.t-tradition-left {
  background: var(--navy);
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.t-tradition-left::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.04);
}
.t-tradition-left .t-section-heading { font-size: 36px; }
.t-tradition-right {
  padding: 60px 60px 60px 72px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-left: none;
}
.t-tradition-right p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-grey);
  margin-bottom: 20px;
}
.t-tradition-right p:last-child { margin-bottom: 0; }
.t-tradition-picture {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light-grey);
  margin-top: 36px;
  border: 2px dashed var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CORPORATE GOVERNANCE ── */
.t-governance-intro {
  max-width: 820px;
  margin-bottom: 64px;
}
.t-governance-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-grey);
  margin-bottom: 16px;
}

/* ── FOUNDER CARD ── */
.t-founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  margin-bottom: 2px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.t-founder-card:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 24px rgba(1,1,111,0.08);
}
.t-founder-portrait {
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.t-founder-portrait-placeholder {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px dashed var(--mid-grey);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-founder-portrait-placeholder svg {
  width: 48px; height: 48px;
  fill: var(--mid-grey);
}
.t-founder-info {
  padding: 48px 52px;
}
.t-founder-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.t-founder-role {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-grey);
}
.t-founder-bio p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-grey);
  margin-bottom: 14px;
}
.t-founder-bio p:last-child { margin-bottom: 0; }

/* ── PILLARS / MISSION CARDS ── */
.t-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.t-pillar {
  background: var(--white);
  padding: 48px 36px;
  border-top: 4px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.t-pillar:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1,1,111,0.1);
}
.t-pillar-num {
  font-size: 64px;
  font-weight: 800;
  color: rgba(1,1,111,0.05);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.t-pillar-icon {
  width: 48px; height: 3px;
  background: var(--navy);
  margin-bottom: 24px;
}
.t-pillar-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.t-pillar-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-grey);
}

/* ── QUOTE BAND ── */
.t-quote-band {
  background: var(--navy);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.t-quote-band::before,
.t-quote-band::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.t-quote-band::before {
  width: 600px; height: 600px;
  top: -300px; left: -150px;
}
.t-quote-band::after {
  width: 400px; height: 400px;
  bottom: -200px; right: -100px;
}
.t-quote-text {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.t-quote-text em { color: var(--red); font-style: normal; font-weight: 700; }
.t-quote-source {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}

/* ── CONTACT / FOOTER SECTION ── */
.t-footer-main {
  background: var(--navy-dark);
  padding: 80px 80px 48px;
}
.t-footer-grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.t-footer-logo-col .t-footer-logo {
  display: block;
  margin-bottom: 20px;
}
.t-footer-logo svg { height: 52px; width: auto; }
.t-footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.t-footer-address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
.t-footer-address strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 8px;
  margin-top: 20px;
}
.t-footer-address:first-of-type strong { margin-top: 0; }

.t-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.t-footer-col ul { list-style: none; }
.t-footer-col ul li { margin-bottom: 10px; }
.t-footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.t-footer-col ul li a:hover { color: var(--white); }

.t-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.t-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.t-footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}
.t-footer-legal li a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.t-footer-legal li a:hover { color: rgba(255,255,255,0.7); }

.t-footer-social {
  display: flex;
  gap: 12px;
}
.t-footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.t-footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.t-footer-cin {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: right;
  margin-top: 12px;
}

/* ── REVEAL ANIMATIONS ── */
.t-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.t-reveal.t-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .t-section { padding: 80px 40px; }
  .t-section-sm { padding: 48px 40px; }
  .t-footer-main { padding: 60px 40px 40px; }
  .t-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .t-pillars-grid { grid-template-columns: 1fr 1fr; }
  nav.t-nav { padding: 0 24px; }
  .t-topbar { padding: 8px 24px; }
}
@media (max-width: 800px) {
  .t-section { padding: 60px 24px; }
  .t-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .t-tradition-grid { grid-template-columns: 1fr; }
  .t-founder-card { grid-template-columns: 1fr; }
  .t-founder-portrait { min-height: 200px; }
  .t-footer-grid { grid-template-columns: 1fr; }
  .t-pillars-grid { grid-template-columns: 1fr; }
  .t-hero-content { padding: 60px 24px; }
  .t-hero-stats { position: relative; }
  .t-nav-items, .t-nav-portal { display: none; }
  .t-hamburger { display: flex; }
  .t-topbar { display: none; }
  .t-quote-band { padding: 60px 24px; }
}

/* ── WORDPRESS CONTENT COMPATIBILITY ── */
.t-wp-content {
  padding: 80px;
  max-width: 1320px;
  margin: 0 auto;
}
.t-wp-content .entry-content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-grey);
}
.t-wp-content .entry-content h2,
.t-wp-content .entry-content h3 {
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}
