/* ==============================================================
   S.P.I.R.I.T. Indiana — Modern Theme
   Locked-in design system. Used across all pages.
   ============================================================== */

:root {
  --black: #0a0908;
  --darker: #050403;
  --gray-900: #18161a;
  --gray-700: #2a262d;
  --gray-500: #6a656e;
  --gray-300: #a8a39d;
  --bone: #e8e2d6;
  --bone-dim: #c8c2b6;
  --accent: #b8202a;
  --accent-dim: #7a1419;
  --accent-glow: rgba(184, 32, 42, 0.4);
  --accent-bright: #e94555;
  --accent-bright-dim: #f56575;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--bone-dim);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--bone);
}

a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 32px;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(10,9,8,0.7), rgba(10,9,8,0));
}

nav.scrolled {
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 32px;
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hamburger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(232, 226, 214, 0.18);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--bone);
  transition: all 0.3s ease;
}
body.menu-open .hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dropdown menu */
.menu-wrap { position: relative; }
.menu-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 280px;
  background: linear-gradient(180deg, rgba(13,11,10,0.97) 0%, rgba(5,4,3,0.97) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 226, 214, 0.1);
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 150;
  list-style: none;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(184, 32, 42, 0.55) transparent;
}
.menu-dropdown::-webkit-scrollbar {
  width: 6px;
}
.menu-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.menu-dropdown::-webkit-scrollbar-thumb {
  background: rgba(184, 32, 42, 0.45);
  border-radius: 3px;
  transition: background 0.25s ease;
}
.menu-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(233, 69, 85, 0.7);
}
body.menu-open .menu-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-dropdown li a {
  display: block;
  padding: 7px 22px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--bone-dim);
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
}
.menu-dropdown li a:hover {
  color: var(--bone);
  background: rgba(184, 32, 42, 0.12);
  border-left-color: var(--accent);
  padding-left: 26px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--bone);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav-links a {
  color: var(--bone-dim);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--bone); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 24px;
  border: 1px solid rgba(232, 226, 214, 0.4);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  color: var(--bone);
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ========== HERO (full landing) ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(0.7) contrast(1.1) saturate(0.85);
  transform: scale(1.05);
  animation: subtleZoom 24s ease-out infinite alternate;
}

@keyframes subtleZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.14); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg,
      rgba(10,9,8,0.15) 0%,
      rgba(10,9,8,0.2) 40%,
      rgba(10,9,8,0.78) 70%,
      rgba(10,9,8,0.95) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.8s cubic-bezier(.2,.7,.2,1);
  padding: 0 32px;
  max-width: 880px;
  margin-top: 18vh;
}

.hero-tagline { text-shadow: 0 2px 16px rgba(0,0,0,0.85); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 17px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent-bright-dim);
  margin-bottom: 36px;
  font-weight: 600;
  text-shadow:
    0 0 10px rgba(233, 69, 85, 0.6),
    0 0 24px rgba(233, 69, 85, 0.35);
}

.hero h1 {
  font-size: clamp(54px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  color: var(--bone);
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-bright);
  text-shadow:
    0 0 12px rgba(233, 69, 85, 0.85),
    0 0 28px rgba(233, 69, 85, 0.7),
    0 0 60px rgba(233, 69, 85, 0.45),
    0 0 110px rgba(233, 69, 85, 0.3);
  animation: glowPulse 4.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 12px rgba(233, 69, 85, 0.85),
      0 0 28px rgba(233, 69, 85, 0.7),
      0 0 60px rgba(233, 69, 85, 0.45),
      0 0 110px rgba(233, 69, 85, 0.3);
  }
  50% {
    text-shadow:
      0 0 16px rgba(233, 69, 85, 1),
      0 0 38px rgba(233, 69, 85, 0.85),
      0 0 80px rgba(233, 69, 85, 0.6),
      0 0 140px rgba(233, 69, 85, 0.4);
  }
}

.hero-tagline {
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 580px;
  margin: 0 auto 56px;
  color: var(--bone-dim);
  font-weight: 300;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 56px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-300);
  font-weight: 400;
}

.hero-meta span { position: relative; }

.hero-meta span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -28px; top: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gray-300);
  text-transform: uppercase;
  animation: bob 2.6s ease-in-out infinite;
  writing-mode: vertical-lr;
  z-index: 2;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ========== PAGE HEADER (compact hero for inner pages) ========== */
.page-header {
  position: relative;
  padding: 220px 0 110px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.45) contrast(1.15) saturate(0.85);
  transform: scale(1.06);
  z-index: 0;
}

.page-header-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.65) 100%),
    linear-gradient(180deg, rgba(10,9,8,0.4) 0%, rgba(10,9,8,0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.4s cubic-bezier(.2,.7,.2,1);
}

.page-header .section-eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-bright-dim);
  text-shadow: 0 0 14px rgba(233,69,85,0.45);
}

.page-header h1 {
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: var(--bone);
}

.page-header h1 em {
  font-style: italic;
  color: var(--accent-bright);
  text-shadow:
    0 0 12px rgba(233, 69, 85, 0.7),
    0 0 32px rgba(233, 69, 85, 0.45);
}

.page-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--bone-dim);
  font-size: 17px;
  line-height: 1.75;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* ========== SECTIONS ========== */
section { padding: 140px 0; position: relative; }
section.tight { padding: 90px 0; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--bone);
  letter-spacing: 0.005em;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
  color: var(--bone-dim);
  font-size: 17px;
  line-height: 1.85;
}

/* ========== ABOUT / TWO-COL ========== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.col-text p {
  margin-bottom: 22px;
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.85;
}
.col-text p:last-child { margin-bottom: 0; }

.col-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.15) grayscale(0.35);
  transition: filter 0.8s ease, transform 1s ease;
}

.col-image:hover img {
  filter: brightness(0.85) contrast(1.1) grayscale(0);
  transform: scale(1.03);
}

.col-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* Aspect ratio overrides */
.col-image.ar-square { aspect-ratio: 1/1; }
.col-image.ar-portrait { aspect-ratio: 3/4; }
.col-image.ar-landscape { aspect-ratio: 16/10; }
.col-image.ar-wide { aspect-ratio: 16/9; }

/* Backwards-compat alias for original index */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.about-text p { margin-bottom: 22px; color: var(--bone-dim); font-size: 16px; line-height: 1.85; }
.about-text p:last-child { margin-bottom: 0; }
.about-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65) contrast(1.15) grayscale(0.35); transition: filter 0.8s ease, transform 1s ease; }
.about-image:hover img { filter: brightness(0.85) contrast(1.1) grayscale(0); transform: scale(1.03); }
.about-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 100px rgba(0,0,0,0.6); pointer-events: none; }

/* ========== STATS ========== */
.stats {
  padding: 110px 0;
  border-top: 1px solid rgba(232, 226, 214, 0.06);
  border-bottom: 1px solid rgba(232, 226, 214, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-300);
}

/* ========== CARDS / SERVICES ========== */
.dark-section { background: var(--darker); }

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.services-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  padding: 56px 38px;
  border: 1px solid rgba(232, 226, 214, 0.08);
  background: rgba(24, 22, 26, 0.4);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: left 0.7s ease;
}

.service-card:hover {
  border-color: rgba(184, 32, 42, 0.35);
  transform: translateY(-4px);
  background: rgba(24, 22, 26, 0.7);
}

.service-card:hover::before { left: 100%; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 400;
}

.service-card p {
  color: var(--gray-300);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-link {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--accent);
  gap: 18px;
}

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

.team-card {
  display: block;
  position: relative;
  background: rgba(24, 22, 26, 0.4);
  border: 1px solid rgba(232, 226, 214, 0.08);
  transition: all 0.5s ease;
  overflow: hidden;
}

.team-card:hover {
  border-color: rgba(184, 32, 42, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-900);
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.7) contrast(1.1) grayscale(0.3);
  transition: all 0.7s ease;
}

.team-card:hover .team-photo img {
  filter: brightness(0.95) contrast(1.05) grayscale(0);
  transform: scale(1.04);
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,9,8,0.85) 100%);
  pointer-events: none;
}

.team-info {
  padding: 28px 30px 32px;
}

.team-info h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--bone);
}

.team-info .team-role {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ========== EQUIPMENT / FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}

.feature-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.feature-num {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  padding-top: 4px;
}

.feature-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--bone);
}

.feature-item p {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.75;
}

/* ========== CALENDAR / TIMELINE ========== */
.month-block {
  margin-bottom: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(232, 226, 214, 0.08);
}

.month-block:last-child { border-bottom: none; }

.month-title {
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.event-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 14px 0;
  border-top: 1px solid rgba(232, 226, 214, 0.05);
  align-items: baseline;
}

.event-row:first-child { border-top: none; }

.event-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bone);
  font-weight: 500;
}

.event-desc {
  color: var(--bone-dim);
  font-size: 15px;
  line-height: 1.7;
}

.event-desc .note {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--gray-300);
  font-style: italic;
}

.event-desc a { color: var(--accent-bright-dim); border-bottom: 1px solid rgba(245,101,117,0.3); }
.event-desc a:hover { color: var(--accent-bright); border-bottom-color: var(--accent-bright); }

/* ========== CTA ========== */
.cta-section {
  text-align: center;
  padding: 170px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section h2 {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--bone);
  letter-spacing: 0.005em;
}

.cta-section h2 em { font-style: italic; color: var(--accent); }

.cta-section p {
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--bone-dim);
  font-size: 17px;
  line-height: 1.75;
}

.btn-primary {
  display: inline-block;
  padding: 19px 52px;
  background: var(--accent);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--accent);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  box-shadow: 0 0 36px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 18px 48px;
  background: transparent;
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(232, 226, 214, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(184, 32, 42, 0.1);
  box-shadow: 0 0 24px var(--accent-glow);
}

/* ========== FORMS ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}

.form-grid .full { grid-column: span 2; }

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  background: rgba(24, 22, 26, 0.65);
  border: 1px solid rgba(232, 226, 214, 0.12);
  color: var(--bone);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  border-radius: 0;
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: rgba(24, 22, 26, 0.9);
  box-shadow: 0 0 0 3px rgba(184, 32, 42, 0.12);
}

/* ========== LINK LIST (link page, social, etc) ========== */
.link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  list-style: none;
}

.link-list .link-item {
  display: block;
  padding: 24px 28px;
  border: 1px solid rgba(232, 226, 214, 0.1);
  background: rgba(24, 22, 26, 0.4);
  transition: all 0.4s ease;
  position: relative;
}

.link-list .link-item:hover {
  border-color: rgba(184, 32, 42, 0.45);
  background: rgba(24, 22, 26, 0.75);
  transform: translateX(6px);
}

.link-list .link-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bone);
  margin-bottom: 4px;
  font-weight: 400;
}

.link-list .link-url {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ========== PROSE BLOCK ========== */
.prose {
  max-width: 760px;
  margin: 0 auto;
}

.prose p {
  margin-bottom: 22px;
  color: var(--bone-dim);
  font-size: 17px;
  line-height: 1.85;
}

.prose h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin: 56px 0 22px;
  font-weight: 400;
  color: var(--bone);
}

.prose h2 em { font-style: italic; color: var(--accent); }

.prose h3 {
  font-size: 24px;
  margin: 36px 0 16px;
  font-weight: 500;
  color: var(--bone);
}

.prose ul, .prose ol { margin: 0 0 22px 22px; color: var(--bone-dim); }
.prose li { margin-bottom: 8px; line-height: 1.75; }
.prose a { color: var(--accent-bright-dim); border-bottom: 1px solid rgba(245,101,117,0.3); }
.prose a:hover { color: var(--accent-bright); border-bottom-color: var(--accent-bright); }
.prose blockquote {
  border-left: 2px solid var(--accent);
  padding: 6px 0 6px 28px;
  margin: 30px 0;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bone);
  line-height: 1.55;
}

/* ========== BIO PAGE ========== */
.bio-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.bio-photo {
  position: sticky;
  top: 110px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(232, 226, 214, 0.08);
}

.bio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.85) contrast(1.05);
}

.bio-text h1 {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--bone);
  line-height: 1;
}

.bio-text .bio-role {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  font-weight: 500;
}

.bio-text p {
  margin-bottom: 22px;
  color: var(--bone-dim);
  font-size: 16px;
  line-height: 1.85;
}

/* ========== FOOTER ========== */
footer {
  background: var(--darker);
  padding: 90px 0 40px;
  border-top: 1px solid rgba(232, 226, 214, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 30px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray-300);
  font-size: 14px;
  max-width: 340px;
  line-height: 1.75;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }

.footer-col a {
  color: var(--gray-300);
  font-size: 14px;
}

.footer-col a:hover { color: var(--bone); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(232, 226, 214, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1.1s ease, transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { padding: 9px 18px; font-size: 10px; }
  .about-grid, .two-col { grid-template-columns: 1fr; gap: 50px; }
  .two-col.flip { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 30px; }
  .services-grid, .services-grid.cols-2, .services-grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-meta { flex-direction: column; gap: 18px; }
  .hero-meta span:not(:last-child)::after { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  section { padding: 90px 0; }
  .cta-section { padding: 110px 0; background-attachment: scroll; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
  .link-list { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-photo { position: static; max-width: 380px; }
  .page-header { padding: 170px 0 80px; }
}

@media (max-width: 600px) {
  .container { padding: 0 24px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; gap: 16px; }
}
