/* 
==================================================
DESIGN TOKENS – Justice Biswanath Somadder
================================================== 
*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --c-charcoal: #0A192F;
  --c-charcoal-deep: #4A0E17;
  --c-ivory: #F7F5F0;
  --c-ivory-warm: #F2EDE5;
  --c-gold: #B8956A;
  --c-gold-light: #D4B896;
  --c-gold-dark: #9A7B55;
  --c-white: #FFFFFF;
  --c-border: rgba(43, 45, 47, 0.1);
  --c-border-light: rgba(43, 45, 47, 0.06);
  --c-text-main: #3A3C3E;
  --c-text-light: #78797B;
  --c-text-dark: #1A1C1E;
  --c-overlay: rgba(26, 28, 30, 0.85);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --s-section: 120px;
  --s-section-sm: 80px;
  --max-w: 1280px;
  --max-w-narrow: 900px;

  /* Transitions */
  --t-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
}

/* 
==================================================
RESET & BASE
================================================== 
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-ivory);
  color: var(--c-text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base);
}
a:hover {
  color: var(--c-gold);
}

button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--c-charcoal);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

/* 
==================================================
LAYOUT UTILITIES
================================================== 
*/
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow {
  max-width: var(--max-w-narrow);
}

.section {
  padding: var(--s-section) 0;
}
.section--sm {
  padding: var(--s-section-sm) 0;
}
.section--dark {
  background: var(--c-charcoal);
  color: var(--c-white);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--c-white);
}
.section--white {
  background: var(--c-white);
}
.section--ivory {
  background: var(--c-ivory-warm);
}

.text-center { text-align: center; }
.text-gold { color: var(--c-gold); }
.text-muted { color: var(--c-text-light); }

/* 
==================================================
SECTION HEADERS
================================================== 
*/
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
  position: relative;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-light);
  max-width: 640px;
  line-height: 1.8;
}
.section-desc.centered {
  margin: 0 auto;
}

/* Gold decorative line */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--c-gold);
  margin: 24px 0;
}
.gold-rule.centered {
  margin: 24px auto;
}

/* 
==================================================
NAVIGATION
================================================== 
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border-light);
  transition: all var(--t-base);
}
.site-header.scrolled {
  padding: 14px 40px;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--c-border);
}

.logo-wrap {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--c-charcoal);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--c-text-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-main);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--t-base);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}
.desktop-nav a:hover {
  color: var(--c-charcoal);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-charcoal);
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--c-ivory);
  z-index: 1050;
  transition: right 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 120px 40px 60px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.active {
  right: 0;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--c-charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border-light);
  display: block;
}
.mobile-nav a:hover {
  color: var(--c-gold);
  padding-left: 12px;
}

/* 
==================================================
HERO SECTIONS
================================================== 
*/

/* Split Hero (Home) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}
.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px;
  background: var(--c-ivory);
}
.hero-split__image {
  position: relative;
  overflow: hidden;
}
.hero-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
}
.hero-split__title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-split__designation {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--c-text-light);
  font-style: italic;
  margin-bottom: 32px;
}
.hero-split__desc {
  font-size: 1.05rem;
  color: var(--c-text-light);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 40px;
}

/* Full-Width Home Hero */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.92), rgba(74, 14, 23, 0.85));
  z-index: 1;
}
.hero-full > .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-full__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 24px;
  display: block;
}
.hero-full__title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.hero-full__designation {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--c-gold);
  font-style: italic;
  margin-bottom: 32px;
}
.hero-full__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Page Banner Hero */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  text-align: center;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-light);
  overflow: hidden;
}
.page-hero--image {
  background-size: cover;
  background-position: center;
  color: var(--c-white);
}
.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-overlay);
  z-index: 1;
}
.page-hero--image .container {
  position: relative;
  z-index: 2;
}
.page-hero--image h1,
.page-hero--image p {
  color: var(--c-white);
}
.page-hero--image .section-label {
  color: var(--c-gold-light);
}

/* 
==================================================
GRID LAYOUTS
================================================== 
*/

/* 2-column asymmetric */
.grid-2-asym {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-2-asym--reverse {
  grid-template-columns: 1fr 1.3fr;
}

/* 2-column equal */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* 3-column */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* 4-column */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* 
==================================================
CARDS
================================================== 
*/
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 40px;
  transition: all var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--c-gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
.card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.card__text {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* Case Cards */
.case-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 0;
  overflow: hidden;
  transition: all var(--t-base);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.case-card__header {
  background: var(--c-charcoal);
  padding: 24px 32px;
  color: var(--c-white);
}
.case-card__category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 8px;
}
.case-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 0;
}
.case-card__body {
  padding: 28px 32px;
}
.case-card__meta {
  font-size: 0.8rem;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.case-card__desc {
  font-size: 0.95rem;
  color: var(--c-text-main);
  line-height: 1.7;
}

/* Stat Cards */
.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--c-border);
}
.stat-card:last-child {
  border-right: none;
}
.stat-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--c-gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-light);
}

/* 
==================================================
TIMELINE
================================================== 
*/
.timeline {
  position: relative;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  position: relative;
  margin-bottom: 48px;
}
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--c-gold);
  border: 3px solid var(--c-ivory);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-content {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 28px 32px;
  max-width: 480px;
  transition: all var(--t-base);
}
.timeline-content:hover {
  box-shadow: var(--shadow-md);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.timeline-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* Horizontal Timeline */
.h-timeline {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding: 40px 0;
  scrollbar-width: none;
}
.h-timeline::-webkit-scrollbar { display: none; }
.h-timeline-item {
  min-width: 300px;
  flex-shrink: 0;
  padding: 0 32px;
  border-left: 2px solid var(--c-border);
  position: relative;
}
.h-timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
}
.h-timeline-year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.h-timeline-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-charcoal);
  margin-bottom: 8px;
}
.h-timeline-text {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.65;
}

/* 
==================================================
QUOTE / PHILOSOPHY SECTIONS
================================================== 
*/
.quote-section {
  position: relative;
  padding: 100px 0;
  background: var(--c-charcoal);
  color: var(--c-white);
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(184, 149, 106, 0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--c-white);
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}
.quote-attribution {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

/* 
==================================================
SPLIT SCREEN SECTION
================================================== 
*/
.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-screen__image {
  position: relative;
  overflow: hidden;
}
.split-screen__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-screen__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

/* 
==================================================
FULL-WIDTH STATEMENT
================================================== 
*/
.full-statement {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.full-statement__text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--c-charcoal);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* 
==================================================
OVERLAY IMAGE SECTION
================================================== 
*/
.overlay-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.overlay-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 28, 30, 0.92), rgba(43, 45, 47, 0.85));
  z-index: 1;
}
.overlay-section .container {
  position: relative;
  z-index: 2;
}
.overlay-section h2,
.overlay-section h3 {
  color: var(--c-white);
}
.overlay-section p {
  color: rgba(255, 255, 255, 0.8);
}

/* 
==================================================
BUTTONS
================================================== 
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--c-charcoal);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--c-charcoal);
  transition: all var(--t-base);
  cursor: pointer;
}
.btn:hover {
  background: transparent;
  color: var(--c-charcoal);
}
.btn--gold {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
}
.btn--gold:hover {
  background: transparent;
  color: var(--c-gold);
}
.btn--outline {
  background: transparent;
  color: var(--c-charcoal);
}
.btn--outline:hover {
  background: var(--c-charcoal);
  color: var(--c-white);
}
.btn--white {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-charcoal);
}
.btn--white:hover {
  background: transparent;
  color: var(--c-white);
}

/* 
==================================================
CONTACT FORM
================================================== 
*/
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--c-charcoal);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: border-color var(--t-base);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-gold);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* 
==================================================
FOOTER
================================================== 
*/
.site-footer {
  background: var(--c-charcoal-deep);
  color: var(--c-white);
  padding: 80px 0 40px;
  margin-top: 0;
}
.site-footer h4 {
  color: var(--c-white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color var(--t-base);
}
.footer-link:hover {
  color: var(--c-gold);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.creaa-link {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--t-base);
}
.creaa-link:hover {
  color: var(--c-gold-light);
  text-decoration: underline;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--c-gold);
  flex-shrink: 0;
}

/* 
==================================================
ANIMATIONS
================================================== 
*/
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.is-visible {
  opacity: 1;
}

/* Image hover zoom */
.img-zoom {
  overflow: hidden;
}
.img-zoom img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-zoom:hover img {
  transform: scale(1.05);
}

/* 
==================================================
STATS BAR
================================================== 
*/
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--c-white);
  border: 1px solid var(--c-border);
}

/* 
==================================================
INFO PANEL (Contact page)
================================================== 
*/
.info-panel {
  background: var(--c-charcoal);
  color: var(--c-white);
  padding: 48px;
}
.info-panel h4 {
  color: var(--c-white);
}

/* 
==================================================
MEDIA CARDS
================================================== 
*/
.media-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: all var(--t-base);
}
.media-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.media-card__image {
  height: 200px;
  overflow: hidden;
}
.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.media-card:hover .media-card__image img {
  transform: scale(1.05);
}
.media-card__body {
  padding: 24px 28px;
}
.media-card__date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.media-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--c-charcoal);
  margin-bottom: 8px;
}
.media-card__text {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.65;
}

/* 
==================================================
RESOURCE LIST
================================================== 
*/
.resource-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border-light);
  align-items: flex-start;
}
.resource-icon {
  width: 48px;
  height: 48px;
  background: var(--c-ivory-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
}
.resource-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--c-gold);
}

/* 
==================================================
RESPONSIVE
================================================== 
*/
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__content { padding: 140px 40px 60px; }
  .hero-split__image { height: 400px; }
  .grid-2-asym,
  .grid-2-asym--reverse { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .split-screen { grid-template-columns: 1fr; }
  .split-screen__image { height: 350px; }
  .split-screen__content { padding: 48px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .timeline::before { left: 24px; }
  .timeline-item { padding-right: 0; padding-left: 60px; justify-content: flex-start; }
  .timeline-item:nth-child(even) { padding-left: 60px; }
  .timeline-dot { left: 24px; }
}

@media (max-width: 768px) {
  :root {
    --s-section: 80px;
    --s-section-sm: 56px;
  }
  .container { padding: 0 20px; }
  .site-header { padding: 16px 20px; }
  .site-header.scrolled { padding: 12px 20px; }
  .hero-split__content { padding: 120px 24px 48px; }
  .hero-split__image { height: 300px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--c-border); }
  .stat-card:last-child { border-bottom: none; }
  .split-screen__content { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 150px 0 60px; }
  .overlay-section { background-attachment: scroll; }
  .h-timeline-item { min-width: 260px; }
}

@media (max-width: 480px) {
  .hero-split__title { font-size: 2rem; }
  .quote-text { font-size: 1.2rem; }
  .card { padding: 28px; }
  .mobile-nav a { font-size: 1.3rem; }
}

