/* =============================================================
   Borderless Mission — Design System
   "Warm Minimal" · Apple-grade aesthetic
   Authentic SF Pro system type · warm sand + ink + clay accent
   ============================================================= */

/* ----------  Design Tokens  ---------- */
:root {
  /* Surfaces */
  --bg: #FFFFFF;          /* white sections */
  --bg-sand: #F8F9FA;     /* cool light gray (alt sections, old --color-background) */
  --bg-sand-2: #EAEFF3;
  --surface: #FFFFFF;
  --surface-tint: #F4F7FA;

  /* Ink */
  --ink: #2C3E50;         /* slate (old --color-primary) */
  --ink-2: #46586A;       /* secondary slate */
  --ink-3: #5E6E7C;       /* tertiary slate (AA on light) */

  /* Lines */
  --line: rgba(44, 62, 80, 0.12);
  --line-2: rgba(44, 62, 80, 0.07);

  /* Accent — warm clay / sunrise */
  --accent: #3498DB;            /* old --color-accent blue (decorative) */
  --accent-strong: #1F72B6;     /* darker blue for text/buttons (AA ~5:1) */
  --accent-deep: #18608F;       /* button hover */
  --accent-soft: #E6F2FB;
  --accent-tint: rgba(52, 152, 219, 0.10);  /* old --icon-background */
  --gold: #5DADE2;              /* light blue accent on dark surfaces */
  --rose: #5DADE2;
  --teal: #16A085;              /* old teal */
  --sky: #3498DB;
  --plum: #9B59B6;
  --sage: #2ECC71;

  /* Footer (deep warm ink) */
  --footer-bg: #2C3E50;
  --footer-ink: #ECF1F5;
  --footer-ink-2: #9FB2C0;
  --footer-line: rgba(255, 255, 255, 0.14);

  /* Radii */
  --r-sm: 14px;
  --r: 20px;
  --r-lg: 28px;
  --r-pill: 980px;

  /* Shadows — soft, layered */
  --sh-sm: 0 1px 2px rgba(26, 20, 12, .05), 0 3px 8px rgba(26, 20, 12, .05);
  --sh: 0 12px 30px -12px rgba(26, 20, 12, .18), 0 4px 12px -6px rgba(26, 20, 12, .10);
  --sh-lg: 0 36px 70px -24px rgba(26, 20, 12, .30), 0 14px 30px -16px rgba(26, 20, 12, .16);

  /* Layout */
  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Type */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --serif: ui-serif, "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --header-h: 64px;
}

/* ----------  Reset / Base  ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.08; letter-spacing: -0.025em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -64px; z-index: 200; padding: 11px 18px;
  background: var(--ink); color: #fff; border-radius: 12px; font-weight: 500;
  box-shadow: var(--sh); transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.section[id] { scroll-margin-top: var(--header-h); }
.bg-sand { background: var(--bg-sand); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Section headers */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent-strong);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--accent); border-radius: 2px;
  opacity: .7;
}
.eyebrow.center { display: inline-flex; }
.section-title {
  font-size: clamp(2rem, 1.2rem + 2.6vw, 3.1rem);
  letter-spacing: -0.03em;
}
.section-subtitle {
  margin-top: 20px; font-size: clamp(1.05rem, 1rem + .4vw, 1.2rem);
  color: var(--ink-2); line-height: 1.55; letter-spacing: -0.01em;
}
.section-head { max-width: 70ch; }
.section-head.center { margin-inline: auto; }

/* ----------  Icons  ---------- */
.icon { width: 24px; height: 24px; display: inline-block; fill: none;
  stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: middle; flex: none; }
.icon-lg { width: 28px; height: 28px; }

/* ----------  Buttons  ---------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; font-size: 1.02rem; font-weight: 500; letter-spacing: -0.01em;
  border: 0; border-radius: var(--r-pill); background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease);
  will-change: transform; white-space: nowrap;
}
.btn .icon { width: 19px; height: 19px; stroke-width: 1.9; transition: transform .35s var(--ease); }
.btn-primary { --btn-bg: var(--accent-strong); box-shadow: 0 8px 20px -8px rgba(31, 114, 182, .45); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(31, 114, 182, .5); }
.btn-primary:hover .icon { transform: translateX(3px); }
.btn-secondary { --btn-bg: rgba(29,23,15,.06); --btn-fg: var(--ink); }
.btn-secondary:hover { --btn-bg: rgba(29,23,15,.10); transform: translateY(-2px); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { --btn-bg: rgba(29,23,15,.04); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-lg { padding: 16px 30px; font-size: 1.08rem; }

/* Arrow text-link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 500; color: var(--accent-strong);
  letter-spacing: -0.01em;
}
.arrow-link .icon { width: 17px; height: 17px; stroke-width: 2; transition: transform .35s var(--ease); }
.arrow-link:hover .icon { transform: translateX(4px); }

/* Pills / chips */
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px;
  font-size: .85rem; font-weight: 500; color: var(--ink-2);
  background: rgba(29,23,15,.045); border: 1px solid var(--line-2); border-radius: var(--r-pill);
}
.chip .icon { width: 16px; height: 16px; stroke-width: 1.8; color: var(--accent); }

/* =============================================================
   HEADER / NAV  (frosted glass)
   ============================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .8);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line-2);
}
.nav-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--gold)); color: #fff;
  box-shadow: 0 4px 10px -3px rgba(169,85,31,.5);
}
.brand-mark .icon { width: 18px; height: 18px; stroke-width: 1.8; }
.brand-text { font-size: 1.04rem; }
.brand-text b { font-weight: 600; }
.brand-text span { color: var(--ink-3); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative; padding: 8px 14px; font-size: .98rem; font-weight: 450; color: var(--ink-2);
  border-radius: 10px; transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-link:hover { color: var(--ink); background: rgba(29,23,15,.045); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 10px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: rgba(44,62,80,.03);
}
.lang-opt {
  padding: 5px 11px; font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--ink-3);
  border-radius: var(--r-pill); transition: color .2s var(--ease), background .2s var(--ease);
}
.lang-opt:hover { color: var(--ink); }
.lang-opt.active { background: var(--ink); color: #fff; }
.nav-cta { padding: 9px 18px; font-size: .94rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; border-radius: 12px;
  position: relative; align-items: center; justify-content: center;
}
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 1.8px; background: var(--ink);
  border-radius: 2px; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero { position: relative; padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(60px, 8vw, 100px);
  overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(2.7rem, 1.4rem + 4.6vw, 4.6rem);
  letter-spacing: -0.04em; line-height: 1.02;
}
.hero h1 .grad {
  background: linear-gradient(115deg, #1F72B6 6%, #3498DB 55%, #5DADE2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .tagline { margin-top: 26px; font-size: clamp(1.1rem, 1rem + .55vw, 1.3rem); color: var(--ink-2);
  line-height: 1.5; max-width: 33ch; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5; background: var(--bg-sand-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23,19,14,.28)); }
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: rgba(255,255,255,.72); -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%); border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px; box-shadow: var(--sh);
}
.hero-badge .badge-ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent); }
.hero-badge .badge-ic .icon { width: 22px; height: 22px; stroke-width: 1.8; }
.hero-badge b { display: block; font-size: 1.18rem; letter-spacing: -.02em; }
.hero-badge span { font-size: .82rem; color: var(--ink-3); }

/* atmospheric blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; z-index: -1;
  pointer-events: none; }
.blob-1 { width: 520px; height: 520px; top: -160px; right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(52,152,219,.5), transparent 65%); }
.blob-2 { width: 460px; height: 460px; bottom: -180px; left: -160px;
  background: radial-gradient(circle at 50% 50%, rgba(93,173,226,.45), transparent 68%); }
.blob-3 { width: 360px; height: 360px; top: 30%; left: 38%;
  background: radial-gradient(circle, rgba(44,62,80,.22), transparent 70%); opacity: .45; }

/* stats strip */
.hero-stats { margin-top: clamp(48px, 7vw, 84px); display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; border-top: 1px solid var(--line-2); padding-top: 32px; }
.stat b { display: block; font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.4rem); letter-spacing: -.03em; }
.stat span { font-size: .92rem; color: var(--ink-3); }

/* =============================================================
   ABOUT
   ============================================================= */
.about-lead { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); line-height: 1.45; letter-spacing: -0.02em;
  max-width: 30ch; color: var(--ink); font-weight: 500; }
.about-top { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.about-body p { color: var(--ink-2); font-size: 1.08rem; line-height: 1.62; }
.about-body p + p { margin-top: 18px; }
.scripture {
  margin: 0; padding: 28px 0 28px 30px; border-left: 3px solid var(--accent);
  font-family: var(--serif); font-size: clamp(1.3rem, 1.1rem + .8vw, 1.75rem); line-height: 1.4;
  font-style: italic; color: var(--ink); position: relative;
}

/* photo band */
.about-band { margin-top: clamp(40px, 6vw, 72px); border-radius: var(--r-lg); overflow: hidden;
  position: relative; box-shadow: var(--sh); aspect-ratio: 16/6; min-height: 220px; }
.about-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.about-band .band-cap { position: absolute; left: clamp(20px,4vw,44px); bottom: clamp(18px,3vw,30px);
  color: #fff; max-width: 30ch; }
.about-band::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(23,19,14,.6), rgba(23,19,14,.15) 60%, transparent); }
.about-band .band-cap { z-index: 2; font-family: var(--serif); font-style: italic; font-size: 1.2rem; }

/* vision / mission */
.vm-grid { margin-top: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px); box-shadow: var(--sh-sm); }
.vm-card > .ic-badge { margin-bottom: 22px; }
.vm-card h3 { font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 14px; }
.vm-card p { color: var(--ink-2); line-height: 1.6; }
.vm-card p + p { margin-top: 14px; }
.mission-list { display: grid; gap: 16px; margin-top: 4px; }
.mission-list li { display: flex; gap: 13px; color: var(--ink-2); line-height: 1.5; }
.mission-list .icon { color: var(--accent); width: 22px; height: 22px; margin-top: 1px; stroke-width: 2; }

/* icon badge (rounded tinted square) */
.ic-badge { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--accent-tint); color: var(--accent); }
.ic-badge .icon { width: 27px; height: 27px; stroke-width: 1.7; }

/* core values — bento */
.values-head { margin-top: clamp(56px, 8vw, 96px); margin-bottom: 32px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 30px; box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--line); }
.value-card .ic-badge { margin-bottom: 20px; }
.value-card h4 { font-size: 1.2rem; letter-spacing: -.02em; margin-bottom: 9px; }
.value-card p { color: var(--ink-2); font-size: .98rem; line-height: 1.55; }

/* =============================================================
   PROGRAMS
   ============================================================= */
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: clamp(40px,5vw,60px); }
.program-card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.program-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-sand-2); }
.program-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.program-card:hover .program-media img { transform: scale(1.05); }
.program-media .ic-float {
  position: absolute; left: 18px; bottom: -22px; width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px) saturate(180%); backdrop-filter: blur(14px) saturate(180%);
  color: var(--accent); box-shadow: var(--sh); border: 1px solid rgba(255,255,255,.6);
}
.program-media .ic-float .icon { width: 26px; height: 26px; stroke-width: 1.7; }
.program-body { padding: 34px 28px 26px; display: flex; flex-direction: column; flex: 1; }
.program-body h3 { font-size: 1.32rem; letter-spacing: -.02em; margin-bottom: 11px; }
.program-body p { color: var(--ink-2); line-height: 1.55; flex: 1; }
.program-body .arrow-link { margin-top: 20px; }

/* featured initiatives */
.featured-head { margin-top: clamp(64px,8vw,104px); margin-bottom: 30px; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.featured-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; box-shadow: var(--sh); isolation: isolate; }
.featured-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .9s var(--ease); }
.featured-card::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(15,12,8,.86) 4%, rgba(15,12,8,.5) 40%, rgba(15,12,8,.12) 78%); }
.featured-card:hover img { transform: scale(1.05); }
.featured-content { padding: clamp(26px, 3vw, 40px); color: #fff; }
.featured-content .ic-badge { background: rgba(255,255,255,.16); color: #fff; margin-bottom: 18px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.featured-content h3 { font-size: clamp(1.4rem, 1.2rem + .8vw, 1.9rem); margin-bottom: 12px; letter-spacing: -.025em; }
.featured-content p { color: rgba(255,255,255,.86); line-height: 1.55; max-width: 46ch; }
.featured-content .arrow-link { margin-top: 20px; color: #fff; }
.featured-content .arrow-link .icon { stroke: #fff; }

/* =============================================================
   EVENTS
   ============================================================= */
.event-featured {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; margin-top: clamp(40px,5vw,56px);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh);
}
.event-media { position: relative; min-height: 320px; background: var(--bg-sand-2); }
.event-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.event-media .event-tag { position: absolute; top: 20px; left: 20px; z-index: 2;
  padding: 8px 15px; background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px); border-radius: var(--r-pill); font-size: .82rem; font-weight: 600;
  color: var(--accent-strong); display: inline-flex; gap: 7px; align-items: center; }
.event-tag .icon { width: 15px; height: 15px; color: var(--accent); }
.event-info { padding: clamp(30px, 3.5vw, 48px); }
.event-info h3 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2.05rem); letter-spacing: -.03em; }
.event-info .event-sub { margin-top: 10px; color: var(--accent-strong); font-weight: 500; font-size: 1.02rem; }
.event-info .event-desc { margin-top: 18px; color: var(--ink-2); line-height: 1.6; }
.event-expect { margin-top: 26px; }
.event-expect h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3);
  margin-bottom: 14px; }
.expect-list { display: flex; flex-wrap: wrap; gap: 10px; }
.expect-list .chip .icon { color: var(--accent); }

/* schedule */
.schedule-head { margin-top: clamp(60px,8vw,96px); margin-bottom: 28px; }
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.schedule-card {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 26px;
  box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border-top: 3px solid var(--accent);
}
.schedule-card.is-alpine { border-top-color: var(--teal); }
.schedule-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.schedule-loc { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase; color: var(--accent-strong); }
.schedule-card.is-alpine .schedule-loc { color: #0F7A6A; }
.schedule-loc .icon { width: 15px; height: 15px; }
.schedule-date { margin-top: 10px; font-size: 1.34rem; font-weight: 600; letter-spacing: -.02em; }
.schedule-card p { margin-top: 12px; color: var(--ink-2); font-size: .95rem; line-height: 1.5; }
.schedule-venue { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-2);
  font-size: .9rem; color: var(--ink-3); display: flex; align-items: center; gap: 7px; }
.schedule-venue .icon { width: 16px; height: 16px; color: var(--ink-3); }
.schedule-venue b { color: var(--ink-2); font-weight: 500; }

/* benefits */
.benefits-head { margin-top: clamp(60px,8vw,96px); margin-bottom: 30px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 28px; box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.benefit-card .ic-badge { background: var(--accent-tint); background: color-mix(in srgb, var(--bc) 14%, transparent); color: var(--bc);
  margin-bottom: 18px; }
.benefit-card h4 { font-size: 1.12rem; letter-spacing: -.015em; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-2); font-size: .94rem; line-height: 1.5; }

/* partners + cta */
.partners { margin-top: clamp(56px,7vw,88px); text-align: center; }
.partners .ptxt { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-3); }
.partners .plogos { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 14px 22px; font-family: var(--serif); font-size: 1.25rem; color: var(--ink); }
.partners .pdiv { color: var(--accent-strong); font-style: italic; }
.events-cta { margin-top: 44px; text-align: center; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; margin-top: clamp(40px,5vw,56px); }
.contact-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 44px); box-shadow: var(--sh-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 500; color: var(--ink-2); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface-tint); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-tint);
}
.checkbox-field { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 22px; cursor: pointer; }
.checkbox-field input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex: none; }
.checkbox-field span { font-size: .92rem; color: var(--ink-2); line-height: 1.45; }
.contact-card .btn { width: 100%; }
.form-message { margin-bottom: 18px; padding: 13px 16px; border-radius: var(--r-sm); font-size: .94rem;
  display: none; }
.form-message.success { display: block; background: rgba(46,204,113,.12); color: #1E8449;
  border: 1px solid rgba(46,204,113,.30); }
.form-message.error { display: block; background: rgba(231,76,60,.10); color: #C0392B;
  border: 1px solid rgba(231,76,60,.28); }

/* contact info */
.info-card { background: var(--ink); color: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh); display: flex; flex-direction: column; }
.info-photo { aspect-ratio: 16/9; position: relative; }
.info-photo img { width: 100%; height: 100%; object-fit: cover; }
.info-photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(29,29,31,.95)); }
.info-body { padding: clamp(26px, 3vw, 36px); }
.info-body h3 { font-size: 1.25rem; margin-bottom: 22px; }
.detail { display: flex; gap: 14px; margin-bottom: 22px; }
.detail .icon { color: var(--gold); width: 22px; height: 22px; margin-top: 2px; }
.detail strong { display: block; font-weight: 500; font-size: .82rem; text-transform: uppercase;
  letter-spacing: .04em; color: var(--footer-ink-2); margin-bottom: 4px; }
.detail a, .detail p { color: #fff; }
.detail a:hover { color: var(--gold); }
.phone-line { display: flex; align-items: center; gap: 9px; }
.phone-line .cc { font-size: .72rem; font-weight: 600; color: var(--footer-ink-2);
  border: 1px solid var(--footer-line); border-radius: 5px; padding: 1px 6px; }
.org-block { margin-top: 4px; padding-top: 24px; border-top: 1px solid var(--footer-line); }
.org-block h4 { font-size: .95rem; font-weight: 500; line-height: 1.45; color: var(--footer-ink); margin-bottom: 14px; }
.org-block p { font-size: .9rem; color: var(--footer-ink-2); }
.org-block p + p { margin-top: 5px; }
.org-block b { color: #fff; font-weight: 500; }

/* =============================================================
   FOOTER  (deep warm ink)
   ============================================================= */
.site-footer { background: var(--footer-bg); color: var(--footer-ink-2); }
.footer-top { padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); }
.footer-brand .brand { color: var(--footer-ink); margin-bottom: 18px; }
.footer-brand .brand-text span { color: var(--footer-ink-2); }
.footer-mission { font-size: .98rem; line-height: 1.6; max-width: 38ch; }
.footer-col h3 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--footer-ink);
  margin-bottom: 18px; font-weight: 600; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--footer-ink-2); transition: color .25s var(--ease); font-size: .98rem; }
.footer-col a:hover { color: var(--footer-ink); }
.footer-contact .fc-item { display: flex; gap: 11px; margin-bottom: 14px; font-size: .96rem; align-items: flex-start; }
.footer-contact .icon { color: var(--gold); width: 19px; height: 19px; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--footer-line); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; font-size: .9rem; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--footer-ink); }

/* =============================================================
   LEGAL / PROSE  (privacy, terms)
   ============================================================= */
.legal { padding: calc(var(--header-h) + clamp(48px,7vw,88px)) 0 clamp(56px,8vw,96px); }
.legal-wrap { max-width: 780px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.2rem, 1.6rem + 2vw, 3rem); letter-spacing: -.03em; margin-bottom: 14px; }
.legal .updated { color: var(--ink-3); font-size: .95rem; margin-bottom: 8px; }
.legal .lead { color: var(--ink-2); font-size: 1.1rem; line-height: 1.6; margin-bottom: 8px; }
.legal section { padding: 30px 0; border-top: 1px solid var(--line-2); }
.legal section:first-of-type { border-top: 0; }
.legal h2 { font-size: 1.5rem; letter-spacing: -.02em; margin-bottom: 14px; }
.legal h3 { font-size: 1.12rem; color: var(--ink); margin: 22px 0 10px; }
.legal p { color: var(--ink-2); line-height: 1.65; margin-bottom: 12px; }
.legal ul { display: grid; gap: 9px; margin: 4px 0 16px; }
.legal li { display: flex; gap: 11px; color: var(--ink-2); line-height: 1.55; }
.legal li::before { content: ""; width: 6px; height: 6px; margin-top: 9px; border-radius: 50%;
  background: var(--accent); flex: none; }
.legal a { color: var(--accent); font-weight: 500; }
.legal a:hover { text-decoration: underline; }

/* =============================================================
   MOTION  (scroll reveal)
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-visible { opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms); }

/* hero load animation */
.hero [data-load] { opacity: 0; transform: translateY(24px); }
.hero.loaded [data-load] { opacity: 1; transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal], .hero [data-load] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .program-card:hover .program-media img, .featured-card:hover img { transform: none; }
  * { animation-duration: .001ms !important; transition-duration: .12s !important; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .values-grid, .schedule-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
}
@media (max-width: 860px) {
  :root { --header-h: 58px; }
  .nav-list, .nav-actions .nav-cta, .nav-actions .lang-switch { display: none; }
  .nav-toggle { display: flex; }

  /* mobile menu panel */
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(255,255,255,.985); -webkit-backdrop-filter: blur(22px) saturate(180%);
    backdrop-filter: blur(22px) saturate(180%); border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 26px; gap: 2px; transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .site-header.menu-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .site-header.menu-open { background: rgba(255,255,255,.985);
    -webkit-backdrop-filter: blur(22px) saturate(180%); backdrop-filter: blur(22px) saturate(180%); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .nav-link { padding: 13px 14px; font-size: 1.1rem; border-radius: 12px; }
  .nav-actions { display: flex; flex-direction: column; align-items: stretch; margin: 14px 0 0; gap: 10px; }
  .site-header.menu-open .nav-list { display: flex; }
  .site-header.menu-open .nav-actions .nav-cta,
  .site-header.menu-open .nav-actions .lang-switch { display: inline-flex; }
  .nav-actions .nav-cta { width: 100%; padding: 14px; font-size: 1.05rem; }
  .nav-actions .lang-switch { width: 100%; justify-content: stretch; padding: 4px; }
  .nav-actions .lang-switch .lang-opt { flex: 1; text-align: center; padding: 12px; font-size: .98rem; }

  .hero-grid { grid-template-columns: 1fr; gap: clamp(36px,8vw,52px); }
  .hero-visual { max-width: 460px; margin-inline: auto; }
  .hero-badge { left: 10px; }
  .hero-copy { max-width: none; }
  .about-top, .vm-grid, .programs-grid, .featured-grid, .event-featured, .contact-grid {
    grid-template-columns: 1fr; }
  .event-media { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --gutter: 20px; }
  .values-grid, .schedule-grid, .benefits-grid, .form-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .blob { display: none; }
  .about-band { aspect-ratio: auto; height: 220px; min-height: 0; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; }
  .footer-grid, .footer-bottom-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}
