:root {
  --forest: #1A3C34;
  --forest-mid: #2D5A4E;
  --beige: #FAF7F2;
  --tan: #E3D5CA;
  --rust: #A0522D;
  --rust-light: #C4733E;
  --gold: #C9A84C;
  --slate: #3A3A3A;
  --slate-mid: #6B6B6B;
  --slate-light: #9A9A9A;
  --white: #FEFEFE;
  --bg: #FCFBF9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--slate);
  overflow-x: hidden;
  cursor: auto;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--rust);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant', serif;
  font-weight: 400;
  line-height: 1;
}
.serif-italic { font-family: 'Cormorant', serif; font-style: italic; font-weight: 300; }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* NAV */
nav.floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 96%;
  max-width: 1500px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(227,213,202,0.4);
  border-radius: 16px;
  padding: 13px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
nav.floating.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--rust);
  white-space: nowrap;
}
.logo-icon {
  width: 22px;
  height: 22px;
  color: var(--forest);
}
.logo-img {
  height: 66px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: 'Cormorant', serif;
  font-size: 23px;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rust);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--rust); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--forest);
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.4s, transform 0.2s;
}
.nav-cta:hover { background: var(--rust); transform: translateY(-1px); }

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: white;
  z-index: 1050;
  padding: 80px 36px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  border-radius: 0 0 0 16px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--forest);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid var(--tan);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--rust); }
.mobile-menu-cta {
  margin-top: 32px;
  background: var(--forest);
  color: white !important;
  border: none;
  padding: 14px 28px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  border-bottom: none !important;
}
.mobile-menu-cta:hover { background: var(--rust) !important; }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
}
.mobile-menu-overlay.open { display: block; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 40px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(26,60,52,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 80% 80%, rgba(160,82,45,0.04) 0%, transparent 60%);
}
/* Animated organic shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatShape 20s ease-in-out infinite;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: rgba(26,60,52,0.05);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-shape-2 {
  width: 350px; height: 350px;
  background: rgba(160,82,45,0.04);
  bottom: 100px; left: -80px;
  animation-delay: -7s;
}
.hero-shape-3 {
  width: 250px; height: 250px;
  background: rgba(201,168,76,0.05);
  top: 40%; right: 20%;
  animation-delay: -14s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  text-align: center;
  padding-top: 60px;
}
.hero-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: var(--rust);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0;
}
.hero-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(40px, 6.4vw, 94px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.015em;
  color: var(--slate);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}
.hero-title .line-2 {
  display: block;
  color: var(--forest);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.025em;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--slate-mid);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
}
.btn-primary {
  background: var(--forest);
  color: white;
  padding: 20px 52px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }
.btn-outline {
  background: transparent;
  color: var(--forest);
  padding: 20px 52px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(26,60,52,0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn-outline:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards;
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--rust), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate-light);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Stats ticker strip */
.stats-strip {
  background: var(--forest);
  overflow: hidden;
  padding: 0;
  height: 52px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 60px;
}
.ticker-stat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.ticker-stat strong {
  color: var(--gold);
  font-size: 11px;
  margin-right: 8px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rust-light);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ABOUT SECTION */
.about {
  padding: 120px 60px;
  background: white;
}
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.divider {
  width: 80px;
  height: 3px;
  background: rgba(160,82,45,0.6);
  border-radius: 2px;
  margin: 0 auto 64px;
}
.about-headline {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.about-headline em {
  color: var(--rust);
  font-style: italic;
}
.about-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 60px;
}
/* Metrics row */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--tan);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 80px;
}
.metric-item {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid var(--tan);
  position: relative;
}
.metric-item:last-child { border-right: none; }
.metric-num {
  font-family: 'Cormorant', serif;
  font-size: 56px;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.metric-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
}

/* SERVICES SECTION */
.services {
  padding: 120px 60px;
  background: #F7F4EF;
  position: relative;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--slate);
  letter-spacing: -0.02em;
}
.section-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
  flex-shrink: 0;
  padding-bottom: 4px;
}
.section-link::after {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s;
}
.section-link:hover { color: var(--forest); }
.section-link:hover::after { width: 56px; }

/* Service staggered layout */
.service-block {
  max-width: 1400px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(1.05);
  transition: transform 1.2s ease, filter 0.6s ease;
}
.service-block:hover .service-image-wrap img {
  transform: scale(1.04);
  filter: grayscale(80%) brightness(1.08);
}
.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,52,0.12) 0%, transparent 60%);
}
.service-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: white;
  background: var(--forest);
  padding: 6px 14px;
  border-radius: 4px;
}

.service-content {}
.service-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 24px;
}
.service-title {
  font-size: clamp(36px, 3.5vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--slate);
}
.service-title em { color: var(--forest); font-style: italic; }
.service-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}
.service-list {
  border-left: 2px solid var(--tan);
  padding-left: 28px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-list li {
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--slate-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.3s;
}
.service-cta-line {
  width: 48px;
  height: 1px;
  background: var(--forest);
  transition: width 0.4s;
}
.service-cta:hover { color: var(--rust); }
.service-cta:hover .service-cta-line { width: 72px; background: var(--rust); }

/* PROCESS SECTION */
.process {
  padding: 120px 60px;
  background: white;
}
.process-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 80px;
  border: 1px solid var(--tan);
  border-radius: 12px;
  overflow: hidden;
}
.process-step {
  padding: 56px 40px;
  border-right: 1px solid var(--tan);
  position: relative;
  background: white;
  transition: background 0.4s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--forest); }
.step-num {
  font-family: 'Cormorant', serif;
  font-size: 64px;
  color: rgba(26,60,52,0.08);
  line-height: 1;
  margin-bottom: 32px;
  display: block;
  transition: color 0.4s;
}
.process-step:hover .step-num { color: rgba(255,255,255,0.08); }
.step-title {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  color: var(--slate);
  margin-bottom: 16px;
  transition: color 0.4s;
}
.process-step:hover .step-title { color: white; }
.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  transition: color 0.4s;
}
.process-step:hover .step-desc { color: rgba(255,255,255,0.6); }

/* REGULATORY TRACKER */
.regulatory {
  padding: 120px 60px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.reg-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    white 0px, white 1px,
    transparent 1px, transparent 60px
  );
}
.regulatory-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.regulatory .section-tag { color: var(--gold); }
.regulatory .section-title { color: white; }
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.reg-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 48px 36px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.reg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.reg-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-4px); }
.reg-card:hover::before { opacity: 1; }
.reg-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.reg-icon svg { width: 22px; height: 22px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.5; }
.reg-title {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  color: white;
  margin-bottom: 12px;
}
.reg-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.reg-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* INSIGHTS */
.insights {
  padding: 120px 60px;
  background: var(--bg);
}
.insights-inner { max-width: 1400px; margin: 0 auto; }
.insights-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.insight-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  transition: transform 0.4s, box-shadow 0.4s;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.insight-card-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.insight-img {
  overflow: hidden;
}
.insight-card-featured .insight-img { height: 320px; }
.insight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 1s ease, filter 0.5s;
}
.insight-card:hover .insight-img img {
  transform: scale(1.06);
  filter: grayscale(60%);
}
.insight-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
  display: block;
}
.insight-title {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.insight-card:hover .insight-title { color: var(--forest); }
.insight-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--slate-light);
}
.insight-meta span:first-child::after {
  content: '·';
  margin-left: 12px;
}

.insight-card-small .insight-img { height: 160px; }
.insight-card-small .insight-body { padding: 24px; }
.insight-card-small .insight-title { font-size: 18px; }

/* PARTNERS */
.partners {
  padding: 80px 60px;
  background: white;
  border-top: 1px solid var(--tan);
  border-bottom: 1px solid var(--tan);
}
.partners-inner { max-width: 1400px; margin: 0 auto; }
.partners-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-align: center;
  margin-bottom: 48px;
  display: block;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.partner-name {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  color: rgba(26,60,52,0.25);
  transition: color 0.3s;
  letter-spacing: -0.01em;
}
.partner-name:hover { color: var(--forest); }

/* CTA SECTION */
.cta-section {
  padding: 140px 60px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}
.cta-circle-1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-circle-2 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-circle-3 { width: 1200px; height: 1200px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-inner { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; }
.cta-heading {
  font-size: clamp(44px, 6vw, 88px);
  color: white;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 32px;
}
.cta-heading em { color: var(--tan); font-style: italic; font-weight: 300; }
.cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 60px;
  line-height: 1.65;
}
.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.btn-white {
  background: white;
  color: var(--forest);
  padding: 20px 52px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn-white:hover { background: var(--tan); }
.btn-ghost-white {
  background: transparent;
  color: white;
  padding: 20px 52px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* FOOTER */
footer {
  background: white;
  padding: 80px 60px 40px;
  border-top: 1px solid var(--tan);
}
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(227,213,202,0.4);
}
.footer-brand-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  margin: 20px 0 28px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--tan);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--forest); border-color: var(--forest); }
.footer-social a svg { width: 14px; height: 14px; fill: var(--slate-mid); transition: fill 0.3s; }
.footer-social a:hover svg { fill: white; }
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 28px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-mid);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--rust); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.footer-legal {
  display: flex;
  gap: 32px;
}
.footer-legal a {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--rust); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact panel overlay */
.contact-panel {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.contact-panel.open {
  pointer-events: all;
  opacity: 1;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,60,52,0.7);
  backdrop-filter: blur(8px);
}
.contact-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 520px;
  background: var(--beige);
  padding: 60px 52px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.contact-panel.open .contact-drawer {
  transform: translateX(0);
}
.contact-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--tan);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.contact-close:hover { background: var(--forest); border-color: var(--forest); }
.contact-close:hover svg { stroke: white; }
.contact-close svg { width: 16px; height: 16px; stroke: var(--slate); fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke 0.3s; }
.contact-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
  display: block;
}
.contact-heading {
  font-size: 40px;
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-mid);
}
.form-input, .form-select, .form-textarea {
  background: white;
  border: 1px solid var(--tan);
  border-radius: 6px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--slate);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  cursor: pointer;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26,60,52,0.06);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--forest);
  color: white;
  border: none;
  padding: 18px 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.4s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--rust); }
/* --- Modern Submit Button Styling --- */
.form-submit {
  /* Blue Gradient Background */
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 10px; /* Thoda rounded corners professional lagte hain */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth animation */
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
  width: 100%; /* Form ki width ke hisaab se adjust hoga */
  margin-top: 20px;
  display: block;
  text-align: center;
}

/* Hover Effect: Button thoda upar uthega aur chamkega */
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
  filter: brightness(1.1);
}

/* Active Effect: Click karte waqt thoda dabega */
.form-submit:active {
  transform: translateY(-1px);
}

/* Disabled State: Jab form submit ho raha ho (Sending...) */
.form-submit:disabled {
  background: #94a3b8 !important; /* Grey color */
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

/* =============================================
   RESPONSIVE SYSTEM — Full Multi-Breakpoint
   ============================================= */

/* --- TABLET LANDSCAPE: 900px – 1199px --- */
@media (max-width: 1199px) {
  .section-inner, .section-container { padding-left: 40px; padding-right: 40px; }
  .about { padding: 100px 40px; }
  .founders { padding: 100px 40px; }
  .expertise-section { padding: 100px 40px; }
  .core-beliefs { padding: 100px 40px; }
  .reflections { padding: 100px 40px; }
  .connect-section { padding: 100px 40px; }
}

/* --- TABLET PORTRAIT + HAMBURGER: ≤ 900px --- */
@media (max-width: 900px) {
  /* Hide desktop nav links, show hamburger */
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }

  /* Restore normal cursor on touch-likely devices */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none !important; }
  a, button { cursor: pointer; }

  /* Hero */
  .hero { padding: 120px 24px 80px; }
  .hero-title { font-size: clamp(34px, 9vw, 56px); }
  .hero-subtitle { font-size: 15px; }

  /* About */
  .about { padding: 80px 24px; }
  .about-inner { padding: 0; }
  .metrics-row { grid-template-columns: 1fr 1fr; }
  .metric-item { border-right: none; border-bottom: 1px solid var(--tan); }
  .metric-item:last-child { border-bottom: none; }
  .metric-item:nth-child(2) { border-right: none; }

  /* Services */
  .expertise-section { padding: 80px 24px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .service-img-wrap { max-height: 260px; }

  /* Founders */
  .founders { padding: 80px 24px; }
  .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders-duo-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Core Beliefs */
  .core-beliefs { padding: 80px 24px; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }

  /* Reflections */
  .reflections { padding: 80px 24px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card-featured { grid-row: span 1; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Connect */
  .connect-section { padding: 80px 24px; }
  .connect-title { font-size: clamp(36px, 8vw, 60px); }
}

/* --- MOBILE: ≤ 600px --- */
@media (max-width: 600px) {
  /* Nav */
  nav.floating { padding: 10px 16px; top: 12px; width: 94%; }
  .logo-img { height: 48px; }
  .logo-text { font-size: 18px; }
  .logo-tagline { display: none; }

  /* Mobile menu panel */
  .mobile-menu { width: 100%; border-radius: 0; }

  /* Hero */
  .hero { padding: 110px 20px 60px; }
  .hero-title { font-size: clamp(30px, 10vw, 44px); line-height: 1.1; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.18em; }
  .hero-subtitle { font-size: 14px; line-height: 1.65; }
  .hero-cta { padding: 14px 28px; font-size: 10px; }

  /* Sections padding */
  .about,
  .founders,
  .expertise-section,
  .core-beliefs,
  .reflections,
  .connect-section { padding: 64px 20px; }

  /* About metrics — single column */
  .metrics-row { grid-template-columns: 1fr; }
  .metric-item { border-right: none !important; }

  /* Section headings */
  .section-heading { font-size: clamp(28px, 8vw, 44px); line-height: 1.15; }
  .section-tag { font-size: 9px; }

  /* Services */
  .service-tag { font-size: 9px; }
  .service-heading { font-size: clamp(26px, 7vw, 38px); }
  .service-img-wrap { max-height: 200px; }

  /* Founders */
  .founders-duo-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo-wrap { width: 55%; }
  .founder-quote { font-size: 17px; line-height: 1.5; }

  /* Core Beliefs */
  .beliefs-grid { grid-template-columns: 1fr; }
  .belief-card { padding: 28px 24px; }

  /* Insights */
  .insight-card { min-height: auto; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { max-width: 100%; }

  /* Contact drawer */
  .contact-drawer { width: 100%; border-radius: 0; padding: 60px 24px 40px; }
  .form-input, .form-select, .form-textarea { font-size: 16px; } /* Prevent iOS zoom */

  /* CTA section */
  .connect-title { font-size: clamp(28px, 9vw, 48px); }
  .connect-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-connect { width: 100%; max-width: 280px; text-align: center; }
}

/* --- SMALL MOBILE: ≤ 380px --- */
@media (max-width: 380px) {
  .hero-title { font-size: 28px; }
  .section-heading { font-size: 26px; }
  .logo-img { height: 40px; }
  .logo-text { font-size: 16px; }
}

/* FOUNDER'S DESK */
.founders {
  padding: 120px 60px;
  background: white;
  border-top: 1px solid var(--tan);
}
.founders-inner { max-width: 1400px; margin: 0 auto; }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
}
.founders-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
.founders-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(1.05);
  transition: filter 0.6s ease, transform 1.2s ease;
}
.founders-img-wrap:hover img {
  filter: grayscale(60%);
  transform: scale(1.03);
}
.founders-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,60,52,0.5) 0%, transparent 50%);
}
.founders-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 6px;
}
.founders-img-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}
.founders-headline {
  font-family: 'Cormorant', serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--slate);
  margin-bottom: 32px;
}
.founders-headline em { color: var(--forest); font-style: italic; }
.founders-quote-mark {
  font-family: 'Cormorant', serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--tan);
  margin-bottom: 16px;
  display: block;
}
.founders-quote {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 28px;
  border-left: 3px solid var(--rust);
  padding-left: 24px;
}
.founders-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.founders-sig {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--tan);
}
.founders-sig-line {
  width: 48px;
  height: 2px;
  background: var(--rust);
  flex-shrink: 0;
}
.founders-sig-name {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
}
.founders-sig-title {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; gap: 48px; }
}


/* METRICS HEADLINE */
.metrics-headline {
  font-family: 'Cormorant', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* FOUNDER 2 — reversed grid */
.founders-grid-reverse {
  grid-template-columns: 1.3fr 1fr;
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--tan);
}
@media (max-width: 900px) {
  .founders-grid-reverse { grid-template-columns: 1fr; margin-top: 60px; padding-top: 60px; }
}


/* ═══ ARTICLE MODAL ═══════════════════════════════════════════════════ */
.article-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(26,60,52,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.article-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.article-modal {
  background: var(--beige);
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  overflow: hidden;
  transform: translateY(40px);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  margin: auto;
}
.article-modal-overlay.open .article-modal {
  transform: translateY(0);
}
.article-modal-hero {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
}
.article-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--tan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 10;
}
.article-modal-close:hover { background: var(--forest); border-color: var(--forest); }
.article-modal-close:hover svg { stroke: white; }
.article-modal-close svg { width: 16px; height: 16px; stroke: var(--slate); fill: none; stroke-width: 2; stroke-linecap: round; transition: stroke 0.3s; }
.article-modal-body {
  padding: 48px 56px 64px;
}
.article-modal-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 16px;
}
.article-modal-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.article-modal-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--slate-light);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--tan);
}
.article-modal-meta span + span::before { content: '·'; margin-right: 16px; }
.article-modal-content { color: var(--slate); }
.article-modal-content p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--slate-mid);
}
.article-modal-content h3 {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}
.article-modal-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  margin: 24px 0 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.article-modal-content strong { color: var(--slate); font-weight: 600; }
.article-modal-content ul {
  margin: 12px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-modal-content ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.7;
  list-style: disc;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 13px;
}
.article-table th {
  background: var(--forest);
  color: white;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--tan);
  color: var(--slate-mid);
  vertical-align: top;
  line-height: 1.6;
}
.article-table tr:nth-child(even) td { background: rgba(227,213,202,0.2); }
.article-disclaimer {
  margin-top: 36px;
  padding: 16px 20px;
  background: rgba(227,213,202,0.3);
  border-left: 3px solid var(--tan);
  border-radius: 4px;
  font-size: 12px;
  color: var(--slate-light);
  line-height: 1.7;
  font-style: italic;
}
.article-hashtags {
  margin-top: 28px;
  font-size: 12px;
  color: var(--rust);
  line-height: 1.8;
}
.article-modal-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--tan);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.article-modal-read-link:hover { color: var(--rust); border-color: var(--rust); }
@media (max-width: 700px) {
  .article-modal-body { padding: 32px 24px 48px; }
  .article-modal-hero { height: 200px; }
}


.insight-read-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--tan);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.insight-card:hover .insight-read-link {
  color: var(--rust);
  border-color: var(--rust);
}


/* ═══ FOUNDERS DUO LAYOUT ═══════════════════════════════════════════ */
.founders-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.founders-section-tag {
  font-size: 13px !important;  /* Task 2: 10px * 1.3 = 13px */
  margin-bottom: 20px !important;
}
.founders-divider {
  width: 80px;
  height: 3px;
  background: rgba(160,82,45,0.5);
  border-radius: 2px;
  margin: 0 auto;
}
.founders-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.founder-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.founder-photo-wrap {
  position: relative;
  width: 50%;            /* Task 1: 50% of column = half size */
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) brightness(1.05);
  transition: filter 0.6s ease, transform 1.2s ease;
}
.founder-photo-wrap:hover img {
  filter: grayscale(50%);
  transform: scale(1.04);
}
.founder-card-content {
  flex: 1;
}
@media (max-width: 900px) {
  .founders-duo-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo-wrap { width: 60%; }
}


.ticker-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.ticker-link:hover .ticker-stat { opacity: 0.75; }
.ticker-link:hover strong { color: white !important; }


/* ═══ UPDATED FOUNDERS LAYOUT ═══════════════════════════════════════ */
.founder-photo-wrap {
  position: relative;
  width: 55%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
  transition: transform 0.6s ease;
}
.founder-photo-wrap:hover img { transform: scale(1.04); }
.founder-photo-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,60,52,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 8px;
}
.founder-photo-wrap:hover .founder-photo-hover-overlay { opacity: 1; }
.founder-view-profile {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 20px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.founder-name-block {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tan);
}
.founder-name-display {
  display: block;
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.founder-title-display {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
}

/* ═══ PROFILE POPUP MODAL ════════════════════════════════════════════ */
.profile-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(26,60,52,0.75);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.profile-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.profile-modal {
  background: var(--beige);
  width: 100%;
  max-width: 680px;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.profile-modal-overlay.open .profile-modal { transform: scale(1) translateY(0); }
.profile-modal-top {
  background: var(--forest);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.profile-modal-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.profile-modal-header-text {}
.profile-modal-name {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 400;
  color: white;
  display: block;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.profile-modal-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.profile-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.profile-modal-close:hover { background: rgba(255,255,255,0.3); }
.profile-modal-close svg { width: 14px; height: 14px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; }
.profile-modal-body {
  padding: 36px 40px 44px;
  overflow-y: auto;
  max-height: 60vh;
}
.profile-modal-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.profile-modal-body p:last-child { margin-bottom: 0; }
.profile-modal-body strong { color: var(--slate); font-weight: 500; }
@media (max-width: 700px) {
  .profile-modal-top { flex-direction: column; text-align: center; padding: 28px 24px; }
  .profile-modal-body { padding: 24px; }
}


/* ═══ CORE BELIEFS SECTION ═══════════════════════════════════════════ */
.core-beliefs-section {
  padding: 120px 60px;
  background: #F7F4EF;
  position: relative;
}
.cb-inner { max-width: 1400px; margin: 0 auto; }
.cb-header {
  text-align: center;
  margin-bottom: 64px;
}
.cb-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--slate);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cb-title em { color: var(--forest); font-style: italic; }
.cb-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--slate-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}
.cb-purpose-banner {
  background: var(--forest);
  border-radius: 12px;
  padding: 40px 52px;
  margin-bottom: 64px;
}
.cb-purpose-inner {}
.cb-purpose-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.cb-purpose-text {
  font-family: 'Cormorant', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
.cb-purpose-text em { color: var(--gold); font-style: normal; font-weight: 400; }
.cb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.cb-card {
  background: white;
  border-radius: 10px;
  padding: 44px 40px;
  border: 1px solid var(--tan);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.cb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--forest);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.cb-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.cb-card:hover::before { transform: scaleY(1); }
.cb-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,60,52,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.cb-card:hover .cb-card-icon { background: var(--forest); }
.cb-card-icon svg {
  width: 22px; height: 22px;
  color: var(--forest);
  transition: color 0.3s;
}
.cb-card:hover .cb-card-icon svg { color: white; }
.cb-card-title {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cb-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.cb-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  border-top: 1px solid var(--tan);
  padding-top: 16px;
}
.cb-card-list li {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.cb-card-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--rust);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.cb-vision {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--tan);
  padding: 52px 60px;
  text-align: center;
}
.cb-vision-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 20px;
}
.cb-vision-quote {
  font-family: 'Cormorant', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  border: none;
  padding: 0;
  margin: 0;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cb-grid { grid-template-columns: 1fr; }
  .cb-purpose-banner { padding: 28px 24px; }
  .cb-vision { padding: 36px 24px; }
}
/* --- Mobile Responsive Fix for Methodology Section --- */
@media screen and (max-width: 900px) {
  .process-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Tablet par 2 columns */
    gap: 30px;
  }
}

@media screen and (max-width: 600px) {
  .process-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* Mobile par 1 column (ek ke niche ek) */
    gap: 24px;
  }
  .process-step {
    width: 100% !important;
    padding: 20px !important;
  }
}
/* --- Dropdown Menu For Desktop --- */
.nav-links li.dropdown {
  position: relative;
  padding: 10px 0; /* Creates a bridge so menu doesn't close when moving mouse down */
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(26,60,52,0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  z-index: 1000;
}

/* Hover animation */
.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

/* Dropdown Links */
.dropdown-menu li a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 10px !important;
  color: var(--slate-mid) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.dropdown-menu li a::after {
  display: none; /* Hides original underline animation */
}

.dropdown-menu li a:hover {
  background: #EAF1EF; /* Forest pale color */
  color: #1A3C34 !important; /* Forest color */
}
/* --- Cookie Consent Banner Styles --- */
.cookie-banner {
  position: fixed;
  bottom: -150px; /* Initially screen ke niche chhupa rahega */
  left: 0;
  right: 0;
  background: rgba(26, 60, 52, 0.95); /* Bodhi Hub Dark Green */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); /* Smooth slide up animation */
}

.cookie-banner.show {
  bottom: 0; /* JS trigger karne par upar aayega */
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 70%;
}

.cookie-icon {
  font-size: 28px;
}

.cookie-content p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-cookie-accept {
  background: #C9A84C; /* Bodhi Hub Gold */
  color: #1A3C34;
  border: none;
  padding: 12px 30px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-weight: 700;
  transition: background 0.3s;
}

.btn-cookie-accept:hover {
  background: #D9B85C;
}

.btn-cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 30px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-cookie-decline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }
  .cookie-content {
    max-width: 100%;
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}