/* ============================================================
   NTC Massena — Modern Editorial Redesign
   Palette grounded in the original orange (#EA7726) + slate grey.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --orange: #ea7726;
  --orange-deep: #c75a14;
  --orange-soft: #f4a061;
  --ink: #1c1d20;
  --ink-2: #2a2c30;
  --slate: #4a4d54;
  --mute: #7c8089;
  --line: #e6e3dd;
  --paper: #f6f3ee;
  --paper-2: #fbf9f5;
  --white: #ffffff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-lg: 0 30px 80px -28px rgba(28, 29, 32, 0.35);
  --shadow-md: 0 14px 40px -22px rgba(28, 29, 32, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px; line-height: 1.6;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; top: 12px; background: var(--ink); color: var(--white); padding: 10px 14px; border-radius: 8px; z-index: 1000; }
.skip-link:focus { left: 12px; }

/* ---------- Glass Nav ---------- */
.site-header {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(1280px, calc(100% - 28px));
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 10px 12px 10px 18px;
  background: rgba(251, 249, 245, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid rgba(28, 29, 32, 0.06);
  border-radius: 999px;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.5s var(--ease);
}
.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 40px -24px rgba(28, 29, 32, 0.35);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 600; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--ink); padding: 6px; object-fit: contain;
}
.brand strong { display: block; font-size: 16px; letter-spacing: -0.01em; line-height: 1.05; }
.brand small { color: var(--mute); font-family: var(--body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 4px; font-size: 14.5px; font-weight: 500; }
.site-nav a { padding: 9px 14px; border-radius: 999px; color: var(--ink-2); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.site-nav a:hover { background: rgba(28, 29, 32, 0.06); }
.site-nav .nav-give {
  background: var(--ink); color: var(--white);
  padding: 10px 18px; position: relative; overflow: hidden;
}
.site-nav .nav-give::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--orange), var(--orange-deep));
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.site-nav .nav-give:hover::before { opacity: 1; }
.site-nav .nav-give span { position: relative; z-index: 1; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(28, 29, 32, 0.1); background: var(--white); cursor: pointer; padding: 0; position: relative; }
.nav-toggle-lines, .nav-toggle-lines::before, .nav-toggle-lines::after { content: ''; position: absolute; left: 50%; width: 16px; height: 1.8px; background: var(--ink); transition: transform 0.3s var(--ease), top 0.3s var(--ease); transform: translateX(-50%); }
.nav-toggle-lines { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(20px);
    border-radius: 24px; padding: 12px;
    box-shadow: var(--shadow-lg);
    transform-origin: top center; transform: scaleY(0.92) translateY(-6px); opacity: 0;
    pointer-events: none; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .site-nav.open { transform: scaleY(1) translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 18px; border-radius: 14px; }
  .site-nav .nav-give { text-align: center; }
  .brand small { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  padding: 140px 28px 80px;
  display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 19, 22, 0.9) 0%, rgba(18, 19, 22, 0.66) 42%, rgba(18, 19, 22, 0.38) 100%),
    linear-gradient(180deg, rgba(18, 19, 22, 0.54) 0%, rgba(18, 19, 22, 0.22) 44%, rgba(18, 19, 22, 0.86) 100%);
}
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 1; opacity: 0.62; pointer-events: none;
  background:
    radial-gradient(60% 60% at 18% 22%, rgba(234, 119, 38, 0.52), transparent 60%),
    radial-gradient(50% 50% at 82% 30%, rgba(244, 160, 97, 0.26), transparent 65%),
    radial-gradient(70% 60% at 50% 100%, rgba(28, 29, 32, 0.8), transparent 70%);
  mix-blend-mode: soft-light;
  filter: saturate(115%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 3; opacity: 0.18; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
@keyframes meshDrift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(-3%, 2%) scale(1.05); } }

.hero-inner { position: relative; z-index: 4; width: 100%; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.9fr; gap: 60px; align-items: end; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-soft); margin-bottom: 28px; }
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(234, 119, 38, 0.18); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(234, 119, 38, 0); } }
.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(54px, 9vw, 140px); line-height: 0.92; letter-spacing: -0.035em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--orange-soft); }
.hero-copy { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; max-width: 540px; color: rgba(255, 255, 255, 0.78); margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: grid; gap: 24px; padding: 28px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); }
.hero-meta-row { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-row .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.hero-meta-row .value { font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.hero-meta-row a { color: var(--orange-soft); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 130px 20px 60px; }
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  border: 1px solid transparent; cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button .arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.button:hover .arrow { transform: translateX(4px); }
.button-primary { background: var(--orange); color: var(--white); box-shadow: 0 14px 30px -14px rgba(234, 119, 38, 0.65); }
.button-primary:hover { background: var(--orange-deep); }
.button-secondary { background: var(--white); color: var(--ink); border-color: rgba(28, 29, 32, 0.1); }
.button-secondary:hover { background: var(--paper); }
.button-ghost { background: rgba(255, 255, 255, 0.08); color: var(--white); border-color: rgba(255, 255, 255, 0.22); }
.button-ghost:hover { background: rgba(255, 255, 255, 0.16); }
.button-small { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Service strip ---------- */
.service-strip {
  background: var(--ink); color: var(--white);
  padding: 22px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.service-strip > div { display: flex; flex-direction: column; gap: 4px; }
.strip-label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.service-strip strong { font-family: var(--display); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; }
.strip-link { justify-self: end; display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; background: var(--orange); color: var(--white); font-weight: 600; font-size: 14.5px; transition: background 0.25s var(--ease); }
.strip-link:hover { background: var(--orange-deep); }
@media (max-width: 800px) { .service-strip { grid-template-columns: 1fr; gap: 16px; } .strip-link { justify-self: start; } }

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 140px) 28px; max-width: 1280px; margin: 0 auto; }
.section-heading { max-width: 880px; margin-bottom: 56px; }
.section-heading.compact { margin-bottom: 36px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--orange-deep); font-weight: 600; margin: 0 0 18px; }
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--orange); border-radius: 2px; }
.section h2 { font-family: var(--display); font-weight: 500; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.02; letter-spacing: -0.025em; margin: 0; color: var(--ink); }
.section h2 em { font-style: italic; color: var(--orange-deep); }
.section p { color: var(--slate); }

/* Intro */
.intro-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.intro-copy p { font-size: 18px; line-height: 1.7; }
.intro-copy p + p { margin-top: 18px; }
.inline-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 22px; }
.text-link { position: relative; font-weight: 600; color: var(--ink); padding-bottom: 2px; }
.text-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--orange); transform-origin: left; transition: transform 0.3s var(--ease); }
.text-link:hover::after { transform: scaleX(1.05); }
.photo-card { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.photo-card:hover img { transform: scale(1.04); }
.photo-card figcaption { position: absolute; left: 18px; bottom: 18px; right: 18px; background: rgba(28, 29, 32, 0.72); color: var(--white); padding: 10px 14px; border-radius: 12px; font-size: 13px; backdrop-filter: blur(8px); }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

/* Events */
.event-section { background: var(--paper-2); max-width: none; padding-left: 0; padding-right: 0; }
.event-section > .section-heading, .event-section > .event-grid { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card { background: var(--white); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; gap: 16px; border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; overflow: hidden; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.event-card.highlight { background: var(--ink); color: var(--white); border-color: var(--ink); }
.event-card.highlight::before { content: ''; position: absolute; top: -40%; right: -30%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(234, 119, 38, 0.55), transparent 70%); }
.event-card.highlight > * { position: relative; }
.event-card.highlight p { color: rgba(255, 255, 255, 0.75); }
.event-card h3 { font-family: var(--display); font-weight: 500; font-size: 26px; letter-spacing: -0.015em; margin: 0; }
.card-kicker { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-deep); font-weight: 600; }
.event-card.highlight .card-kicker { color: var(--orange-soft); }
.event-card p { margin: 0; flex: 1; }
.event-card .button-small, .event-card .card-actions { margin-top: auto; }
.card-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.event-card.highlight .button-small { background: var(--orange); color: var(--white); }
.event-card.highlight .button-small:hover { background: var(--orange-deep); }
.event-card:not(.highlight) .button-small { background: var(--ink); color: var(--white); }
@media (max-width: 900px) { .event-grid { grid-template-columns: 1fr; } }

/* Story */
.story-section { background: var(--ink); color: var(--white); max-width: none; padding-left: 0; padding-right: 0; }
.story-section .story-layout { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.story-section h2 { color: var(--white); }
.story-sticky { position: sticky; top: 120px; }
.story-body p { color: rgba(255, 255, 255, 0.78); font-size: 18px; line-height: 1.7; }
.history-panel { margin-top: 48px; padding: 36px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius); }
.history-panel h3 { font-family: var(--display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 24px; color: var(--white); }
.history-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.history-panel li { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.85); font-size: 15.5px; }
.history-panel li:last-child { border-bottom: 0; padding-bottom: 0; }
.history-panel li .year { font-family: var(--display); font-weight: 600; color: var(--orange-soft); font-size: 18px; letter-spacing: 0.02em; }
@media (max-width: 900px) {
  .story-section .story-layout { grid-template-columns: 1fr; gap: 36px; }
  .story-sticky { position: static; }
}

/* Values */
.values-section { background: var(--paper-2); max-width: none; padding-left: 0; padding-right: 0; }
.values-section > .section-heading, .values-section > .values-grid { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 28px; padding-right: 28px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 0.3s var(--ease); position: relative; background: var(--paper-2); }
.value-card:hover { background: var(--white); }
.value-card .num { font-family: var(--display); font-size: 14px; color: var(--orange-deep); font-weight: 600; letter-spacing: 0.08em; }
.value-card h3 { font-family: var(--display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em; margin: 16px 0 12px; }
.value-card p { margin: 0; color: var(--slate); }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

/* Beliefs */
.beliefs-section .split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.belief-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.belief-list li { position: relative; padding: 22px 24px 22px 56px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 16px; color: var(--ink-2); }
.belief-list li::before { content: ''; position: absolute; left: 22px; top: 28px; width: 18px; height: 18px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(234, 119, 38, 0.18); }
@media (max-width: 900px) { .beliefs-section .split-panel { grid-template-columns: 1fr; gap: 40px; } }

/* Connect */
.connect-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.connection-list { display: grid; gap: 8px; }
.connection-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); transition: padding 0.3s var(--ease); position: relative; }
.connection-row .title { font-family: var(--display); font-weight: 500; font-size: 30px; letter-spacing: -0.02em; display: block; }
.connection-row small { display: block; color: var(--mute); font-size: 14px; margin-top: 6px; }
.connection-row .chev { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
.connection-row:hover { padding-left: 16px; }
.connection-row:hover .chev { background: var(--ink); color: var(--white); transform: rotate(-45deg); }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, rgba(28, 29, 32, 0.1), rgba(28, 29, 32, 0.75)), url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=1400&q=80') center/cover; min-height: 420px; padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); }
.play-button { position: absolute; top: 28px; right: 28px; width: 64px; height: 64px; border-radius: 50%; background: var(--orange); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(234, 119, 38, 0.65); }
.play-button::after { content: ''; border-left: 14px solid var(--white); border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.video-card h3 { font-family: var(--display); font-weight: 500; font-size: 30px; letter-spacing: -0.02em; margin: 8px 0; }
.video-card p { color: rgba(255, 255, 255, 0.85); margin: 0; max-width: 360px; }
.video-card .card-kicker { color: var(--orange-soft); }
@media (max-width: 900px) { .connect-layout { grid-template-columns: 1fr; } }

/* Outward */
.outward-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: clamp(80px, 11vw, 140px) 28px; max-width: 1280px; margin: 0 auto; }
.outward-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.outward-media img { width: 100%; height: 100%; object-fit: cover; }
.outward-media::after { content: 'LIVING / OUTWARD'; position: absolute; bottom: 20px; left: 20px; right: 20px; font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.18em; color: var(--white); text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.outward-copy p { font-size: 17.5px; line-height: 1.7; }
.outward-copy p + p { margin-top: 18px; }
.outward-copy .inline-actions { margin-top: 32px; }
@media (max-width: 900px) { .outward-section { grid-template-columns: 1fr; gap: 32px; } }

/* Momentum */
.momentum-section { background: var(--ink); color: var(--white); max-width: none; padding-left: 0; padding-right: 0; }
.momentum-section .inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.momentum-section h2 { color: var(--white); }
.momentum-section h2 em { color: var(--orange-soft); }
.momentum-section p { color: rgba(255, 255, 255, 0.78); font-size: 17.5px; line-height: 1.7; }
.momentum-section p + p { margin-top: 16px; }
.video-embed { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; background: #000; box-shadow: var(--shadow-lg); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.momentum-section .button-primary { margin-top: 28px; }
@media (max-width: 900px) { .momentum-section .inner { grid-template-columns: 1fr; } }

/* Giving */
.giving-section { max-width: none; padding-left: 0; padding-right: 0; background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%); color: var(--white); position: relative; overflow: hidden; }
.giving-section .inner { max-width: 1280px; margin: 0 auto; padding: clamp(80px, 11vw, 140px) 28px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.giving-section::before { content: 'GIVE'; position: absolute; font-family: var(--display); font-weight: 900; font-size: clamp(280px, 38vw, 540px); letter-spacing: -0.05em; color: rgba(255, 255, 255, 0.09); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 1; line-height: 1; white-space: nowrap; }
.giving-section h2 { color: var(--white); font-size: clamp(40px, 6vw, 80px); }
.giving-section h2 em { color: rgba(255, 255, 255, 0.85); font-style: italic; }
.giving-section p { color: rgba(255, 255, 255, 0.9); font-size: 18px; max-width: 480px; }
.giving-section .button-primary { background: var(--ink); color: var(--white); box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6); }
.giving-section .button-primary:hover { background: var(--white); color: var(--ink); }
@media (max-width: 900px) { .giving-section .inner { grid-template-columns: 1fr; } }

/* Contact */
.contact-section { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: stretch; }
.contact-card { background: var(--ink); color: var(--white); padding: 56px; border-radius: var(--radius); position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; bottom: -60%; right: -30%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(234, 119, 38, 0.5), transparent 70%); }
.contact-card > * { position: relative; }
.contact-card h2 { color: var(--white); margin-bottom: 24px; }
.contact-card address { font-style: normal; font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; }
.contact-card address a { color: var(--orange-soft); }
.contact-links { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--display); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; background: var(--white); transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.contact-links a::after { content: '↗'; font-family: var(--body); font-size: 18px; opacity: 0.6; transition: transform 0.3s var(--ease); }
.contact-links a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.contact-links a:hover::after { transform: translate(3px, -3px); opacity: 1; }
@media (max-width: 900px) { .contact-section { grid-template-columns: 1fr; } .contact-card { padding: 40px; } }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 36px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--mute); max-width: 1280px; margin: 0 auto; }
.site-footer a { color: var(--ink); font-weight: 500; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-mesh { animation: none; }
}
