:root {
  --ivy-deep: #0f3320;
  --ivy-dark: #1a4d30;
  --ivy: #2d5f3f;
  --ivy-light: #4a7c5c;
  --cream: #f5efe0;
  --cream-warm: #ede4cf;
  --paper: #faf6ec;
  --ink: #1a1410;
  --gold: #b8935a;
  --gold-bright: #d4a85f;
  --crimson: #7a1f2b;
  --stone: #8a8275;
  --border-ink: rgba(26, 20, 16, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
}

::selection { background: var(--ivy-deep); color: var(--cream); }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}

/* ======================= TOP BAR ======================= */
.topbar {
  background: var(--ivy-deep);
  color: var(--cream);
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 0;
  text-align: center;
  border-bottom: 1px solid var(--gold);
}
.topbar span { color: var(--gold-bright); margin: 0 8px; }

/* ======================= NAVIGATION ======================= */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-ink);
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  background: rgba(250, 246, 236, 0.94);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.brand-text small {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--ivy); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--ivy);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--ivy-deep);
  color: var(--cream);
  border: 1px solid var(--ivy-deep);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-links.cta-keep { display: flex; gap: 0; }
}

/* ======================= HERO ======================= */
.hero {
  padding: 90px 5vw 60px;
  position: relative;
  overflow: hidden;
}

.hero-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivy);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ivy);
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
  color: var(--ink);
  max-width: 1200px;
}
.hero-title em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--ivy-deep);
}
.hero-title .amp {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 70px;
  align-items: end;
  padding-top: 40px;
  border-top: 1px solid var(--border-ink);
}

.hero-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 640px;
}
.hero-lede::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 5.5em;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--ivy-deep);
  font-weight: 500;
}

.hero-meta {
  border-left: 1px solid var(--border-ink);
  padding-left: 40px;
}
.hero-meta-item {
  margin-bottom: 28px;
}
.hero-meta-item:last-child { margin-bottom: 0; }
.hero-meta-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.hero-meta-value {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.hero-meta-value em {
  font-style: italic;
  color: var(--ivy);
  font-weight: 400;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-ornament {
  position: absolute;
  right: -80px;
  top: 120px;
  width: 400px;
  opacity: 0.06;
  pointer-events: none;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { border-left: none; border-top: 1px solid var(--border-ink); padding-left: 0; padding-top: 32px; }
  .hero-ornament { display: none; }
}

/* ======================= MARQUEE ======================= */
.marquee-section {
  background: var(--ivy-deep);
  color: var(--cream);
  padding: 34px 0;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  position: relative;
}
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--ivy-deep), transparent);
}
.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--ivy-deep), transparent);
}

.marquee {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.01em;
}
.marquee span {
  display: flex;
  align-items: center;
  gap: 70px;
}
.marquee-star {
  color: var(--gold-bright);
  font-size: 0.6em;
  font-style: normal;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================= LEGACY SECTION ======================= */
.legacy {
  padding: 140px 5vw;
  background: var(--cream);
  position: relative;
}

.section-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '§';
  color: var(--gold);
  font-family: 'Fraunces', serif;
  font-size: 16px;
  letter-spacing: 0;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.legacy-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.legacy-title em { font-style: italic; color: var(--ivy-deep); font-weight: 300; }

.legacy-body p {
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 22px;
  color: var(--ink);
}
.legacy-body .pullquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  color: var(--ivy-deep);
  padding: 24px 0 24px 32px;
  border-left: 2px solid var(--gold);
  margin: 32px 0;
  font-weight: 300;
}
.pullquote-attribution {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
  margin-top: 14px;
}

.founder-card {
  background: var(--paper);
  padding: 50px 44px;
  border: 1px solid var(--border-ink);
  position: relative;
}
.founder-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid var(--gold);
  transform: translate(10px, 10px);
  z-index: -1;
}

.founder-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.founder-name {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.founder-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--stone);
  margin-bottom: 28px;
}
.founder-bio {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border-ink);
}
.founder-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--ivy-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.founder-stat-num .plus { color: var(--gold); font-style: italic; }
.founder-stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 10px;
}

@media (max-width: 880px) {
  .legacy { padding: 80px 5vw; }
  .legacy-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ======================= PILLARS ======================= */
.pillars {
  padding: 140px 5vw;
  background: var(--paper);
  position: relative;
}

.pillars-header {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.pillars-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.pillars-title em { font-style: italic; color: var(--ivy-deep); font-weight: 300; }

.pillars-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--stone);
  line-height: 1.5;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--border-ink);
  border-left: 1px solid var(--border-ink);
}
.pillars-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.pillar {
  padding: 50px 36px;
  border-right: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--paper);
  transition: background 0.4s;
  position: relative;
  min-height: 340px;
}
.pillar:hover { background: var(--cream); }
.pillar:hover .pillar-num { color: var(--gold); }

.pillar-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 72px;
  color: var(--ivy-deep);
  line-height: 1;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.pillar-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--stone);
}

@media (max-width: 1000px) {
  .pillars-grid, .pillars-grid-three { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .pillars-grid, .pillars-grid-three { grid-template-columns: 1fr; }
  .pillars { padding: 80px 5vw; }
}

/* ======================= JOURNEY ======================= */
.journey {
  padding: 140px 5vw;
  background: var(--ivy-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 147, 90, 0.08), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(74, 124, 92, 0.15), transparent 40%);
  pointer-events: none;
}

.journey-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.journey-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 90px;
  align-items: end;
}

.journey .section-eyebrow { color: var(--gold-bright); }
.journey .section-eyebrow::before { color: var(--gold-bright); }

.journey-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.journey-title em { font-style: italic; color: var(--gold-bright); font-weight: 300; }

.journey-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(245, 239, 224, 0.85);
}
.journey-intro .drop {
  font-family: 'Fraunces', serif;
  font-size: 1.4em;
  color: var(--gold-bright);
  font-style: italic;
}

.itinerary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 239, 224, 0.15);
  border: 1px solid rgba(245, 239, 224, 0.15);
}

.stop {
  background: var(--ivy-deep);
  padding: 42px 34px;
  transition: background 0.3s;
}
.stop:hover { background: var(--ivy-dark); }

.stop-day {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.stop-school {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.stop-location {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(245, 239, 224, 0.6);
  font-size: 17px;
  margin-bottom: 20px;
}
.stop-detail {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 239, 224, 0.75);
}

@media (max-width: 880px) {
  .journey { padding: 80px 5vw; }
  .journey-header { grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; }
  .itinerary { grid-template-columns: 1fr; }
}

/* ======================= FILM / VIDEO ======================= */
.film {
  padding: 140px 5vw;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.film::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 30%, rgba(45, 95, 63, 0.32), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(184, 147, 90, 0.10), transparent 55%);
  pointer-events: none;
}

.film-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
  position: relative;
}

.film-text { max-width: 500px; }

.film .section-eyebrow {
  color: var(--gold-bright);
}
.film .section-eyebrow::before { color: var(--gold-bright); }

.film-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 28px;
}
.film-title em { font-style: italic; color: var(--gold-bright); font-weight: 300; }

.film-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.55;
  color: rgba(245, 239, 224, 0.85);
  margin-bottom: 36px;
}

.film-meta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 224, 0.55);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.film-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  display: inline-block;
}

/* Vertical video frame — phone-style portrait, gold-tinted halo */
.film-frame {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  background: var(--ivy-deep);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 168, 95, 0.25),
    0 30px 80px -30px rgba(212, 168, 95, 0.35),
    0 50px 120px -20px rgba(0, 0, 0, 0.6);
}

/* Subtle gold film-strip border ornament around the video */
.film-frame::before,
.film-frame::after {
  content: '';
  position: absolute;
  width: 14px;
  top: 14px;
  bottom: 14px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(212, 168, 95, 0.0) 0,
    rgba(212, 168, 95, 0.0) 8px,
    rgba(212, 168, 95, 0.4) 8px,
    rgba(212, 168, 95, 0.4) 14px
  );
  pointer-events: none;
  z-index: 2;
}
.film-frame::before { left: -22px; }
.film-frame::after { right: -22px; }

.film-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

/* Custom play overlay (only shown until first interaction) */
.film-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(15, 51, 32, 0.0) 40%, rgba(15, 51, 32, 0.55) 100%);
  transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
}
.film-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.film-play-button {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(245, 239, 224, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(245, 239, 224, 0.1);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s;
}
.film-play:hover .film-play-button {
  transform: scale(1.08);
  background: var(--gold-bright);
}
.film-play-button svg {
  width: 26px;
  height: 26px;
  fill: var(--ink);
  margin-left: 4px;
}

.film-play-label {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 880px) {
  .film { padding: 90px 5vw; }
  .film-inner { grid-template-columns: 1fr; gap: 50px; }
  .film-text { max-width: 100%; text-align: center; }
  .film .section-eyebrow { justify-content: center; }
  .film-meta { justify-content: center; }
  .film-frame { max-width: 320px; }
  .film-frame::before, .film-frame::after { display: none; }
}

/* ======================= GALLERY ======================= */
.gallery {
  padding: 140px 5vw;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.gallery-header {
  max-width: 1400px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.gallery-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.gallery-title em { font-style: italic; color: var(--ivy-deep); font-weight: 300; }

.gallery-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.55;
  color: var(--stone);
  font-style: italic;
  max-width: 440px;
  justify-self: end;
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

.photo {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border-ink);
  padding: 14px 14px 54px;
  box-shadow: 0 2px 0 rgba(26, 20, 16, 0.04), 0 18px 40px -20px rgba(26, 20, 16, 0.25);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s;
}
.photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 2px 0 rgba(26, 20, 16, 0.04), 0 28px 50px -20px rgba(26, 20, 16, 0.35);
  z-index: 3;
}

.photo-1 { transform: rotate(-1.4deg); margin-top: 0; }
.photo-2 { transform: rotate(1deg); margin-top: 48px; }
.photo-3 { transform: rotate(-0.7deg); margin-top: 20px; }
.photo-4 { transform: rotate(1.3deg); margin-top: 64px; }
.photo-1:hover { transform: rotate(-1.4deg) translateY(-6px); }
.photo-2:hover { transform: rotate(1deg) translateY(-6px); }
.photo-3:hover { transform: rotate(-0.7deg) translateY(-6px); }
.photo-4:hover { transform: rotate(1.3deg) translateY(-6px); }

.photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivy-deep);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.photo:hover .photo-frame img {
  transform: scale(1.04);
}

.photo-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding-top: 14px;
}

.photo-caption-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.2;
}
.photo-caption-location {
  font-family: 'Inter Tight', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  flex-shrink: 0;
}

.photo::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px;
  height: 22px;
  background: rgba(212, 168, 95, 0.35);
  border: 1px solid rgba(184, 147, 90, 0.25);
  box-shadow: 0 2px 4px rgba(26, 20, 16, 0.1);
  z-index: 2;
}
.photo-2::before {
  transform: translateX(-50%) rotate(3deg);
  background: rgba(184, 147, 90, 0.3);
}
.photo-3::before {
  transform: translateX(-50%) rotate(-4deg);
  background: rgba(212, 168, 95, 0.38);
}
.photo-4::before {
  transform: translateX(-50%) rotate(2deg);
  background: rgba(184, 147, 90, 0.33);
}

@media (max-width: 1100px) {
  .gallery { padding: 90px 5vw; }
  .gallery-header { grid-template-columns: 1fr; gap: 30px; }
  .gallery-intro { justify-self: start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 32px; }
  .photo-1, .photo-3 { margin-top: 0; }
  .photo-2, .photo-4 { margin-top: 30px; }
}
@media (max-width: 620px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 50px; }
  .photo-1, .photo-2, .photo-3, .photo-4 { margin-top: 0; max-width: 100%; }
}

/* ======================= VOICES ======================= */
.voices {
  padding: 140px 5vw;
  background: var(--cream);
  position: relative;
}

.voices-header {
  max-width: 1400px;
  margin: 0 auto 80px;
}

.voices-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 1000px;
}
.voices-title em { font-style: italic; color: var(--ivy-deep); font-weight: 300; }

.voices-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.voice {
  background: var(--paper);
  padding: 44px 40px;
  border: 1px solid var(--border-ink);
  position: relative;
}
.voice.featured {
  background: var(--ivy-deep);
  color: var(--cream);
  border-color: var(--ivy-deep);
}
.voice.featured .voice-school { color: var(--gold-bright); }
.voice.featured .voice-quote { color: var(--cream); }
.voice.featured .voice-name { color: var(--cream); }
.voice.featured .voice-meta { color: rgba(245, 239, 224, 0.65); }

.voice::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: 'Fraunces', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-style: italic;
}

.voice-school {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ivy);
  margin-bottom: 24px;
}

.voice-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  font-style: italic;
}
.voice.featured .voice-quote { font-size: 26px; }

.voice-attribution {
  padding-top: 24px;
  border-top: 1px solid var(--border-ink);
}
.voice.featured .voice-attribution {
  border-top-color: rgba(245, 239, 224, 0.2);
}

.voice-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}
.voice-meta {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.05em;
}

@media (max-width: 1000px) {
  .voices-grid { grid-template-columns: 1fr; }
  .voices { padding: 80px 5vw; }
}

/* ======================= NUMBERS ======================= */
.numbers {
  padding: 120px 5vw;
  background: var(--paper);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-block {
  text-align: left;
  position: relative;
}
.stat-block::before {
  content: attr(data-num);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 300;
  color: var(--gold);
  position: absolute;
  top: 0; left: 0;
  letter-spacing: 0.1em;
}

.stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ivy-deep);
  margin-top: 30px;
  margin-bottom: 24px;
}
.stat-number .unit { font-size: 0.5em; color: var(--gold); font-style: italic; }

.stat-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  padding-top: 20px;
  border-top: 1px solid var(--border-ink);
  max-width: 220px;
}

@media (max-width: 1000px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}
@media (max-width: 500px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .numbers { padding: 60px 5vw; }
}

/* ======================= APPLY ======================= */
.apply {
  padding: 160px 5vw;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(45, 95, 63, 0.35), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(184, 147, 90, 0.12), transparent 55%);
  pointer-events: none;
}

.apply-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.apply .section-eyebrow {
  color: var(--gold-bright);
  justify-content: center;
}
.apply .section-eyebrow::before { color: var(--gold-bright); }

.apply-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 40px;
}
.apply-title em {
  font-style: italic;
  color: var(--gold-bright);
}

.apply-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: rgba(245, 239, 224, 0.82);
  max-width: 720px;
  margin: 0 auto 56px;
  line-height: 1.5;
}

.apply-cta {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-gold {
  background: var(--gold-bright);
  color: var(--ink);
  border: 1px solid var(--gold-bright);
  padding: 18px 42px;
  font-size: 13px;
  letter-spacing: 0.18em;
}
.btn-gold:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 224, 0.4);
  padding: 18px 42px;
  font-size: 13px;
  letter-spacing: 0.18em;
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245, 239, 224, 0.08);
}

.apply-meta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(245, 239, 224, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  color: rgba(245, 239, 224, 0.7);
}
.apply-meta strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 6px;
  font-weight: 400;
}

@media (max-width: 700px) {
  .apply { padding: 100px 5vw; }
  .apply-meta { grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
}

/* ======================= FOOTER ======================= */
.site-footer {
  background: var(--cream-warm);
  padding: 80px 5vw 40px;
  color: var(--ink);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-ink);
}

.footer-brand-text {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.footer-brand-text em { font-style: italic; color: var(--ivy-deep); }

.footer-brand-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--stone);
  max-width: 360px;
}

.footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivy); }

.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer { padding: 60px 5vw 30px; }
}

/* ======================= ANIMATIONS ======================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-label { animation: fadeUp 1s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-title { animation: fadeUp 1.2s 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-lede { animation: fadeUp 1s 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-meta-item:nth-child(1) { animation: fadeUp 1s 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-meta-item:nth-child(2) { animation: fadeUp 1s 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-meta-item:nth-child(3) { animation: fadeUp 1s 1.0s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
.hero-cta-row { animation: fadeUp 1s 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-ornament { animation: fadeIn 2s 0.5s both; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.photo.reveal { transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s; }
.photo-1.reveal { transform: translateY(40px) rotate(-1.4deg); }
.photo-1.reveal.in { transform: translateY(0) rotate(-1.4deg); }
.photo-2.reveal { transform: translateY(40px) rotate(1deg); }
.photo-2.reveal.in { transform: translateY(0) rotate(1deg); }
.photo-3.reveal { transform: translateY(40px) rotate(-0.7deg); }
.photo-3.reveal.in { transform: translateY(0) rotate(-0.7deg); }
.photo-4.reveal { transform: translateY(40px) rotate(1.3deg); }
.photo-4.reveal.in { transform: translateY(0) rotate(1.3deg); }
