/* ── DESIGN TOKENS ── */
:root {
   --white: #FFFFFF;
   --off: #F8FAFC;
   /* Very Light Blue-Gray */
   --fog: #F0FDF4;
   /* Light Mint-Green Tint */
   --line: #E2E8F0;
   --mist: #94A3B8;
   --stone: #475569;
   --ink: #0F172A;
   /* Deep Slate Blue */
   --ink-mid: #334155;
   --pop: #10B981;
   /* Emerald Green for Growth & Hope */
   --pop-mid: rgba(16, 185, 129, 0.08);
   --brand: #2563EB;
   /* Royal Blue for Trust */
   --brand-soft: #EFF6FF;
   --brand-deep: #1E40AF;
   --brand-green: #059669;

   --font-display: 'Merriweather', Georgia, serif;
   --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

   --ease: cubic-bezier(.22, .68, 0, 1.2);
   --ease-out: cubic-bezier(0, 0, .2, 1);
   --t: .42s;

   --max: 1280px;
   --gap: clamp(24px, 5vw, 80px);

   /* Glassmorphism */
   --glass: rgba(255, 255, 255, 0.9);
   --blur: blur(20px);
   --glass-border: 1px solid rgba(37, 99, 235, 0.1);
}

/* ── ACCESSIBILITY FALLBACKS ── */
@media (prefers-reduced-motion: reduce) {

   *,
   *::before,
   *::after {
      animation-delay: -1ms !important;
      animation-duration: 1ms !important;
      animation-iteration-count: 1 !important;
      background-attachment: initial !important;
      scroll-behavior: auto !important;
      transition-duration: 0s !important;
      transition-delay: 0s !important;
   }
}

/* Fallback for cursor: none. We only hide the cursor if JS is active and the custom cursor exists. 
   We will add a 'js-active' class to the body in main.js */
body.js-active {
   cursor: none;
}

body.js-active button,
body.js-active a,
body.js-active .amt,
body.js-active .sub-btn {
   cursor: none;
}

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

html {
   scroll-behavior: smooth;
   -webkit-font-smoothing: antialiased;
   font-size: 16px
}

body {
   font-family: var(--font-body);
   background: var(--white);
   color: var(--ink);
   overflow-x: hidden
}

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

a {
   color: inherit;
   text-decoration: none
}

button {
   font-family: inherit
}

::-webkit-scrollbar {
   width: 3px
}

::-webkit-scrollbar-track {
   background: var(--off)
}

::-webkit-scrollbar-thumb {
   background: var(--ink);
   border-radius: 2px
}

/* ── CURSOR ── */
.cur {
   position: fixed;
   width: 8px;
   height: 8px;
   background: var(--brand);
   border-radius: 50%;
   pointer-events: none;
   z-index: 9999;
   transform: translate3d(var(--mx, -20px), var(--my, -20px), 0);
   transition: width .2s, height .2s, background .2s;
   will-change: transform
}

.cur-ring {
   position: fixed;
   width: 32px;
   height: 32px;
   border: 1px solid var(--brand);
   border-radius: 50%;
   pointer-events: none;
   z-index: 9998;
   transform: translate3d(var(--rx, -40px), var(--ry, -40px), 0);
   transition: width .35s var(--ease), height .35s var(--ease), border-color .2s;
   opacity: .4;
   will-change: transform
}

.cur.hov {
   width: 16px;
   height: 16px;
   background: var(--pop)
}

.cur-ring.hov {
   transform: translate3d(var(--rx, -40px), var(--ry, -40px), 0) scale(1.75);
   border-color: var(--pop);
   opacity: .6
}

/* ── TOAST ── */
.toast {
   position: fixed;
   bottom: 32px;
   right: 32px;
   background: var(--ink);
   color: var(--white);
   padding: 18px 26px;
   border-left: 3px solid var(--pop);
   z-index: 8000;
   font-size: .85rem;
   line-height: 1.5;
   max-width: 320px;
   transform: translateY(12px);
   opacity: 0;
   pointer-events: none;
   transition: transform .5s var(--ease), opacity .5s
}

.toast.on {
   transform: none;
   opacity: 1;
   pointer-events: auto
}

.toast strong {
   display: block;
   margin-bottom: 3px;
   color: var(--pop)
}

/* ── REVEAL ── */
.rv {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity .75s var(--ease-out), transform .75s var(--ease-out)
}

.rv.in {
   opacity: 1;
   transform: none
}

.rv[data-d="1"] {
   transition-delay: .1s
}

.rv[data-d="2"] {
   transition-delay: .2s
}

.rv[data-d="3"] {
   transition-delay: .3s
}

.rv[data-d="4"] {
   transition-delay: .4s
}

/* ── CONTAINER ── */
.wrap {
   max-width: var(--max);
   margin: 0 auto;
   padding: 0 var(--gap)
}

/* ── LABEL ── */
.lbl {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-family: var(--font-body);
   font-size: .68rem;
   font-weight: 600;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--stone)
}

.lbl::before {
   content: '';
   display: block;
   width: 24px;
   height: 1px;
   background: var(--mist)
}

/* ── UTILITIES ── */
.text-pop {
   color: var(--pop) !important
}

.text-brand {
   color: var(--brand) !important
}

.text-white {
   color: var(--white) !important
}

.bg-pop {
   background: var(--pop) !important
}

.bg-brand {
   background: var(--brand) !important
}

.bg-white {
   background: var(--white) !important
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   height: 72px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 var(--gap);
   background: rgba(255, 255, 255, 0);
   border-bottom: 1px solid transparent;
   transition: background var(--t), border-color var(--t)
}

.nav.stuck {
   background: var(--glass);
   border-bottom-color: var(--line);
   backdrop-filter: var(--blur);
   -webkit-backdrop-filter: var(--blur)
}

.nav-brand {
   display: flex;
   align-items: center;
   gap: 14px
}

.nav-mark {
   width: 36px;
   height: 36px;
   border: 1px solid var(--ink);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.05rem;
   color: var(--ink);
   transition: background var(--t), color var(--t)
}

.nav-brand:hover .nav-mark {
   background: var(--ink);
   color: var(--white)
}

.nav-name {
   font-family: var(--font-display);
   font-size: 1.1rem;
   font-weight: 600;
   letter-spacing: .02em
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 32px;
   list-style: none
}

.nav-links a {
   font-size: .78rem;
   font-weight: 500;
   letter-spacing: .07em;
   text-transform: uppercase;
   color: var(--ink-mid);
   position: relative;
   transition: color var(--t)
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: -3px;
   left: 0;
   width: 0;
   height: 1px;
   background: var(--pop);
   transition: width var(--t)
}

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

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

.nav-cta {
   font-size: .76rem;
   font-weight: 600;
   letter-spacing: .1em;
   text-transform: uppercase;
   padding: 10px 22px;
   border: 1px solid var(--ink);
   color: var(--ink);
   transition: background var(--t), color var(--t)
}

.nav-cta:hover {
   background: var(--pop);
   color: var(--white);
   border-color: var(--pop)
}

.hamburger {
   display: none;
   flex-direction: column;
   gap: 6px;
   background: none;
   border: none;
   padding: 8px;
   z-index: 1001
}

.hamburger span {
   display: block;
   width: 24px;
   height: 1px;
   background: var(--ink);
   transition: var(--t)
}

.hamburger:hover span:nth-child(2) {
   transform: translateX(4px)
}

.hamburger.close span:nth-child(1) {
   transform: translateY(7px) rotate(45deg)
}

.hamburger.close span:nth-child(2) {
   opacity: 0;
   transform: translateX(10px)
}

.hamburger.close span:nth-child(3) {
   transform: translateY(-7px) rotate(-45deg)
}

.mob {
   position: fixed;
   inset: 0;
   background: var(--white);
   z-index: 999;
   display: flex;
   /* Hidden by default */
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   padding: 120px var(--gap) 40px;
   gap: 0;
   overflow-y: auto;
   opacity: 0;
   visibility: hidden;
   pointer-events: none;
   transform: translateY(-10px);
   transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s
}

.mob.open {
   display: flex;
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
   transform: none;
   background: var(--glass);
   backdrop-filter: var(--blur);
   -webkit-backdrop-filter: var(--blur)
}

.mob a {
   font-family: var(--font-display);
   font-size: clamp(2rem, 6vw, 3.2rem);
   font-weight: 400;
   color: var(--ink);
   border-bottom: 1px solid var(--line);
   width: 100%;
   padding: 22px 0;
   transition: color var(--t), padding-left var(--t);
   opacity: 0;
   transform: translateY(10px)
}

.mob.open a {
   opacity: 1;
   transform: none
}

.mob a:nth-child(2) {
   transition-delay: .1s
}

.mob a:nth-child(3) {
   transition-delay: .15s
}

.mob a:nth-child(4) {
   transition-delay: .2s
}

.mob a:nth-child(5) {
   transition-delay: .25s
}

.mob a:nth-child(6) {
   transition-delay: .3s
}

.mob a:nth-child(7) {
   transition-delay: .35s
}

.mob a:nth-child(8) {
   transition-delay: .4s
}

.mob a:first-of-type {
   border-top: 1px solid var(--line)
}

.mob a:hover {
   color: var(--pop);
   padding-left: 8px
}

.mob-close {
   position: absolute;
   top: 32px;
   right: var(--gap);
   background: none;
   border: none;
   font-size: 2rem;
   color: var(--stone);
   transition: color var(--t), transform var(--t);
   display: flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px
}

.mob-close:hover {
   color: var(--ink);
   transform: rotate(90deg)
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
   min-height: 100svh;
   padding-top: 72px;
   background: var(--white);
   position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column
}

.hero::before {
   content: '';
   position: absolute;
   inset: 0;
   background:
      radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.12) 0px, transparent 50%),
      radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
      radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
      radial-gradient(at 0% 100%, rgba(37, 99, 235, 0.08) 0px, transparent 50%);
   z-index: 0;
   pointer-events: none
}

.hero-body {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding: 120px var(--gap) 80px;
   width: 100%;
   max-width: var(--max);
   margin: 0 auto;
   position: relative;
   z-index: 1
}

.hero-eyebrow {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: .7rem;
   font-weight: 600;
   letter-spacing: .2em;
   text-transform: uppercase;
   color: var(--stone);
   margin-bottom: 28px;
   animation: fadeUp .8s var(--ease-out) both
}

.hero-eyebrow i {
   display: block;
   width: 36px;
   height: 1px;
   background: var(--mist)
}

.h1 {
   font-family: var(--font-display);
   font-size: clamp(2.6rem, 7.5vw, 5.2rem);
   font-weight: 300;
   line-height: 1.05;
   letter-spacing: -.02em;
   color: var(--ink);
   animation: fadeUp .8s .1s var(--ease-out) both
}

.h1 em {
   font-style: italic;
   font-weight: 300;
   color: var(--pop)
}

.hero-sub {
   font-size: clamp(.9rem, 1.2vw, 1rem);
   line-height: 1.6;
   color: var(--stone);
   max-width: 540px;
   margin: 28px 0 44px;
   animation: fadeUp .8s .22s var(--ease-out) both
}

.hero-btns {
   display: flex;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
   animation: fadeUp .8s .34s var(--ease-out) both
}

.btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: .76rem;
   font-weight: 600;
   letter-spacing: .1em;
   text-transform: uppercase;
   padding: 14px 30px;
   border: 1px solid var(--brand);
   transition: background var(--t), color var(--t), transform var(--t)
}

.btn-fill {
   background: var(--brand);
   color: var(--white);
   border-color: var(--brand)
}

.btn-fill:hover {
   background: var(--brand-deep);
   border-color: var(--brand-deep);
   transform: translateY(-2px)
}

.btn-ghost {
   background: transparent;
   color: var(--brand);
   border-color: var(--brand)
}

.btn-ghost:hover {
   background: var(--brand);
   color: var(--white)
}

.hero-strip {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   border-top: 1px solid var(--line);
   max-width: var(--max);
   margin: 0 auto;
   width: 100%
}

.h-stat {
   padding: 26px var(--gap);
   border-right: 1px solid var(--line)
}

.h-stat:last-child {
   border-right: none
}

.h-stat-n {
   font-family: var(--font-display);
   font-size: clamp(2rem, 3.5vw, 2.8rem);
   font-weight: 600;
   color: var(--ink);
   line-height: 1;
   display: block
}

.h-stat-l {
   font-size: .68rem;
   font-weight: 500;
   letter-spacing: .14em;
   text-transform: uppercase;
   color: var(--stone);
   margin-top: 5px;
   display: block
}

.scroll-cue {
   position: absolute;
   bottom: 36px;
   right: var(--gap);
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 6px;
   z-index: 2;
   animation: fadeIn 1s .8s both
}

.scroll-cue-line {
   width: 1px;
   height: 44px;
   background: linear-gradient(to bottom, transparent, var(--brand));
   animation: sPulse 2s ease-in-out infinite
}

@keyframes sPulse {

   0%,
   100% {
      opacity: .3;
      transform: scaleY(.4)
   }

   50% {
      opacity: 1;
      transform: scaleY(1)
   }
}

.scroll-cue span {
   font-size: .58rem;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--mist);
   writing-mode: vertical-rl
}

/* ══════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════ */
.marquee-wrap {
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line);
   overflow: hidden;
   padding: 13px 0;
   background: var(--off)
}

.marquee-inner {
   display: flex;
   white-space: nowrap;
   animation: mq 32s linear infinite
}

.marquee-inner:hover {
   animation-play-state: paused
}

.mq-item {
   display: inline-flex;
   align-items: center;
   gap: 14px;
   padding: 0 36px;
   font-family: var(--font-display);
   font-size: 1rem;
   font-style: italic;
   font-weight: 300;
   color: var(--ink-mid);
   flex-shrink: 0
}

.mq-dot {
   width: 3px;
   height: 3px;
   border-radius: 50%;
   background: var(--pop);
   flex-shrink: 0
}

@keyframes mq {
   0% {
      transform: translateX(0)
   }

   100% {
      transform: translateX(-50%)
   }
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.sec {
   padding: clamp(80px, 10vw, 130px) var(--gap)
}

.sec-head {
   margin-bottom: 60px
}

.sec-lbl {
   margin-bottom: 18px
}

.sec-title {
   font-family: var(--font-display);
   font-size: clamp(2.4rem, 4.5vw, 3.8rem);
   font-weight: 300;
   line-height: 1.1;
   letter-spacing: -.015em;
   color: var(--ink)
}

.sec-title em {
   font-style: italic;
   color: var(--pop)
}

.sec-body {
   font-size: .95rem;
   line-height: 1.8;
   color: var(--stone);
   max-width: 500px;
   margin-top: 16px
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
   border-top: 1px solid var(--line)
}

.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(40px, 6vw, 100px);
   align-items: start
}

.about-img {
   position: relative;
   aspect-ratio: 4/5;
   overflow: hidden;
   background: var(--fog)
}

.about-img-inner {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--font-display);
   font-size: 11rem;
   color: var(--ink);
   opacity: .05;
   font-weight: 700;
   user-select: none
}

.about-badge {
   position: absolute;
   bottom: 24px;
   left: 24px;
   background: var(--white);
   border: 1px solid var(--line);
   padding: 18px 22px
}

.about-badge-n {
   font-family: var(--font-display);
   font-size: 2.4rem;
   font-weight: 600;
   color: var(--ink);
   line-height: 1
}

.about-badge-l {
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .15em;
   text-transform: uppercase;
   color: var(--stone);
   margin-top: 4px
}

.pillars {
   display: flex;
   flex-direction: column;
   margin-top: 36px
}

.pillar {
   display: flex;
   align-items: flex-start;
   gap: 18px;
   padding: 18px 0;
   border-bottom: 1px solid var(--line);
   transition: padding-left var(--t)
}

.pillar:first-child {
   border-top: 1px solid var(--line)
}

.pillar:hover {
   padding-left: 8px
}

.pillar-ico {
   width: 40px;
   height: 40px;
   flex-shrink: 0;
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   margin-top: 2px;
   transition: background var(--t), border-color var(--t);
   color: var(--stone)
}

.pillar:hover .pillar-ico {
   background: var(--ink);
   border-color: var(--ink);
   color: var(--white)
}

.ph {
   font-size: inherit
}

.pillar-t {
   font-weight: 600;
   font-size: .88rem;
   color: var(--ink);
   margin-bottom: 3px
}

.pillar-d {
   font-size: .8rem;
   color: var(--stone);
   line-height: 1.55
}

/* ══════════════════════════════════════
   NUMBERS
══════════════════════════════════════*/
/* ── NUMBERS ── */
.numbers {
   background: var(--off);
   padding: clamp(56px, 8vw, 96px) var(--gap);
   border-top: 1px solid var(--line);
   border-bottom: 1px solid var(--line)
}

.num-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr)
}

.num-item {
   padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
   border-right: 1px solid var(--line);
   transition: background var(--t)
}

.num-item:last-child {
   border-right: none
}

.num-item:hover {
   background: var(--fog)
}

.num-n {
   font-family: var(--font-display);
   font-size: clamp(2.8rem, 4.5vw, 4rem);
   font-weight: 700;
   color: var(--ink);
   line-height: 1;
   display: block
}

.num-accent {
   color: var(--pop)
}

.num-l {
   font-size: .68rem;
   font-weight: 600;
   letter-spacing: .14em;
   text-transform: uppercase;
   color: var(--stone);
   margin-top: 8px;
   display: block
}

/* ══════════════════════════════════════
   PROJECTS
══════════════════════════════════════ */
.projects {
   border-top: 1px solid var(--line)
}

.proj-hd {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 56px
}

.proj-count {
   font-family: var(--font-display);
   font-size: .9rem;
   font-style: italic;
   color: var(--stone)
}

.proj-list {
   display: flex;
   flex-direction: column
}

.proj-row {
   display: grid;
   grid-template-columns: 72px 1fr auto;
   align-items: center;
   gap: 28px;
   padding: 28px 0;
   border-top: 1px solid var(--line);
   position: relative;
   overflow: hidden;
   transition: padding-left var(--t)
}

.proj-row:last-child {
   border-bottom: 1px solid var(--line)
}

.proj-row::before {
   content: '';
   position: absolute;
   inset: 0;
   background: var(--brand-soft);
   transform: translateX(-100%);
   transition: transform .5s var(--ease-out);
   z-index: 0
}

.proj-row:hover {
   padding-left: 16px
}

.proj-row:hover::before {
   transform: translateX(0)
}

.proj-row:hover .proj-num {
   color: var(--pop)
}

.proj-row:hover .proj-title {
   color: var(--ink)
}

.proj-row:hover .proj-info {
   color: var(--ink-mid)
}

.proj-row:hover .proj-chip {
   color: var(--stone);
   border-color: var(--stone)
}

.proj-row:hover .proj-arr {
   color: var(--pop);
   transform: translateX(4px)
}

.proj-num {
   font-family: var(--font-display);
   font-size: 1.5rem;
   font-weight: 300;
   color: var(--mist);
   position: relative;
   z-index: 1;
   transition: color var(--t)
}

.proj-body {
   position: relative;
   z-index: 1
}

.proj-title {
   font-family: var(--font-display);
   font-size: 1.5rem;
   font-weight: 600;
   color: var(--ink);
   margin-bottom: 5px;
   transition: color var(--t)
}

.proj-info {
   font-size: .82rem;
   color: var(--stone);
   line-height: 1.55;
   transition: color var(--t);
   max-width: 540px
}

.proj-meta {
   display: flex;
   align-items: center;
   gap: 16px;
   position: relative;
   z-index: 1
}

.proj-chip {
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .12em;
   text-transform: uppercase;
   color: var(--stone);
   border: 1px solid var(--line);
   padding: 6px 13px;
   white-space: nowrap;
   transition: color var(--t), border-color var(--t)
}

.proj-arr {
   color: var(--mist);
   font-size: 1rem;
   transition: color var(--t), transform var(--t)
}

/* ══════════════════════════════════════
   COST TABLE
══════════════════════════════════════ */
.costs {
   background: var(--off);
   border-top: 1px solid var(--line)
}

.costs-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(40px, 6vw, 100px);
   align-items: start
}

.cost-table {
   margin-top: 36px
}

.cost-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
   border-bottom: 1px solid var(--line);
   gap: 12px;
   transition: padding-left var(--t)
}

.cost-row:first-child {
   border-top: 1px solid var(--line)
}

.cost-row:hover {
   padding-left: 6px
}

.cost-lbl {
   display: flex;
   align-items: center;
   gap: 14px;
   font-size: .88rem;
   color: var(--ink-mid);
   font-weight: 500
}

.cost-ico {
   width: 30px;
   height: 30px;
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .85rem;
   flex-shrink: 0
}

.cost-amt {
   font-family: var(--font-display);
   font-size: 1.1rem;
   font-weight: 600;
   color: var(--ink);
   white-space: nowrap;
   text-align: right
}

.cost-per {
   font-size: .65rem;
   color: var(--stone);
   font-family: var(--font-body);
   font-weight: 400;
   display: block;
   margin-top: 1px
}

.costs-note {
   font-size: .82rem;
   color: var(--stone);
   line-height: 1.7;
   padding-left: 14px;
   border-left: 2px solid var(--pop);
   margin: 32px 0 28px
}

/* ══════════════════════════════════════
   STORIES
══════════════════════════════════════ */
.stories {
   border-top: 1px solid var(--line)
}

.stories-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1px;
   background: var(--line);
   border: 1px solid var(--line);
   margin-top: 56px
}

.story {
   background: var(--white);
   padding: clamp(24px, 3vw, 40px);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   min-height: 260px;
   transition: background var(--t)
}

.story:hover {
   background: var(--off)
}

.story-q {
   font-family: var(--font-display);
   font-size: clamp(.98rem, 1.2vw, 1.1rem);
   font-weight: 300;
   line-height: 1.72;
   color: var(--ink-mid);
   font-style: italic;
   flex: 1
}

.story-foot {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-top: 24px
}

.story-av {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--ink);
   color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--font-display);
   font-weight: 600;
   font-size: .9rem;
   flex-shrink: 0
}

.story-name {
   font-size: .8rem;
   font-weight: 600;
   color: var(--ink)
}

.story-role {
   font-size: .72rem;
   color: var(--stone);
   margin-top: 1px
}

.story-dark {
   background: var(--fog);
   grid-column: span 2
}

.story-dark:hover {
   background: var(--line)
}

.story-dark .story-q {
   color: var(--ink-mid)
}

.story-dark .story-name {
   color: var(--ink)
}

.story-dark .story-role {
   color: var(--stone)
}

.story-dark .story-av {
   background: var(--pop);
   color: var(--white)
}

/* ══════════════════════════════════════
   DONATE
══════════════════════════════════════ */
.donate {
   border-top: 1px solid var(--line)
}

.donate-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(40px, 6vw, 100px)
}

.donate-panel {
   background: var(--off);
   border: 1px solid var(--line);
   padding: clamp(28px, 4vw, 48px)
}

.donate-panel-title {
   font-family: var(--font-display);
   font-size: 1.75rem;
   font-weight: 300;
   color: var(--ink);
   margin: 14px 0 8px
}

.donate-panel-sub {
   font-size: .83rem;
   color: var(--stone);
   line-height: 1.7;
   margin-bottom: 28px
}

.amts {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 8px;
   margin-bottom: 14px
}

.amt {
   padding: 12px 8px;
   text-align: center;
   font-family: var(--font-body);
   font-size: .8rem;
   font-weight: 600;
   background: var(--white);
   border: 1px solid var(--line);
   color: var(--ink-mid);
   transition: all var(--t);
   cursor: none
}

.amt:hover,
.amt.on {
   background: var(--brand);
   color: var(--white);
   border-color: var(--brand)
}

.fg {
   margin-bottom: 16px
}

.fg label {
   display: block;
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .15em;
   text-transform: uppercase;
   color: var(--stone);
   margin-bottom: 7px
}

.fg input,
.fg select,
.fg textarea {
   width: 100%;
   padding: 14px 18px;
   background: var(--white);
   border: 1px solid var(--line);
   font-family: var(--font-body);
   font-size: .88rem;
   color: var(--ink);
   outline: none;
   transition: border-color var(--t), box-shadow var(--t);
   border-radius: 0;
   -webkit-appearance: none;
   appearance: none
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
   border-color: var(--ink);
   box-shadow: 0 0 0 3px rgba(17, 17, 16, .05)
}

.fg select option {
   background: var(--white)
}

.sub-btn {
   width: 100%;
   padding: 18px;
   background: var(--pop);
   color: var(--white);
   border: none;
   font-family: var(--font-body);
   font-size: .82rem;
   font-weight: 600;
   letter-spacing: .12em;
   text-transform: uppercase;
   transition: background var(--t), transform var(--t);
   cursor: none;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px
}

.sub-btn:hover {
   background: var(--brand);
   transform: translateY(-1px)
}

.sub-btn:disabled {
   opacity: .45;
   transform: none
}

/* ══════════════════════════════════════
   VOLUNTEER
══════════════════════════════════════ */
.volunteer {
   background: var(--off);
   border-top: 1px solid var(--line)
}

.vol-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(40px, 6vw, 100px);
   align-items: start
}

.vol-card {
   background: var(--white);
   border: 1px solid var(--line);
   padding: clamp(30px, 4vw, 48px);
   position: sticky;
   top: 90px
}

.vol-price {
   font-family: var(--font-display);
   font-size: clamp(2.8rem, 4.5vw, 3.8rem);
   font-weight: 300;
   color: var(--ink);
   line-height: 1
}

.vol-note {
   font-size: .76rem;
   color: var(--stone);
   margin-top: 4px;
   margin-bottom: 30px
}

.inc {
   list-style: none;
   margin-bottom: 28px
}

.inc li {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 12px 0;
   border-bottom: 1px solid var(--line);
   font-size: .86rem;
   color: var(--ink-mid)
}

.inc li:first-child {
   border-top: 1px solid var(--line)
}

.inc li::before {
   content: '';
   width: 14px;
   height: 1px;
   background: var(--pop);
   flex-shrink: 0
}

.acts {
   display: flex;
   flex-direction: column
}

.act {
   padding: 22px 0;
   border-bottom: 1px solid var(--line);
   transition: padding-left var(--t)
}

.act:first-child {
   border-top: 1px solid var(--line)
}

.act:hover {
   padding-left: 8px
}

.act-title {
   font-family: var(--font-display);
   font-size: 1.18rem;
   font-weight: 600;
   color: var(--ink);
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 5px
}

.act-desc {
   font-size: .8rem;
   color: var(--stone);
   line-height: 1.6
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
   border-top: 1px solid var(--line)
}

.contact-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: clamp(40px, 6vw, 100px)
}

.c-links {
   display: flex;
   flex-direction: column;
   margin-top: 36px
}

.c-link {
   display: flex;
   align-items: center;
   gap: 18px;
   padding: 20px 0;
   border-bottom: 1px solid var(--line);
   transition: padding-left var(--t)
}

.c-link:first-child {
   border-top: 1px solid var(--line)
}

.c-link:hover {
   padding-left: 8px
}

.c-link-ico {
   width: 38px;
   height: 38px;
   flex-shrink: 0;
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   transition: background var(--t), border-color var(--t)
}

.c-link:hover .c-link-ico {
   background: var(--ink);
   border-color: var(--ink)
}

.c-label {
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .13em;
   text-transform: uppercase;
   color: var(--stone);
   margin-bottom: 2px
}

.c-val {
   font-size: .9rem;
   color: var(--ink);
   font-weight: 500
}

.contact-form-wrap h3 {
   font-family: var(--font-display);
   font-size: 1.65rem;
   font-weight: 300;
   color: var(--ink);
   margin-bottom: 24px
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
   border-top: 1px solid var(--line);
   background: var(--fog);
   padding: clamp(48px, 6vw, 80px) var(--gap) 32px
}

.ft {
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 48px;
   padding-bottom: 48px;
   border-bottom: 1px solid var(--line)
}

.ft-brand p {
   font-size: .8rem;
   color: var(--stone);
   line-height: 1.7;
   margin-top: 12px;
   max-width: 260px
}

.ft-col h4 {
   font-size: .65rem;
   font-weight: 600;
   letter-spacing: .18em;
   text-transform: uppercase;
   color: var(--ink);
   margin-bottom: 18px
}

.ft-col ul {
   list-style: none
}

.ft-col ul li {
   margin-bottom: 10px
}

.ft-col ul li a {
   font-size: .8rem;
   color: var(--stone);
   transition: color var(--t)
}

.ft-col ul li a:hover {
   color: var(--ink)
}

.ft-bottom {
   padding-top: 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 14px
}

.ft-bottom p {
   font-size: .72rem;
   color: var(--mist)
}

.socs {
   display: flex;
   gap: 20px
}

.soc {
   font-size: .7rem;
   font-weight: 600;
   letter-spacing: .1em;
   text-transform: uppercase;
   color: var(--stone);
   border-bottom: 1px solid var(--line);
   padding-bottom: 2px;
   transition: color var(--t), border-color var(--t)
}

.soc:hover {
   color: var(--ink);
   border-color: var(--ink)
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(22px)
   }

   to {
      opacity: 1;
      transform: none
   }
}

@keyframes fadeIn {
   from {
      opacity: 0
   }

   to {
      opacity: 1
   }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px) {

   .about-grid,
   .costs-grid,
   .donate-grid,
   .vol-grid,
   .contact-grid {
      grid-template-columns: 1fr;
      gap: 48px
   }

   .num-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .num-item {
      border-right: 1px solid rgba(255, 255, 255, .07);
      border-bottom: 1px solid rgba(255, 255, 255, .07)
   }

   .num-item:nth-child(2) {
      border-right: none
   }

   .ft {
      grid-template-columns: 1fr 1fr
   }

   .proj-meta {
      display: none
   }

   .hero-strip {
      grid-template-columns: repeat(3, 1fr)
   }
}

@media(max-width:768px) {
   .nav {
      height: 64px;
      padding: 0 20px
   }

   .nav-links,
   .nav-cta {
      display: none
   }

   .hamburger {
      display: flex
   }

   .hamburger.close {
      transform: rotate(45deg);
   }

   .mobile-menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 100;
   }

   .stories-grid {
      grid-template-columns: 1fr
   }

   .story-dark {
      grid-column: span 1
   }

   .hero-strip {
      grid-template-columns: 1fr
   }

   .h-stat {
      border-right: none;
      border-bottom: 1px solid var(--line)
   }

   .num-grid {
      grid-template-columns: 1fr 1fr
   }

   .ft {
      grid-template-columns: 1fr
   }

   .ft-bottom {
      flex-direction: column;
      text-align: center
   }

   body,
   button {
      cursor: auto
   }

   .cur,
   .cur-ring {
      display: none
   }

   .amts {
      grid-template-columns: repeat(2, 1fr)
   }
}