/* =============================================
   CLEAR GLOBAL — Institutional CSS
   ============================================= */

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

/* Fonts — self-hosted */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-normal-300.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-normal-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-normal-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-normal-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/inter-normal-700.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/eb-garamond-normal-400.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/eb-garamond-italic-400.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/eb-garamond-normal-500.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/eb-garamond-italic-500.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/eb-garamond-normal-600.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 600; font-display: swap; src: url('../fonts/eb-garamond-italic-600.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/eb-garamond-normal-700.woff2') format('woff2'); }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 700; font-display: swap; src: url('../fonts/eb-garamond-italic-700.woff2') format('woff2'); }

:root {
  --primary: #1B2A4A;
  --primary-light: #2C4470;
  --dark: #111827;
  --dark-gray: #1F2937;
  --mid-gray: #374151;
  --secondary-gray: #6B7280;
  --light-gray: #9CA3AF;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --gold: #B8973A;
  --gold-light: #D4AF5A;
  --white: #FFFFFF;
  --black: #000000;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --max-width: 1080px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--dark-gray);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =============================================
   SCROLL-TRIGGERED FADE-IN ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 100%;
}

.logo img {
  height: 36px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 22px;
  align-items: center;
  white-space: nowrap;
}

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid-gray);
  position: relative;
  padding-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

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

/* Active nav state */
.main-nav a[aria-current="page"] {
  color: var(--primary);
}

.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.side-menu-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark-gray);
  margin: 5px 0;
  transition: 0.3s;
}

/* Side menu */
.side-menu-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.side-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: -380px;
  width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 70px 40px;
  overflow-y: auto;
}

.side-menu.active { right: 0; }

.side-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--mid-gray);
}

.side-menu-nav a {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-gray);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: 0.3px;
}

.side-menu-nav a:hover {
  color: var(--primary);
  padding-left: 8px;
}

/* =============================================
   HERO SECTION (homepage)
   ============================================= */
.hero {
  position: relative;
  height: 47vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0f1a2e 0%, #111827 40%, #1B2A4A 100%);
}

.hero-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* grid pattern handled by SVG only */

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  transform: translateY(-15px);
  padding: 0 40px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.hero-content .hero-descriptor {
  font-size: 15px;
  line-height: 1.9;
  margin-top: 28px;
  opacity: 0.78;
  font-weight: 300;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto 0;
  opacity: 0.6;
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-hero {
  position: relative;
  height: 47vh;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  background-color: var(--dark);
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.page-hero-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 40px;
  transform: translateY(-15px);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.page-hero p {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.85;
  font-weight: 300;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 56px 40px;
}

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

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

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

/* Opening / lead paragraph — larger serif */
.section-lead {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.7;
  color: var(--dark-gray);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-lead + .section-text {
  margin-top: 24px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--dark);
  letter-spacing: 0.2px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-subheading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--dark);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-text {
  font-size: 15px;
  line-height: 1.85;
  max-width: 760px;
  color: var(--mid-gray);
  margin-left: auto;
  margin-right: auto;
}

.section-text + .section-text {
  margin-top: 18px;
}

/* Divider line */
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 48px auto;
}

/* Statement / pull quote */
.section-statement {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--primary);
  max-width: 640px;
  margin: 40px auto;
  text-align: center;
}

/* Left-border accent for emphasis sections */
.section-accented {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Pathway cards (homepage) */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.pathway-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.pathway-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.pathway-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}

.pathway-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--secondary-gray);
  margin-bottom: 20px;
}

.pathway-card .pathway-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.pathway-card:hover .pathway-link {
  gap: 10px;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col img {
  border-radius: 2px;
}

/* Project cards */
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.project-card {
  overflow: hidden;
  border-radius: 2px;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.02);
}

.project-card-info {
  padding: 6px 0 0;
}

.project-card-info h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.project-card-info p {
  font-size: 13px;
  color: var(--secondary-gray);
  margin-top: 0;
  line-height: 1.4;
}

/* =============================================
   CONTACT — TWO COLUMN LAYOUT
   ============================================= */
.contact-layout {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-col {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.contact-info-col h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
}

.contact-info-item {
  margin-bottom: 24px;
}

.contact-info-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid-gray);
}

.contact-info-item .contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-gray);
  margin-bottom: 6px;
}

/* =============================================
   VAULTS-SPECIFIC STYLES
   ============================================= */
.vaults-opening {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.8;
  color: var(--dark-gray);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.vaults-cta {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.3px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Vaults hero with subtle pattern */
.vaults-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.vaults-hero-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  color: var(--mid-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-primary);
  font-size: 14px;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 40px 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.footer-col p,
.footer-col a {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover { color: var(--white); }

.footer-col .icon {
  display: inline-block;
  margin-right: 8px;
  width: 14px;
  text-align: center;
  font-size: 11px;
}

.footer-nav a {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0;
  transition: color 0.2s;
}

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

.footer-qualifying {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.3px;
}

.footer-copyright {
  text-align: center;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   TATIBAH PAGE
   ============================================= */

/* Slideshow hero */
.tatibah-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tatibah-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tatibah-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.tatibah-slideshow img.active {
  opacity: 1;
}

.tatibah-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.65) 100%);
}

.tatibah-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 40px 20px;
}

.tatibah-logo-hero {
  max-width: 453px;
  margin: 0 auto;
}

.tatibah-hero-content h1 {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 28px;
}

.tatibah-hero-content .hero-desc {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--dark-gray);
  line-height: 1.8;
  text-align: justify;
}

.tatibah-hero-content .hero-label {
  text-align: center;
  font-style: italic;
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--secondary-gray);
  margin-top: 28px;
  text-transform: uppercase;
}

/* Stats row in hero */
.tatibah-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.tatibah-stat {
  text-align: center;
  padding: 20px 12px;
  border: 3px solid var(--dark-gray);
  border-right-width: 1.5px;
}

.tatibah-stat:last-child {
  border-right-width: 3px;
}

.tatibah-stat .number {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}

.tatibah-stat .number.accent {
  color: #DE762C;
}

.tatibah-stat .label {
  font-size: 13px;
  color: var(--secondary-gray);
  margin-top: 2px;
}

.tatibah-cert {
  text-align: center;
  font-size: 11px;
  color: var(--secondary-gray);
  letter-spacing: 1.5px;
  margin-top: 18px;
  text-transform: uppercase;
}

/* Tatibah CTA banner (orange) */
.tatibah-cta {
  background: #DE762C;
  padding: 72px 40px;
}

.tatibah-cta .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.tatibah-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* Tatibah dark closing band */
.tatibah-dark {
  background: #0A0A0A;
  padding: 72px 40px;
}

.tatibah-dark .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.tatibah-dark h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* Tatibah closing logos section */
.tatibah-closing {
  padding: 72px 40px;
}

.tatibah-closing .container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.tatibah-logo-closing {
  max-width: 220px;
  display: block;
  margin: 0 auto;
}

.tatibah-closing .closing-label {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--dark-gray);
  margin-top: 14px;
  letter-spacing: 0.3px;
}

.tatibah-closing .csa-col {
  border-left: 1px solid var(--border);
  padding-left: 48px;
  text-align: center;
}

.tatibah-closing .csa-logo {
  max-width: 56px;
  margin: 0 auto;
}

.tatibah-closing .csa-label {
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--dark-gray);
  margin-top: 14px;
  letter-spacing: 0.3px;
}

/* Tatibah header variant */
.tatibah-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tatibah-cg-icon {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
}

.tatibah-cg-icon img {
  height: 35px;
  width: auto;
}

/* Tatibah scroll arrow (bouncing chevron) */
.tatibah-scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #DE762C;
  font-size: 62px;
  text-decoration: none;
  animation: tatibahBounce 2s ease infinite;
}

.tatibah-scroll-arrow:hover {
  color: #c5641f;
}

@keyframes tatibahBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-14px); }
  60% { transform: translateX(-50%) translateY(-7px); }
}

/* Tatibah "Per Production Line" label */
.tatibah-hero-label {
  text-align: center;
  font-style: italic;
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--secondary-gray);
  margin-top: 28px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* Tatibah footer override */
.tatibah-footer {
  background: var(--black);
}

.tatibah-footer .footer-inner {
  grid-template-columns: 1fr;
  gap: 24px;
}

.tatibah-footer .footer-logo img {
  height: auto;
}

/* Tatibah responsive */
@media (max-width: 800px) {
  .tatibah-hero { min-height: 75vh; }
  .tatibah-logo-hero { max-width: 220px; }
  .tatibah-slideshow img { object-position: center center; }
  .tatibah-hero-overlay { background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.35) 100%); }
  .tatibah-scroll-arrow { bottom: 18px; font-size: 32px; }
  .tatibah-hero-content h1 { font-size: 32px; }
  .tatibah-hero-content .hero-desc { font-size: 15px; }
  .tatibah-stats { grid-template-columns: 1fr; }
  .tatibah-stat { border-width: 2px; border-right-width: 2px; }
  .tatibah-cta { padding: 48px 20px; }
  .tatibah-cta h2 { font-size: 22px; }
  .tatibah-dark { padding: 48px 20px; }
  .tatibah-dark h2 { font-size: 22px; }
  .tatibah-closing .container { grid-template-columns: 1fr; }
  .tatibah-closing .csa-col { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 32px; }
  .tatibah-cg-icon { margin-right: 8px; }
  .tatibah-cg-icon img { height: 28px; }
}

/* =============================================
   PAD PRODUCT SECTIONS (thePAD on Tatibah)
   ============================================= */
.pad-section {
  padding: 80px 40px;
}

.pad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pad-image img {
  max-height: 500px;
  margin: 0 auto;
}

.pad-render img {
  max-height: 200px;
  margin-bottom: 20px;
}

.pad-info h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pad-info p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pad-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .contact-layout { max-width: 100%; }
}

@media (max-width: 900px) {
  .main-nav ul { gap: 14px; }
  .main-nav a { font-size: 12px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; }
  .hero-content h1 { font-size: 34px; }
  .hero-content .hero-descriptor { font-size: 14px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero { height: 260px; }
  .hero { height: 260px; }




  .section { padding: 40px 20px; }
  .pad-section { padding: 60px 20px; }
  .section-heading { font-size: 26px; }
  .section-lead { font-size: 21px; }

  .project-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .side-menu { width: 100%; right: -100%; }

  .stat-grid { grid-template-columns: 1fr; }
}
