/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron:  #E65100;
  --amber:    #F57F17;
  --gold:     #FFB300;
  --bg:       #FFFDF8;
  --bg2:      #FFF8EE;
  --bg3:      #FEF3E2;
  --text:     #1C1208;
  --body:     #4A3F30;
  --muted:    #9A8060;
  --border:   #E8D8C0;
  --white:    #FFFFFF;
  --shadow:   rgba(180, 100, 20, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ── REUSABLES ── */
.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}

p {
  font-size: 1rem;
  color: var(--body);
  margin-bottom: 16px;
  font-weight: 400;
}

p:last-child { margin-bottom: 0; }
p strong { color: var(--text); font-weight: 600; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
  z-index: 2;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--saffron);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 14px;
}

.hero-name span { color: var(--saffron); display: block; }

.hero-dates {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.08em;
}

.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body);
  border-left: 3px solid var(--saffron);
  padding-left: 20px;
  max-width: 400px;
  line-height: 1.65;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: stretch;
}

.img-frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* fade left edge of photo into bg */
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg2) 0%, transparent 30%),
              linear-gradient(to top, var(--bg2) 0%, transparent 20%);
  z-index: 1;
}

/* ── ABOUT ── */
.about {
  background: var(--bg);
  padding: 100px 80px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-badge {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 20px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about .section-label { justify-content: center; }

.about-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.about-body p { max-width: 100%; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--saffron);
  padding: 48px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 56px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
}

/* ── TIMELINE ── */
.timeline {
  background: var(--bg3);
  padding: 100px 80px;
}

.tl-list {
  margin-top: 48px;
  max-width: 760px;
}

.tl-item {
  display: grid;
  grid-template-columns: 96px 36px 1fr;
  gap: 0 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.tl-item:last-child { border-bottom: none; }

.tl-year {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber);
  text-align: right;
  padding-top: 4px;
}

.tl-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(230,81,0,0.15);
}

.tl-connector::after {
  content: '';
  flex: 1;
  width: 1px;
  background: var(--border);
  margin-top: 6px;
  min-height: 24px;
}

.tl-item:last-child .tl-connector::after { display: none; }

.tl-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
}

.tl-body p { font-size: 0.9rem; margin-bottom: 0; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--text);
  padding: 90px 80px;
}

.quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--saffron);
  line-height: 0.6;
  margin-bottom: 24px;
  display: block;
}

.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--bg2);
  line-height: 1.55;
  margin-bottom: 24px;
}

.quote-band cite {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

/* ── ACHIEVEMENTS ── */
.achievements {
  background: var(--bg2);
  padding: 100px 80px;
}

.ach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.ach-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 26px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.ach-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  border-color: rgba(230,81,0,0.3);
  transform: translateY(-4px);
}

.ach-icon { font-size: 2rem; margin-bottom: 16px; display: block; }

.ach-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ach-card p { font-size: 0.87rem; margin-bottom: 0; }

/* ── FOOTER ── */
footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 56px 80px;
  text-align: center;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--saffron);
  margin-bottom: 8px;
}

.footer-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--body);
  margin-bottom: 20px;
}

.footer-credit {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 72px 28px 40px; }
  .hero-right { height: 60vw; }

  .about { padding: 64px 28px; }
  .timeline { padding: 64px 28px; }
  .achievements { padding: 64px 28px; }
  .quote-band { padding: 64px 28px; }
  footer { padding: 48px 28px; }

  .stats-band { padding: 36px 20px; gap: 0; }
  .stat { padding: 12px 28px; }
  .stat-divider { height: 36px; }

  .ach-grid { grid-template-columns: 1fr 1fr; }
  .tl-item { grid-template-columns: 72px 28px 1fr; }
}

@media (max-width: 560px) {
  .ach-grid { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .stats-band { flex-direction: column; gap: 12px; }
  .stat { padding: 8px 0; }
}