/* ============================================================
   ABOUT.CSS — Khajurbhai Singtel
   Aesthetic: Luxury Editorial · Cinematic · Warm-Earth Heritage
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=Cormorant:wght@300;400;500&display=swap');

/* ── Tokens ───────────────────────────────────────────────────── */
:root {
  --ink:        #0F0A04;
  --ink-soft:   #2C1F0E;
  --gold:       #C9973A;
  --gold-light: #E8C06A;
  --gold-pale:  #FBF0D8;
  --cream:      #FDF8F0;
  --cream-dark: #F2EAD8;
  --rust:       #8B3A1A;
  --rust-light: #C05830;
  --stone:      #9A8E7E;
  --stone-light:#D4C8B8;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-label:   'Cormorant', Georgia, serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay on entire page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ── Utility ──────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.left::before { display: none; }
.eyebrow.left::after  { display: none; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #1A0B02 0%, #2E1406 35%, #0F0804 100%);
}

/* Animated gold orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,58,0.18), transparent 70%);
  top: -100px; right: -50px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(139,58,26,0.15), transparent 70%);
  bottom: 50px; left: -80px;
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Decorative lines grid */
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,151,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,151,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 96px;
  max-width: 900px;
}

.hero-label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s both;
}
.hero-label::before {
  content: '';
  width: 48px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(64px, 9vw, 128px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #F8EDD8;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-lead {
  font-size: 18px;
  font-weight: 300;
  color: rgba(248,237,216,0.65);
  max-width: 560px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.6s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1s both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,237,216,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,151,58,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* Stats bar floating over hero */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(15,10,4,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,151,58,0.15);
}
.stat-item {
  padding: 28px 40px;
  border-right: 1px solid rgba(201,151,58,0.1);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) both;
}
.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 0.95s; }
.stat-item:nth-child(3) { animation-delay: 1.1s; border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(248,237,216,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERITAGE ─────────────────────────────────────────────────── */
.heritage {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.heritage::before {
  content: '75';
  position: absolute;
  top: 60px; right: -20px;
  font-family: var(--ff-display);
  font-size: 300px;
  font-weight: 700;
  color: rgba(201,151,58,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.heritage-image-wrap {
  position: relative;
}
.heritage-img-frame {
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.heritage-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15,10,4,0.3));
}

/* Offset accent frame */
.heritage-img-accent {
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 1px solid var(--gold);
  opacity: 0.3;
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

.heritage-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(201,151,58,0.4);
}
.heritage-badge-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.heritage-badge-txt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}

.heritage-content {}
.heritage-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.heritage-content h2 em {
  font-style: italic;
  color: var(--rust);
}
.heritage-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 20px;
}
.heritage-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 28px 0;
}
.heritage-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: var(--ink);
  color: var(--gold-pale);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.heritage-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
  z-index: 0;
}
.heritage-cta:hover { color: var(--ink); }
.heritage-cta:hover::before { transform: translateX(0); }
.heritage-cta span { position: relative; z-index: 1; }
.heritage-cta svg { position: relative; z-index: 1; transition: transform 0.3s; }
.heritage-cta:hover svg { transform: translateX(4px); }

/* ── VALUES ───────────────────────────────────────────────────── */
.values-section {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.values-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.values-bg-text {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 240px;
  font-weight: 700;
  color: rgba(201,151,58,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.values-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #F8EDD8;
  margin-bottom: 16px;
  margin-top: 12px;
}
.values-header p {
  font-size: 15px;
  color: rgba(248,237,216,0.45);
  font-weight: 300;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,151,58,0.1);
  border: 1px solid rgba(201,151,58,0.1);
  position: relative;
  z-index: 1;
}
.value-card {
  background: rgba(15,10,4,0.85);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out-expo);
  cursor: default;
}
.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--rust));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.value-card:hover { background: rgba(201,151,58,0.06); }
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 52px; height: 52px;
  background: rgba(201,151,58,0.12);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease-out-expo);
}
.value-card:hover .value-icon {
  background: rgba(201,151,58,0.2);
  border-color: rgba(201,151,58,0.5);
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.value-number {
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(201,151,58,0.06);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.value-card:hover .value-number { color: rgba(201,151,58,0.1); }

.value-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 500;
  color: #F8EDD8;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(248,237,216,0.5);
  line-height: 1.8;
}

/* ── TIMELINE ─────────────────────────────────────────────────── */
.timeline-section {
  padding: 140px 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.timeline-header {
  text-align: center;
  margin-bottom: 100px;
}
.timeline-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 12px;
}
.timeline-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.timeline-header p { font-size: 15px; color: var(--stone); font-weight: 300; }

/* Horizontal timeline */
.timeline-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 24px;
  scrollbar-width: none;
}
.timeline-track::-webkit-scrollbar { display: none; }

/* Spine line */
.timeline-spine {
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--stone-light) 10%, var(--stone-light) 90%, transparent);
}

.timeline-node {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  position: relative;
}

.timeline-dot-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}
.timeline-dot {
  width: 56px; height: 56px;
  background: var(--cream-dark);
  border: 2px solid var(--stone-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}
.timeline-dot.featured {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,151,58,0.12);
}
.timeline-dot svg { width: 20px; height: 20px; stroke: var(--stone); fill: none; stroke-width: 1.8; }
.timeline-dot.featured svg { stroke: var(--ink); }

.timeline-card {
  background: #fff;
  border: 1px solid var(--stone-light);
  border-radius: 0;
  padding: 28px 24px;
  margin: 0 12px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.timeline-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.timeline-node:hover .timeline-card::before { transform: scaleX(1); }
.timeline-node:hover .timeline-card { box-shadow: 0 12px 40px rgba(15,10,4,0.1); transform: translateY(-4px); }
.timeline-node:hover .timeline-dot { border-color: var(--gold); background: var(--gold-pale); }

.timeline-year {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.timeline-title {
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.timeline-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.75;
  font-weight: 300;
}

/* ── TEAM ─────────────────────────────────────────────────────── */
.team-section {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.team-header {
  margin-bottom: 80px;
}
.team-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 12px;
  max-width: 560px;
}
.team-header h2 em { font-style: italic; color: var(--rust); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  transition: transform 0.8s var(--ease-out-expo);
}
.team-card:hover .team-photo img { transform: scale(1.06); }

/* Overlay */
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,4,0.85) 0%, rgba(15,10,4,0.2) 50%, transparent 100%);
  opacity: 0.7;
  transition: opacity 0.4s;
}
.team-card:hover .team-photo-overlay { opacity: 1; }

.team-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  transform: translateY(12px);
  transition: transform 0.4s var(--ease-out-expo);
}
.team-card:hover .team-info { transform: translateY(0); }

.team-name {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  color: #F8EDD8;
  line-height: 1.1;
  margin-bottom: 6px;
}
.team-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Team first card featured */
.team-card:first-child {
  grid-row: span 1;
}

/* ── LEGACY ───────────────────────────────────────────────────── */
.legacy-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
}
.legacy-image-panel {
  flex: 1;
  position: relative;
  min-height: 500px;
}
.legacy-image-panel img {
  position: absolute;
  inset: 0;
}
.legacy-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,10,4,0) 60%, rgba(15,10,4,0.5));
}

.legacy-content-panel {
  flex: 0 0 520px;
  background: var(--ink);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.legacy-content-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.legacy-content-panel h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F8EDD8;
  margin-top: 16px;
  margin-bottom: 28px;
}
.legacy-content-panel h2 em {
  font-style: italic;
  color: var(--gold);
}
.legacy-content-panel p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(248,237,216,0.6);
  line-height: 1.9;
  margin-bottom: 48px;
}

.legacy-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border: 1px solid rgba(201,151,58,0.4);
  color: var(--gold);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.legacy-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}
.legacy-cta:hover { color: var(--ink); border-color: var(--gold); }
.legacy-cta:hover::before { transform: translateX(0); }
.legacy-cta span { position: relative; z-index: 1; }
.legacy-cta svg { position: relative; z-index: 1; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }

/* Pull quote inside legacy */
.legacy-pull-quote {
  margin: 40px 0;
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--gold);
}
.legacy-pull-quote p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: rgba(248,237,216,0.8);
  line-height: 1.6;
  margin: 0;
}
.legacy-pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .legacy-section { flex-direction: column; }
  .legacy-image-panel { min-height: 400px; }
  .legacy-content-panel { flex: none; padding: 72px 48px; }
}

@media (max-width: 768px) {
  .heritage { padding: 80px 0; }
  .heritage-grid { grid-template-columns: 1fr; gap: 48px; }
  .heritage-badge { width: 80px; height: 80px; bottom: -16px; right: -16px; }
  .heritage-badge-num { font-size: 22px; }

  .hero-stats { grid-template-columns: 1fr; }
  .stat-item { padding: 20px 24px; border-right: none; border-bottom: 1px solid rgba(201,151,58,0.1); }
  .stat-item:last-child { border-bottom: none; }

  .values-section { padding: 80px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 1px; }
  .value-card { padding: 36px 28px; }

  .timeline-section { padding: 80px 0; }

  .team-section { padding: 80px 0; }
  .team-grid { grid-template-columns: 1fr; }

  .legacy-content-panel { padding: 60px 24px; }

  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .heritage::before { display: none; }
  .hero-title { font-size: 52px; }
  .timeline-track { flex-direction: column; }
  .timeline-spine { display: none; }
  .timeline-node { min-width: 100%; padding: 0 0 40px; }
}