﻿/* ═══════════════════════════════════════════════
   GREEN HORIZON — Main Stylesheet
   Project by Arctic Technologies
   https://arctictechnologies.org.lk/
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --moss:    #2d5a27;
  --fern:    #3e7a35;
  --sage:    #7aaa6d;
  --mist:    #bdd5b0;
  --bark:    #6b4226;
  --soil:    #9c6b44;
  --sand:    #f0e8d8;
  --cream:   #faf7f0;
  --horizon: #5b8fa8;
  --dusk:    #3d6678;
  --night:   #1a2e1a;
  --text:    #1e2b1e;
  --mid:     #5a6b5a;
  --white:   #fdfcf8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── PROGRESS BAR ── */
#prog {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--horizon));
  z-index: 10000; width: 0; transition: width .1s; pointer-events: none;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5vw; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, box-shadow .4s, height .3s;
}
nav.main-nav.sc {
  background: rgba(250,247,240,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(45,90,39,.1);
  height: 60px;
}
.n-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
  transition: color .3s;
}
nav.main-nav.sc .n-brand { color: var(--moss); }

.leaf-icon { animation: leafsway 4s ease-in-out infinite; display: inline-block; }
@keyframes leafsway { 0%,100% { transform: rotate(-8deg); } 50% { transform: rotate(8deg); } }

.n-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.n-links a {
  font-size: .74rem; font-weight: 500; letter-spacing: .11em; text-transform: uppercase;
  color: rgba(255,255,255,.85); text-decoration: none;
  transition: color .2s; position: relative; padding-bottom: 3px;
}
nav.main-nav.sc .n-links a { color: var(--mid); }
nav.main-nav.sc .n-links a:hover { color: var(--moss); }
nav.main-nav:not(.sc) .n-links a:hover { color: var(--white); }
.n-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--sage); transition: width .3s;
}
.n-links a:hover::after, .n-links a.act::after { width: 100%; }
nav.main-nav.sc .n-links a.act { color: var(--moss); }

/* Hamburger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: .3s; transform-origin: center; }
nav.main-nav.sc .burger span { background: var(--moss); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mob-menu {
  position: fixed; top: 0; right: -100%;
  width: min(300px,88vw); height: 100vh;
  background: var(--night); z-index: 999;
  padding: 5rem 2.5rem 2.5rem;
  flex-direction: column; gap: 1.3rem;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 40px rgba(0,0,0,.35);
  display: flex;
}
.mob-menu.open { right: 0; }
.mob-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-style: italic;
  color: var(--mist); text-decoration: none;
  transition: color .2s, padding-left .2s;
  padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.mob-menu a:hover { color: var(--white); padding-left: .5rem; }
.mob-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
}
.mob-overlay.open { display: block; }

/* ═══════════════════════════════════════════════
   PAGE SYSTEM
   ═══════════════════════════════════════════════ */
.page { display: none; animation: pgIn .55s ease forwards; padding-top: 68px; }
.page.active { display: block; }
.page.active .hero { margin-top: -68px; }
@keyframes pgIn { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:none; } }

/* ═══════════════════════════════════════════════
   HERO (Home)
   ═══════════════════════════════════════════════ */
.hero {
  position: relative; height: 100vh; min-height: 580px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.h-img {
  position: absolute; inset: 0;
  background: url('../images/heroes/hero-home.jpg') center/cover no-repeat;
  transform: scale(1.1); animation: hzoom 22s ease-in-out infinite alternate;
}
@keyframes hzoom { from { transform: scale(1.1); } to { transform: scale(1.2); } }
.h-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,22,8,.74) 0%, rgba(20,45,18,.6) 45%, rgba(25,55,45,.55) 75%, rgba(8,28,38,.5) 100%);
}
.h-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(110,165,90,.22); animation: pfloat linear infinite; }
@keyframes pfloat {
  0%   { transform: translateY(100vh) rotate(0);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .25; }
  100% { transform: translateY(-8vh) rotate(360deg); opacity: 0; }
}
.h-content { position: relative; z-index: 2; text-align: center; padding: 2rem; max-width: 860px; }
.h-eye { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--mist); margin-bottom: 1.5rem; opacity: 0; animation: fup .8s .3s ease forwards; }
.h-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,7vw,5.8rem); font-weight: 400; line-height: 1.06; color: var(--white); margin-bottom: 1.4rem; opacity: 0; animation: fup .9s .5s ease forwards; }
.h-title em { font-style: italic; color: var(--sage); }
.h-sub { font-size: 1rem; color: rgba(195,220,185,.82); max-width: 500px; margin: 0 auto 2.8rem; font-weight: 300; opacity: 0; animation: fup .9s .7s ease forwards; }
.h-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fup .9s .9s ease forwards; }
.h-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .5rem; color: rgba(190,215,180,.55); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; opacity: 0; animation: fup .9s 1.2s ease forwards; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(190,215,180,.5), transparent); animation: spulse 2s ease-in-out infinite; }
@keyframes spulse { 0%,100% { height:48px; opacity:.55; } 50% { height:68px; opacity:1; } }
@keyframes fup { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn-p {
  padding: .88rem 2.5rem; background: var(--sage); color: var(--night);
  font-size: .76rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .25s, transform .2s, box-shadow .2s;
}
.btn-p:hover { background: var(--mist); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(100,170,80,.35); }
.btn-g {
  padding: .88rem 2.5rem; background: transparent; color: var(--white);
  font-size: .76rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.38); cursor: pointer;
  transition: border-color .25s, background .25s, transform .2s;
}
.btn-g:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-3px); }
.btn-o {
  display: inline-block; padding: .88rem 2.6rem; background: transparent;
  border: 1.5px solid var(--moss); color: var(--moss);
  font-size: .76rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background .25s, color .25s, transform .2s;
}
.btn-o:hover { background: var(--moss); color: var(--white); transform: translateY(-2px); }
.w-text .btn-o { align-self: flex-start; margin-top: 1.5rem; }
.btn-send {
  padding: 1rem 2.8rem; background: var(--moss); color: var(--white);
  border: none; font-family: 'DM Sans', sans-serif;
  font-size: .76rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: background .25s, transform .2s, box-shadow .2s;
  display: flex; align-items: center; gap: .5rem;
}
.btn-send:hover { background: var(--fern); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(40,85,35,.22); }
.btn-send .arr { transition: transform .2s; }
.btn-send:hover .arr { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   SHARED ATOMS
   ═══════════════════════════════════════════════ */
.tag { display: inline-block; font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); padding: .33rem .9rem; border: 1px solid var(--mist); margin-bottom: 1rem; }
.sh { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem,3.2vw,2.9rem); font-weight: 400; line-height: 1.2; color: var(--moss); margin-bottom: 1.5rem; }
.sh em { font-style: italic; color: var(--bark); }
.rule { width: 38px; height: 2px; background: linear-gradient(90deg, var(--sage), var(--horizon)); margin: 1.4rem 0; }
.prose p { color: var(--mid); margin-bottom: 1rem; font-size: .96rem; }
.section { padding: 6rem 8vw; }

/* ═══════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════ */
.stats-bar { background: var(--night); padding: 2rem 8vw; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { text-align: center; padding: .8rem; }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; color: var(--sage); line-height: 1; margin-bottom: .3rem; }
.stat-l { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(140,185,130,.45); }

/* ═══════════════════════════════════════════════
   WELCOME SPLIT (Home)
   ═══════════════════════════════════════════════ */
.welcome { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.w-img {
  position: relative; overflow: hidden;
  background: url('../images/gallery/welcome-trees.jpg') center/cover no-repeat;
}
.w-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 55%, var(--cream) 100%); }
.w-text { padding: 7vw 6vw 7vw 3.5vw; display: flex; flex-direction: column; justify-content: center; }

/* ═══════════════════════════════════════════════
   PILLARS
   ═══════════════════════════════════════════════ */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); }
.pillar { padding: 4.5rem 3rem; position: relative; overflow: hidden; }
.pillar:nth-child(1) { background: var(--moss); }
.pillar:nth-child(2) { background: var(--fern); }
.pillar:nth-child(3) { background: var(--dusk); }
.pillar::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.05); transition: transform .5s; }
.pillar:hover::before { transform: scale(1.6); }
.p-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 400; color: rgba(255,255,255,.1); line-height: 1; margin-bottom: 1rem; }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 400; color: var(--white); margin-bottom: .8rem; }
.pillar p { color: rgba(200,230,200,.7); font-size: .88rem; line-height: 1.65; }

/* ═══════════════════════════════════════════════
   PHOTO GRID (Home)
   ═══════════════════════════════════════════════ */
.pgrid { display: grid; grid-template-columns: 1.9fr 1fr 1fr; grid-template-rows: 280px 320px; gap: 1.4rem; margin-top: 2.2rem; }
.pgrid .cell { position: relative; overflow: hidden; border-radius: 38px; min-height: 280px; background: var(--white); border: 1px solid rgba(93, 113, 104, .12); box-shadow: 0 28px 60px rgba(26, 54, 24, .08); }
.pgrid .cell .img-wrap { position: absolute; inset: 0; }
.pgrid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .8s ease; display: block; filter: saturate(1.05) contrast(1.05); }
.pgrid .cell:hover img { transform: scale(1.12); }
.pgrid .cell .cov { position: absolute; left: 1.45rem; bottom: 1.45rem; z-index: 2; display: inline-flex; align-items: center; gap: .55rem; padding: .75rem 1rem; background: rgba(12, 28, 12, .8); backdrop-filter: blur(10px); border-radius: 999px; border: 1px solid rgba(255, 255, 255, .12); opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease; }
.pgrid .cell:hover .cov { opacity: 1; transform: translateY(0); }
.pgrid .cell .cov span { color: var(--white); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; }
.pgrid .cell-large { grid-column: 1 / 2; grid-row: 1 / 3; }
.pgrid .cell-large.cell-shape-a .img-wrap { clip-path: polygon(0 0, 100% 0, 100% 78%, 14% 100%, 0 64%); }
.pgrid .cell-slim { min-height: 280px; }
.pgrid .cell-slim.cell-shape-b .img-wrap { clip-path: polygon(0 0, 100% 0, 100% 95%, 10% 100%, 0 84%); }
.pgrid .cell-slim.cell-shape-c .img-wrap { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%); }
.pgrid .cell-bottom.cell-shape-d .img-wrap { clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%); }
.pgrid .cell-card { grid-column: 2 / 3; grid-row: 2 / 3; display: flex; align-items: center; justify-content: center; padding: 2rem; background: radial-gradient(circle at top left, rgba(123, 190, 104, .18), transparent 38%), rgba(250, 247, 239, .96); overflow: visible; }
.pgrid .cell-card .card-quote { width: 100%; max-width: 320px; padding: 2rem; border-radius: 28px; background: rgba(255, 255, 255, .96); border: 1px solid rgba(93, 113, 104, .14); box-shadow: 0 22px 50px rgba(42, 75, 41, .08); display: flex; flex-direction: column; gap: 1rem; position: relative; }
.pgrid .cell-card .card-quote::before { content: ''; position: absolute; top: -22px; left: -20px; width: 56px; height: 56px; border-radius: 22px; background: rgba(84, 118, 68, .15); }
.pgrid .cell-card .badge { display: inline-flex; align-items: center; justify-content: center; padding: .45rem .9rem; border-radius: 999px; background: rgba(93, 113, 104, .12); color: var(--fern); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .75rem; }
.pgrid .cell-card strong { font-family: 'Playfair Display', serif; font-size: 1.7rem; line-height: 1.08; color: var(--moss); }
.pgrid .cell-card p { margin: 0; color: var(--mid); font-size: .96rem; line-height: 1.85; }
.pgrid .cell-card .caption { margin-top: .5rem; color: var(--sage); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
@media (max-width: 980px) {
  .pgrid { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(260px, auto) 280px 280px; }
  .pgrid .cell-large { grid-column: 1 / span 2; grid-row: 1 / 2; }
  .pgrid .cell-slim.cell-shape-b { grid-column: 1; grid-row: 2 / 3; }
  .pgrid .cell-slim.cell-shape-c { grid-column: 2; grid-row: 2 / 3; }
  .pgrid .cell-card { grid-column: 1; grid-row: 3 / 4; }
  .pgrid .cell-bottom { grid-column: 1 / span 2; grid-row: 4 / 5; }
}
@media (max-width: 640px) {
  .pgrid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .pgrid .cell { min-height: 220px; }
  .pgrid .cell-large,
  .pgrid .cell-slim,
  .pgrid .cell-card,
  .pgrid .cell-bottom { grid-column: auto; grid-row: auto; }
  .pgrid .cell .cov { left: 1rem; bottom: 1rem; }
}

/* ═══════════════════════════════════════════════
   QUOTE BANNER
   ═══════════════════════════════════════════════ */
.qbanner { padding: 5.5rem 10vw; background: var(--sand); position: relative; overflow: hidden; text-align: center; }
.qbanner::before { content: '"'; position: absolute; top: -3rem; left: 7vw; font-family: 'Playfair Display', serif; font-size: 18rem; font-weight: 700; color: rgba(100,160,80,.07); line-height: 1; pointer-events: none; }
.qt { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.35rem,2.6vw,2.1rem); font-weight: 400; color: var(--bark); line-height: 1.45; max-width: 760px; margin: 0 auto 1.1rem; }
.qa { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); }

.c-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 3.5rem 5vw 1rem;
}

.cs-tile {
  background: var(--white);
  border: 1px solid rgba(93, 113, 104, 0.15);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 18px 42px rgba(45, 90, 39, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-tile .ico {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(189, 213, 176, 0.22);
  color: var(--sage);
  font-size: 1.35rem;
}

.cs-tile h4 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #274930;
}

.cs-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

footer {
  background: #102414;
  color: #eef2dc;
  padding: 4.5rem 5vw 2.5rem;
}

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

footer a:hover {
  color: var(--mist);
}

.ft {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(150px, 1fr));
  gap: 2.5rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fb {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.br {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 2.7vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.br span {
  color: var(--mist);
}

.ft p,
.arctic-ft p {
  color: rgba(238, 242, 220, 0.75);
  line-height: 1.9;
  margin: 0;
}

.arctic-ft p a {
  color: rgba(182, 217, 150, 0.9);
}

.arctic-ft p a:hover {
  color: var(--white);
}

.fc h4 {
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(238, 242, 220, 0.9);
}

.fc a {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(238, 242, 220, 0.7);
  font-size: 0.95rem;
  transition: color .2s;
}

.fc a:hover {
  color: rgba(188, 222, 148, 1);
}

.fb-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 242, 220, 0.55);
  font-size: 0.85rem;
  line-height: 1.75;
}

.fm {
  color: rgba(238, 242, 220, 0.45);
}

@media (max-width: 1080px) {
  .c-strip,
  .ft {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .arctic-banner,
  .qbanner,
  .c-strip,
  .ft {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   ARCTIC BANNER
   ═══════════════════════════════════════════════ */
.arctic-banner {
  background: linear-gradient(135deg, var(--night) 0%, #0d1f2d 100%);
  padding: 4.5rem 8vw; display: flex; align-items: center;
  justify-content: space-between; gap: 3.5rem; flex-wrap: wrap;
  border-top: 1px solid rgba(100,165,80,.15);
}
.arctic-banner .ab-left {
  flex: 1; min-width: 280px;
}
.arctic-banner .ab-left h4 {
  font-family: 'Playfair Display', serif; font-size: 1.55rem;
  color: var(--white); margin-bottom: .8rem; font-weight: 400; line-height: 1.2;
}
.arctic-banner .ab-left p {
  font-size: .88rem; color: rgba(190,215,185,.68);
  max-width: 480px; line-height: 1.75;
}
.arctic-link {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .95rem 2rem; border: 1.5px solid rgba(100,165,80,.45);
  color: var(--mist); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; transition: all .3s; white-space: nowrap;
  background: rgba(100,165,80,.06);
}
.arctic-link:hover {
  background: rgba(100,165,80,.12); border-color: var(--sage);
  color: var(--white); transform: translateX(3px);
}
@media (max-width: 780px) {
  .arctic-banner { flex-direction: column; align-items: flex-start; }
  .arctic-link { align-self: flex-start; }
}

/* ═══════════════════════════════════════════════
   PAGE HERO (Inner pages)
   ═══════════════════════════════════════════════ */
.pg-hero {
  height: 52vh; min-height: 340px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 4rem 8vw;
  margin-top: -68px;
}
.pg-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,22,8,.9) 0%, rgba(8,22,8,.3) 65%, transparent 100%); }
.hero-caption { position: relative; z-index: 1; }
.hero-caption .tag { color: var(--mist); border-color: rgba(255,255,255,.18); }
.hero-caption h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem,4.5vw,3.8rem); font-weight: 400; color: var(--white); line-height: 1.1; font-style: italic; margin-top: .6rem; }

/* Hero backgrounds — local image paths */
.about-pg-hero  { background: url('../images/Site-body/pngtree-the-giant-tree-from-whitby-gardens-picture-image_2646599.jpg') center 35%/cover no-repeat; }
.vm-hero-bg     { background: url('../images/Site-body/nice-green-forest-landscape-city_1127-17418.jpg') center 40%/cover no-repeat; }
.j-hero-bg      { background: url('../images/heroes/hero-journey.jpg')    center 30%/cover no-repeat; }
.inv-hero-bg    { background: url('../images/heroes/hero-involve.jpg')    center/cover no-repeat; }
.ref-hero-bg    { background: url('../images/heroes/hero-reflection.jpg') center/cover no-repeat; }
.c-hero-bg      { background: url('../images/heroes/hero-contact.jpg')    center/cover no-repeat; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; }
.ai-img {
  position: relative; overflow: hidden; min-height: 520px;
  background: url('../images/about/about-canopy.jpg') center/cover no-repeat;
}
.ai-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 60%, var(--cream) 100%); }
.ai-text { padding: 5rem 5vw; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.bq { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: var(--bark); line-height: 1.5; border-left: 3px solid var(--sage); padding: 1rem 0 1rem 2rem; margin: 2rem 0; }

.about-story { padding: 5rem 8vw; display: grid; grid-template-columns: 1.4fr 1fr; gap: 6rem; align-items: flex-start; }
.about-story > div:last-child { display: flex; flex-direction: column; }
.aside-img { width: 100%; height: auto; max-width: 320px; aspect-ratio: 4/5; object-fit: cover; box-shadow: 8px 8px 0 rgba(186,213,177,.35); position: static; top: 100px; border-radius: 2px; }
.vlist { list-style: none; margin-top: 1.2rem; }
.vlist li { padding: 1rem 0; border-bottom: 1px solid rgba(100,165,80,.14); display: flex; gap: 1rem; align-items: flex-start; }
.vlist li .dot { flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); margin-top: .58rem; }

/* ═══════════════════════════════════════════════
   VISION & MISSION PAGE
   ═══════════════════════════════════════════════ */
.arctic-section {
  padding: 5rem 8vw;
  background: url('../images/heroes/hero-vision.jpg') center/cover no-repeat;
  position: relative;
}
.arctic-section::before { content: ''; position: absolute; inset: 0; background: rgba(8,22,8,.83); }
.arctic-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.arctic-logo-block h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.8rem); color: var(--white); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
.arctic-logo-block h2 span { color: var(--sage); font-style: italic; }
.arctic-logo-block p { color: rgba(190,215,185,.65); font-size: .93rem; line-height: 1.7; margin-bottom: 1.8rem; }
.arctic-right p { color: rgba(190,215,185,.65); font-size: .93rem; line-height: 1.7; margin-bottom: 1rem; }
.arctic-right .adiv { width: 36px; height: 2px; background: linear-gradient(90deg, var(--sage), var(--horizon)); margin: 1.5rem 0; }

.vm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.vmc { padding: 3.5rem; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.vmc:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(40,85,35,.12); }
.vmc.gr { background: var(--moss); }
.vmc.bl { background: var(--dusk); }
.vmc::after { content: ''; position: absolute; bottom: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,.05); }
.vmc .ci { font-size: 2.8rem; margin-bottom: 1.2rem; }
.vmc h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; }
.vmc .cs { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: rgba(195,230,190,.8); line-height: 1.6; border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 1.2rem; margin-bottom: 1.2rem; }
.vmc p { font-size: .88rem; color: rgba(195,230,190,.7); line-height: 1.65; }
.vmc ul { list-style: none; margin-top: 1rem; }
.vmc ul li { padding: .45rem 0; font-size: .87rem; color: rgba(195,230,190,.6); border-bottom: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; gap: .7rem; }
.vmc ul li::before { content: '→'; color: var(--sage); font-size: .78rem; }

.val-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 2px; }
.vtile { padding: 3rem 1.8rem; background: var(--sand); text-align: center; transition: background .3s; }
.vtile:hover { background: var(--mist); }
.vtile .vi { font-size: 2rem; margin-bottom: .9rem; }
.vtile h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--moss); margin-bottom: .5rem; }
.vtile p { font-size: .82rem; color: var(--mid); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   JOURNEY GALLERY
   ═══════════════════════════════════════════════ */
.journey-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.grove-tracker { background: var(--night); padding: 2.5rem; text-align: center; }
.grove-tracker .gt-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: var(--sage); margin-bottom: .4rem; }
.grove-tracker .gt-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(140,185,130,.45); margin-bottom: 1.4rem; }
.grove-tracker .gt-icons { display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.grove-tracker .gt-icons span { font-size: 1.7rem; }
.grove-tracker .gt-sub { font-size: .74rem; color: rgba(140,185,130,.3); letter-spacing: .06em; }

.journey-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 2rem; margin-top: 2.5rem; }

.month-card {
  background: var(--white); border-radius: 2px; overflow: hidden;
  transition: box-shadow .3s;
  opacity: 0; transform: translateY(24px);
  animation: cardIn .5s ease forwards;
}
.month-card:not(.upcoming):hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(40,85,35,.14); }
.month-card.upcoming { background: transparent; border: 1.5px dashed var(--mist); transition: opacity .3s; }
.month-card.upcoming:hover { opacity: .7; transform: none; box-shadow: none; }
@keyframes cardIn { to { opacity: 1; transform: none; } }

.month-card:nth-child(1)  { animation-delay: .05s; }
.month-card:nth-child(2)  { animation-delay: .12s; }
.month-card:nth-child(3)  { animation-delay: .19s; }
.month-card:nth-child(4)  { animation-delay: .26s; }
.month-card:nth-child(5)  { animation-delay: .33s; }
.month-card:nth-child(6)  { animation-delay: .40s; }
.month-card:nth-child(7)  { animation-delay: .47s; }
.month-card:nth-child(8)  { animation-delay: .54s; }
.month-card:nth-child(9)  { animation-delay: .61s; }
.month-card:nth-child(10) { animation-delay: .68s; }
.month-card:nth-child(11) { animation-delay: .75s; }
.month-card:nth-child(12) { animation-delay: .82s; }

.mc-img-wrap { position: relative; height: 230px; overflow: hidden; background: #c8d8c0; }
.mc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; display: block; }
.month-card:not(.upcoming):hover .mc-img-wrap img { transform: scale(1.06); }
.mc-month-badge { position: absolute; top: 1rem; left: 1rem; background: var(--moss); color: var(--white); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; padding: .32rem .85rem; }
.mc-num-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,.45); color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; padding: .2rem .65rem; backdrop-filter: blur(4px); }

.mc-body { padding: 1.5rem 1.7rem 1.7rem; }
.mc-tree-name { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 400; color: var(--moss); margin-bottom: .25rem; }
.mc-sci { font-size: .78rem; font-style: italic; color: var(--mid); margin-bottom: .75rem; }
.mc-meta { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: .8rem; }
.mc-meta-item { display: flex; align-items: center; gap: .32rem; font-size: .75rem; color: var(--mid); }
.mc-note { font-size: .86rem; color: var(--mid); line-height: 1.6; border-top: 1px solid rgba(100,165,80,.12); padding-top: .8rem; }

.month-card.upcoming .mc-body { padding: 2.2rem 1.7rem; }
.upcoming-num { font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700; color: var(--mist); line-height: 1; margin-bottom: .5rem; }
.upcoming-label { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); margin-bottom: .4rem; }
.upcoming-line { width: 28px; height: 1px; background: var(--mist); margin: 1rem 0; }
.upcoming-hint { font-size: .84rem; color: rgba(90,107,90,.45); font-style: italic; }

.fcounter { margin-top: 4rem; padding: 4rem; text-align: center; background: linear-gradient(135deg, var(--night), var(--moss)); position: relative; overflow: hidden; }
.fcounter::before { content: '🌳🌿🌱🌲🌳🌱'; position: absolute; bottom: 1rem; right: 2rem; font-size: 2rem; opacity: .12; letter-spacing: 1rem; pointer-events: none; }
.fcounter h3 { font-family: 'Playfair Display', serif; font-size: 3.2rem; color: var(--white); margin-bottom: .5rem; }
.fcounter p { color: var(--mist); font-size: .9rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   GET INVOLVED
   ═══════════════════════════════════════════════ */
.sg { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.step { padding: 3rem 2.5rem; background: var(--white); position: relative; overflow: hidden; transition: background .3s, transform .3s; }
.step:hover { background: var(--night); transform: translateY(-4px); }
.step:hover .sn { color: rgba(100,165,80,.1); }
.step:hover h3 { color: var(--white); }
.step:hover p { color: rgba(195,220,195,.55); }
.sn { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 700; color: var(--mist); line-height: 1; margin-bottom: .5rem; transition: color .3s; }
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.22rem; color: var(--moss); margin-bottom: .7rem; transition: color .3s; }
.step p { font-size: .87rem; color: var(--mid); line-height: 1.65; transition: color .3s; }

.pledge { margin-top: 4rem; padding: 4.5rem 3rem; text-align: center; background: var(--sand); position: relative; overflow: hidden; }
.pledge::before { content: '🌱'; position: absolute; font-size: 8rem; top: 50%; left: 3rem; transform: translateY(-50%); opacity: .07; pointer-events: none; }
.pledge::after { content: '🌳'; position: absolute; font-size: 8rem; top: 50%; right: 3rem; transform: translateY(-50%); opacity: .07; pointer-events: none; }
.pledge h3 { font-family: 'Playfair Display', serif; font-size: 2.1rem; color: var(--bark); margin-bottom: 1rem; }
.pledge p { color: var(--mid); max-width: 500px; margin: 0 auto 2rem; }

/* ═══════════════════════════════════════════════
   REFLECTION
   ═══════════════════════════════════════════════ */
.rg { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--mist); }
.rc { background: var(--white); padding: 2.8rem; position: relative; overflow: hidden; transition: background .3s; }
.rc:hover { background: var(--cream); }
.rc.feat { grid-column: span 2; background: linear-gradient(135deg, var(--night), #1a3a2a); }
.rc.feat:hover { background: linear-gradient(135deg, #182818, #1a3a2a); }
.qm { font-family: 'Playfair Display', serif; font-size: 5.5rem; font-weight: 700; color: var(--mist); line-height: 1; position: absolute; top: .4rem; left: 1.3rem; opacity: .22; }
.rc.feat .qm { color: rgba(255,255,255,.06); opacity: 1; }
.rt { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-style: italic; color: var(--text); line-height: 1.65; margin: 2.8rem 0 1.1rem; }
.rc.feat .rt { font-size: 1.3rem; color: var(--white); }
.ra { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.rc.feat .ra { color: var(--mist); }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.c-body { padding: 5rem 8vw; }
.c-wrap { display: grid; grid-template-columns: 1fr 1.45fr; gap: 5rem; align-items: start; }
.ci-block h3 { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 400; color: var(--moss); margin: .8rem 0 1.2rem; }
.ci-block p { color: var(--mid); font-size: .92rem; margin-bottom: .9rem; line-height: 1.7; }
.c-items { display: flex; flex-direction: column; gap: .9rem; margin-top: 1.8rem; }
.c-item { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; background: var(--white); border-left: 3px solid var(--sage); transition: border-color .2s, transform .2s; }
.c-item:hover { border-color: var(--moss); transform: translateX(4px); }
.c-item .ico { font-size: 1.15rem; flex-shrink: 0; }
.c-item-txt { display: flex; flex-direction: column; }
.c-lbl { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); }
.c-val { font-size: .88rem; color: var(--text); }
.c-val a { color: var(--moss); text-decoration: none; }
.c-val a:hover { text-decoration: underline; }
.c-promise { margin-top: 2.2rem; padding: 1.6rem; background: var(--sand); border-left: 3px solid var(--bark); }
.c-promise p { font-family: 'Playfair Display', serif; font-style: italic; font-size: .98rem; color: var(--bark); line-height: 1.6; }
.c-promise .cattr { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-top: .6rem; }
.arctic-credit { margin-top: 1.5rem; padding: 1.2rem 1.4rem; background: var(--night); display: flex; align-items: center; gap: .8rem; }
.arctic-credit span.act { font-size: .8rem; color: rgba(140,185,130,.55); line-height: 1.5; }
.arctic-credit a { color: var(--sage); text-decoration: none; font-weight: 500; }
.arctic-credit a:hover { text-decoration: underline; }

/* Form */
.cf { display: flex; flex-direction: column; gap: 1.35rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.fld { display: flex; flex-direction: column; gap: .38rem; }
.fld label { font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); }
.fld input, .fld textarea, .fld select {
  background: var(--white); border: 1px solid rgba(100,165,80,.28);
  border-bottom: 2px solid var(--mist); padding: .82rem 1rem;
  color: var(--text); font-family: 'DM Sans', sans-serif;
  font-size: .91rem; font-weight: 300; outline: none; width: 100%;
  transition: border-color .2s, background .2s;
}
.fld input:focus, .fld textarea:focus, .fld select:focus { border-color: rgba(100,165,80,.45); border-bottom-color: var(--sage); background: var(--cream); }
.fld textarea { resize: vertical; min-height: 128px; }
.f-foot { display: flex; align-items: center; justify-content: space-between; padding-top: .4rem; flex-wrap: wrap; gap: .8rem; }
.f-note { font-size: .77rem; color: var(--mid); font-style: italic; }

.c-strip { background: var(--night); padding: 3.5rem 8vw; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.cs-tile { text-align: center; padding: 1.5rem; }
.cs-tile .ico { font-size: 2.2rem; margin-bottom: .9rem; }
.cs-tile h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: .5rem; }
.cs-tile p { font-size: .83rem; color: rgba(140,185,130,.48); line-height: 1.6; }
.cs-tile a { color: var(--sage); text-decoration: none; }
.cs-tile a:hover { text-decoration: underline; }
@media (max-width: 980px) {
  .vm-split, .journey-intro-grid, .sg, .rg, .c-wrap, .val-row { grid-template-columns: 1fr; }
  .val-row { gap: 1rem; }
  .journey-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pg-hero { padding: 3rem 4vw; }
  .about-intro, .about-story, .c-wrap { grid-template-columns: 1fr; }
  .asidesticky, .aside-img { position: static; }
  .vm-split, .journey-intro-grid, .val-row, .sg, .rg, .c-wrap { gap: 1.2rem; }
  .c-body { padding: 3rem 4vw 4rem; }
  .c-strip, .ft, .arctic-banner, .qbanner { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* Arctic section in About */
