@import url('https://fonts.cdnfonts.com/css/times');

:root {
  --forest:        #1A3826;
  --forest-deep:   #0F2417;
  --forest-soft:   #26452F;
  --cream:         #F4EFE3;
  --cream-warm:    #EDE6D3;
  --paper:         #FBF7EC;
  --sage:          #B5C0A8;
  --sage-light:    #D4DCC9;
  --olive:         #7C8255;
  --ink:           #1B2818;
  --ink-soft:      #3E4A38;
  --ink-muted:     #6B7363;
  --soil:          #5C4A36;
  --border:        rgba(26,56,38,0.12);
  --border-soft:   rgba(26,56,38,0.07);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
body.loaded { opacity: 1; }

.serif {
  font-family: 'Times New Roman', sans-serif;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
ul { list-style: none; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
}

.display-tight {
  font-family: 'Times New Roman', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.display-mid {
  font-family: 'Times New Roman', sans-serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.grain { position: relative; }
.grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.18'/></svg>");
  opacity: 0.06; mix-blend-mode: multiply; z-index: 1;
}

.container { max-width: 1480px; margin: 0 auto; padding: 0 24px; position: relative; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.hairline { height: 1px; background: var(--border); }

/* NAV */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  padding: 16px;
  transition: padding 0.4s ease;
}
.nav-wrap.scrolled { padding: 8px 16px; }

.nav {
  background: var(--forest-deep);
  border-radius: 0;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 32px rgba(15,36,23,0.18);
  border: 1px solid rgba(244,239,227,0.06);
  max-width: 1480px; margin: 0 auto;
  transition: padding 0.4s ease;
}
.nav-wrap.scrolled .nav { padding: 10px 22px; }

.nav-logo { height: 22px; width: auto; flex-shrink: 0; transition: height 0.3s; }
.nav-wrap.scrolled .nav-logo { height: 19px; }

.nav-center {
  display: none;
  align-items: center; gap: 30px;
}
@media (min-width: 1024px) { .nav-center { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  color: rgba(244,239,227,0.88);
  font-size: 13px; letter-spacing: 0.01em;
  padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1px; background: var(--cream);
  transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--cream); }
.nav-link.active::after { width: 100%; }

.chev {
  display: inline-block; width: 9px; height: 9px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  opacity: 0.75;
}
.nav-item:hover .chev { transform: rotate(225deg) translateY(0); }

.dropdown {
  position: absolute; top: 100%; left: -10px;
  background: var(--cream);
  border-radius: 0;
  border: 1px solid var(--border);
  min-width: 290px;
  padding: 14px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 20px 60px rgba(15,36,23,0.18);
  z-index: 110;
}
.nav-item:hover .dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.dropdown a:hover { background: var(--cream-warm); color: var(--forest); }

.nav-cta {
  background: var(--cream); color: var(--forest);
  padding: 11px 22px;
  border-radius: 0;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
@media (max-width: 1024px) { .nav-cta { display: none; } }
.nav-cta:hover { background: var(--sage-light); }

.menu-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px;
  background: var(--cream); color: var(--forest);
  font-size: 12px; font-weight: 500;
  border-radius: 0;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--forest-deep);
  z-index: 200;
  padding: 90px 32px 48px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .close-btn {
  position: absolute; top: 22px; right: 22px;
  background: rgba(244,239,227,0.1); color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 0;
  font-size: 22px;
}
.mobile-menu .m-item { border-bottom: 1px solid rgba(244,239,227,0.1); }
.mobile-menu .m-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  color: var(--cream); padding: 18px 0; font-family: 'Times New Roman', sans-serif; font-size: 26px;
  cursor: pointer;
}
.mobile-menu .m-sub {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu .m-item.open .m-sub { max-height: 500px; }
.mobile-menu .m-sub a {
  display: block; padding: 10px 0;
  color: rgba(244,239,227,0.75); font-size: 14px;
}
.mobile-menu .m-sub { padding-bottom: 14px; }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,23,0.45) 0%, rgba(15,36,23,0.20) 40%, rgba(15,36,23,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 80px 24px 140px;
  color: var(--cream);
}
.hero-mark { margin: 0 auto 36px; opacity: 0.85; }
.hero h1 { font-family: 'Times New Roman', sans-serif;
  font-weight: 400;
  font-size: clamp(54px, 9.2vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero h1 em { font-style: italic; color: var(--sage-light); }
.hero .lede {
  max-width: 640px; margin: 0 auto 40px;
  font-size: 16px; line-height: 1.75;
  color: rgba(244,239,227,0.88);
}
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary { background: var(--cream); color: var(--forest); border: 1px solid var(--cream); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(244,239,227,0.4); }
.btn-outline:hover { background: rgba(244,239,227,0.08); border-color: var(--cream); }

.hero-meta {
  position: absolute; bottom: 30px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 32px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,239,227,0.65);
  z-index: 2;
}
@media (max-width: 720px) { .hero-meta { display: none; } }

/* SECTIONS */
.section { position: relative; padding: 100px 0; }
@media (min-width: 1024px) { .section { padding: 140px 0; } }

.section-label {
  display: inline-flex; align-items: center; gap: 14px;
}
.section-label .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--olive); }
.section-label .line { width: 36px; height: 1px; background: var(--olive); opacity: 0.4; }
.section-label .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--olive); letter-spacing: 0.18em; text-transform: uppercase; }
.section-label.dark .num,
.section-label.dark .lbl { color: var(--sage); }
.section-label.dark .line { background: var(--sage); opacity: 0.6; }

/* PLEDGE */
.pledge { background: var(--cream); }
.pledge .grid {
  display: grid; gap: 60px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 1024px) {
  .pledge .grid { grid-template-columns: 1fr 1.2fr; gap: 100px; }
}
.pledge h2 {
  font-size: clamp(40px, 6vw, 88px);
  color: var(--forest);
  margin: 24px 0 12px;
}
.pledge h2 em { font-style: italic; color: var(--olive); font-weight: 300; }
.pledge p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 22px; }
.pledge-quote {
  font-family: 'Times New Roman', sans-serif; font-style: italic; font-size: 22px;
  color: var(--forest); line-height: 1.5;
  padding-left: 28px; border-left: 2px solid var(--olive);
  margin: 30px 0 18px;
}

/* CREDIBILITY */
.credibility {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.credibility::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=2000&q=85');
  background-size: cover; background-position: center;
  opacity: 0.12;
}
.cred-grid {
  display: grid; gap: 36px 24px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
@media (min-width: 768px) { .cred-grid { grid-template-columns: repeat(5, 1fr); } }
.cred-item .n {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cred-item .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(244,239,227,0.7);
}

/* CAPABILITIES PREVIEW */
.capabilities-preview { background: var(--paper); }
.cp-header {
  display: grid; gap: 30px; margin-bottom: 60px;
  grid-template-columns: 1fr; align-items: end;
}
@media (min-width: 1024px) { .cp-header { grid-template-columns: 1.5fr 1fr; gap: 60px; } }
.cp-header h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(52px, 8vw, 112px); color: var(--forest);
  margin-top: 24px;
}
.cp-header p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 460px; }

.cp-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cp-grid { grid-template-columns: repeat(12, 1fr); } }

.cp-card-big {
  position: relative; overflow: hidden;
  min-height: 580px;
  background-image: linear-gradient(180deg, rgba(15,36,23,0.10) 0%, rgba(15,36,23,0.88) 100%);
  background-size: cover; background-position: center;
  padding: 38px;
  color: var(--cream);
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
  transition: transform 0.4s;
}
.cp-card-big:hover { transform: translateY(-4px); }
@media (min-width: 1024px) { .cp-card-big { grid-column: span 5; grid-row: span 2; } }
.cp-card-big .top { display: flex; justify-content: space-between; }
.cp-card-big .icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(244,239,227,0.4);
  display: flex; align-items: center; justify-content: center;
}
.cp-card-big .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.7; }
.cp-card-big h3 { font-family: 'Times New Roman', sans-serif;
  font-size: clamp(28px, 3vw, 42px); line-height: 1.05;
  margin-bottom: 18px;
}
.cp-card-big p { font-size: 14.5px; line-height: 1.7; opacity: 0.88; max-width: 380px; }
.cp-card-big .learn {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.85;
}

.cp-sub {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cp-sub { grid-column: span 7; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; } }
@media (min-width: 640px) and (max-width: 1023px) { .cp-sub { grid-template-columns: 1fr 1fr; } }

.cp-card {
  background: var(--cream);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,56,38,0.08); }
.cp-card-img {
  position: relative; height: 140px;
  background-size: cover; background-position: center;
}
.cp-card-img .num {
  position: absolute; top: 14px; right: 14px;
  background: rgba(244,239,227,0.92); color: var(--forest);
  padding: 4px 10px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
}
.cp-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cp-card-body .iconc {
  width: 38px; height: 38px;
  background: var(--cream-warm); color: var(--forest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cp-card-body h4 {
  font-family: 'Times New Roman', sans-serif; font-size: 19px;
  color: var(--forest); line-height: 1.22; margin-bottom: 10px;
}
.cp-card-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.cp-card-body .more {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive);
  display: inline-flex; align-items: center; gap: 6px;
}

.cp-cta-row {
  margin-top: 50px;
  display: flex; justify-content: center;
}

/* FORESTRY GRAPHIC */
.forestry { background: var(--paper); padding-top: 0; }
.forestry .header {
  text-align: center;
  max-width: 860px; margin: 0 auto 50px;
}
.forestry h2 {
  font-size: clamp(36px, 5.4vw, 64px); font-family: 'Times New Roman', sans-serif;
  color: var(--forest);
  margin-top: 18px;
}
.forestry .lead {
  margin-top: 24px;
  font-size: 15px; color: var(--ink-soft); line-height: 1.75;
  max-width: 640px; margin-left: auto; margin-right: auto;
}

.forestry-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px; align-items: center;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .forestry-block { grid-template-columns: 1fr 1.5fr 1fr; gap: 40px; }
}
.forestry-stats { display: grid; gap: 30px; }
.forestry-stat .n {
  font-family: 'Times New Roman', sans-serif; font-size: 42px; color: var(--forest);
  line-height: 1; margin-bottom: 8px;
}
.forestry-stat .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 12px;
}
.forestry-stat .desc { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
.forestry-stat.right { text-align: right; }

.forestry-svg-wrap {
  display: flex; justify-content: center; align-items: center;
  min-height: 380px;
}

.forestry-tags {
  margin-top: 70px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.forestry-tag {
  padding: 9px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.06em; color: var(--forest);
}

/* SYSTEMS PREVIEW */
.systems-preview { background: var(--cream); }
.sp-header {
  text-align: center; max-width: 760px; margin: 0 auto 56px;
}
.sp-header h2 {
  font-size: clamp(48px, 7vw, 96px); color: var(--forest); font-family: 'Times New Roman', sans-serif;
  margin-top: 20px;
}
.sp-header h2 em { font-style: italic; color: var(--olive); }
.sp-header p { margin-top: 22px; font-size: 16px; color: var(--ink-soft); line-height: 1.7; }

.sp-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .sp-grid { grid-template-columns: repeat(3, 1fr); } }

.sp-card {
  background: var(--paper);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.4s;
  display: flex; flex-direction: column;
}
.sp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,56,38,0.10); }
.sp-card-top { padding: 36px 32px 6px; }
.sp-card .topbar { display: flex; justify-content: space-between; align-items: start; margin-bottom: 28px; }
.sp-card .iconw {
  width: 50px; height: 50px;
  background: var(--forest); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sp-card .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-muted); }
.sp-card h3 {
  font-family: 'Times New Roman', sans-serif; font-size: 24px;
  color: var(--forest); line-height: 1.22; margin-bottom: 14px;
}
.sp-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; }
.sp-card-img { height: 240px; background-size: cover; background-position: center; }

/* CATALOGUE PREVIEW */
.cat-preview {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative; overflow: hidden;
}
.cat-preview .header {
  display: grid; gap: 30px;
  grid-template-columns: 1fr; align-items: end;
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .cat-preview .header { grid-template-columns: 1.5fr 1fr; gap: 60px; }
}
.cat-preview h2 {
  font-size: clamp(50px, 7.5vw, 104px); font-family: 'Times New Roman', sans-serif;
  color: var(--cream); margin-top: 18px;
}
.cat-preview h2 em { font-style: italic; color: var(--sage); }
.cat-preview .sub { font-size: 16px; line-height: 1.7; color: rgba(244,239,227,0.78); max-width: 460px; }

.cat-chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 50px;
}
.cat-chip {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid rgba(244,239,227,0.2);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(244,239,227,0.85);
  letter-spacing: 0.06em;
  cursor: pointer; transition: all 0.2s;
}
.cat-chip:hover, .cat-chip.active {
  background: var(--cream); color: var(--forest);
  border-color: var(--cream);
}

.cat-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }

/* Catalogue Preview Grid Expansion Logic for Homepage */
.cat-preview-grid article:nth-child(n+3) { display: none; } /* Mobile: Show 2 */

@media (min-width: 768px) {
  .cat-preview-grid article:nth-child(n+3) { display: block; }
  .cat-preview-grid article:nth-child(n+5) { display: none; } /* Tablet: Show 4 */
}

@media (min-width: 1280px) {
  .cat-preview-grid article:nth-child(n+5) { display: block; }
  .cat-preview-grid article:nth-child(n+6) { display: none; } /* Desktop: Show 5 */
}

/* End Catalogue Preview Grid Expansion Logic */

.plant-card {
  background: rgba(244,239,227,0.04);
  border: 1px solid rgba(244,239,227,0.08);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.plant-card:hover { transform: translateY(-3px); border-color: rgba(244,239,227,0.2); }
.plant-img { height: 180px; background-size: cover; background-position: center; }
.plant-body { padding: 20px; }
.plant-body .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 8px;
}
.plant-body h4 {
  font-family: 'Times New Roman', sans-serif; font-size: 18px;
  color: var(--cream); line-height: 1.2; margin-bottom: 4px;
}
.plant-body em {
  font-family: 'Times New Roman', sans-serif; font-style: italic;
  font-size: 12px; color: rgba(244,239,227,0.6);
  display: block; margin-bottom: 12px;
}
.plant-body .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.plant-body .tag {
  padding: 3px 8px;
  background: rgba(181,192,168,0.12);
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  letter-spacing: 0.1em; color: var(--sage);
}

/* PROJECTS PREVIEW */
.projects-preview { background: var(--cream); }
.pr-header {
  display: grid; gap: 30px; align-items: end;
  margin-bottom: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .pr-header { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.pr-header h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(52px, 8vw, 112px); color: var(--forest);
  margin-top: 20px;
}
.pr-header h2 em { font-style: italic; color: var(--olive); }
.pr-header p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 460px; }

.pr-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .pr-grid { grid-template-columns: repeat(12, 1fr); grid-template-rows: 1fr 1fr 1fr; } }

.pr-card {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 280px;
  cursor: pointer; transition: transform 0.4s;
}
.pr-card:hover { transform: translateY(-4px); }
.pr-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,36,23,0.05) 30%, rgba(15,36,23,0.85) 100%);
}
.pr-card .body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: var(--cream); z-index: 2;
}
.pr-card .meta {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 8px;
}
.pr-card h3 {
  font-family: 'Times New Roman', sans-serif; font-size: 22px;
  line-height: 1.2;
}
.pr-card.large h3 { font-size: 32px; }

@media (min-width: 1024px) {
  .pr-card:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 480px; }
  .pr-card:nth-child(2) { grid-column: span 5; }
  .pr-card:nth-child(3) { grid-column: span 5; }
  .pr-card:nth-child(4) { grid-column: span 7; }
}

/* IMPACT PREVIEW */
.impact-preview { background: var(--cream-warm); }
.ip-header {
  display: grid; gap: 30px;
  grid-template-columns: 1fr; align-items: end;
  margin-bottom: 50px;
}
@media (min-width: 1024px) { .ip-header { grid-template-columns: 1.3fr 1fr; gap: 70px; } }
.ip-header h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(50px, 8vw, 104px);
  color: var(--forest); margin-top: 20px;
}
.ip-header h2 em { font-style: italic; color: var(--olive); }
.ip-header p { font-size: 16px; color: var(--ink-soft); line-height: 1.7; }

.ip-collage {
  display: grid; gap: 10px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 220px 220px;
  margin-bottom: 60px;
}
.ip-collage > div { background-size: cover; background-position: center; }
.ip-collage > div:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.ip-collage > div:nth-child(2) { grid-column: span 3; }
.ip-collage > div:nth-child(3) { grid-column: span 2; }
.ip-collage > div:nth-child(4) { grid-column: span 1; }
.ip-collage > div:nth-child(5) { grid-column: span 0; display: none; }
.ip-collage > div:nth-child(6) { grid-column: span 0; display: none; }

.ip-initiatives { display: grid; gap: 18px; }
.ip-init {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: center;
}
@media (min-width: 1024px) {
  .ip-init { grid-template-columns: 100px 1fr 1.6fr 60px; gap: 40px; }
}
.ip-init .iconw {
  width: 56px; height: 56px;
  background: var(--forest); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ip-init h4 {
  font-family: 'Times New Roman', sans-serif; font-size: 24px;
  color: var(--forest); line-height: 1.22;
}
.ip-init p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.ip-init .arrow {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  justify-self: end;
}

/* JOURNAL PREVIEW */
.journal-preview { background: var(--sage-light); }
.jp-tag {
  display: inline-block; padding: 4px 12px;
  background: var(--forest); color: var(--cream);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; margin-bottom: 22px;
}
.jp-header h2 {
  font-family: 'Times New Roman', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 88px);
  color: var(--forest);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
}
.jp-header h2 em { font-style: italic; color: var(--forest-deep); }
.jp-header .pipe { color: var(--olive); margin: 0 12px; }

.jp-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .jp-grid { grid-template-columns: repeat(3, 1fr); } }

.jp-card { cursor: pointer; transition: all 0.3s; }
.jp-card-img {
  height: 240px; margin-bottom: 18px;
  background-size: cover; background-position: center;
}
.jp-card .cat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 12px;
}
.jp-card h4 {
  font-family: 'Times New Roman', sans-serif; font-size: 22px;
  color: var(--forest); line-height: 1.22; margin-bottom: 10px;
}
.jp-card:hover h4 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.jp-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.jp-card .time {
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--ink-muted); letter-spacing: 0.1em;
}

/* FINAL CTA */
.final-cta {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 140px 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?w=1200&q=82');
  background-size: cover; background-position: center;
  opacity: 0.16;
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(48px, 8vw, 104px); line-height: 0.95;
  max-width: 900px; margin: 0 auto 30px;
}
.final-cta h2 em { font-style: italic; color: var(--sage); }
.final-cta p { max-width: 520px; margin: 0 auto 40px; font-size: 15px; line-height: 1.7; color: rgba(244,239,227,0.78); }

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--cream);
  overflow: hidden;
}
.page-hero.dark { background: var(--forest-deep); color: var(--cream); }
.page-hero .grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr; align-items: end;
}
@media (min-width: 1024px) { .page-hero .grid { grid-template-columns: 1.5fr 1fr; gap: 60px; } }
.page-hero h1 {
  font-family: 'Times New Roman', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-top: 30px;
}
.page-hero.dark h1 { color: var(--cream); }
.page-hero h1 em { font-style: italic; color: var(--forest-deep); }
.page-hero.dark h1 em { color: var(--sage); }
.page-hero p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.page-hero.dark p { color: rgba(244,239,227,0.78); }

/* CAPABILITY SECTIONS */
.cap-section {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
}
.cap-section.alt { background: var(--paper); }
.cap-section .row {
  display: grid; gap: 50px;
  grid-template-columns: 1fr; align-items: center;
}
@media (min-width: 1024px) { .cap-section .row { grid-template-columns: 1fr 1fr; gap: 80px; } }
.cap-section.reverse .row > .img { order: 2; }
.cap-section .img { height: 480px; background-size: cover; background-position: center; }
.cap-section h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(32px, 4.6vw, 54px); line-height: 1.05;
  color: var(--forest); margin: 20px 0 22px;
}
.cap-section p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.cap-section ul { margin-top: 22px; padding-left: 0; }
.cap-section ul li {
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14px; color: var(--ink-soft);
  display: flex; gap: 14px; align-items: start;
}
.cap-section ul li:last-child { border-bottom: 1px solid var(--border); }
.cap-section ul li .bullet {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--olive); flex-shrink: 0;
}

/* STATS BAND */
.stats-band {
  background: var(--forest);
  color: var(--cream);
  padding: 70px 0;
}
.stats-band .grid {
  display: grid; gap: 36px 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .stats-band .grid { grid-template-columns: repeat(4, 1fr); } }
.stats-band .n {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(40px, 5vw, 62px); line-height: 1;
  margin-bottom: 12px;
}
.stats-band .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage);
}

/* CATALOGUE PAGE */
.cat-cat-section { background: var(--cream); padding: 100px 0; }
.cat-cat-section.alt { background: var(--paper); }
.cat-cat-section.dark { background: var(--forest-deep); color: var(--cream); }
.cat-cat-section .header {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 18px;
}
.cat-cat-section h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--forest);
}
.cat-cat-section.dark h2 { color: var(--cream); }
.cat-cat-section .grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .cat-cat-section .grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .cat-cat-section .grid { grid-template-columns: repeat(5, 1fr); } }

/* Catalogue Grid Expansion Logic */
.collapsible-grid article:nth-child(n+3) { display: none; } /* Mobile: Show 2 */

@media (min-width: 768px) {
  .collapsible-grid article:nth-child(n+3) { display: block; }
  .collapsible-grid article:nth-child(n+5) { display: none; } /* Tablet: Show 4 */
}

@media (min-width: 1280px) {
  .collapsible-grid article:nth-child(n+5) { display: block; }
  .collapsible-grid article:nth-child(n+6) { display: none; } /* Desktop: Show 5 */
}

.collapsible-grid.expanded article { display: block !important; }

.load-more-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--olive);
  color: var(--olive);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-learn-more:hover { background: var(--olive); color: var(--cream); }
.cat-cat-section.dark .btn-learn-more { border-color: var(--sage); color: var(--sage); }
.cat-cat-section.dark .btn-learn-more:hover { background: var(--sage); color: var(--forest-deep); }

.cat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.cat-cat-section.alt .cat-card { background: var(--cream); }
.cat-cat-section.dark .cat-card { background: rgba(244,239,227,0.05); border-color: rgba(244,239,227,0.1); }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,56,38,0.08); }
.cat-card-img { height: 160px; background-size: cover; background-position: center; } .cat-card-body { padding: 18px; } .cat-card h4 { font-family: 'Times New Roman', sans-serif; font-size: 17px;
  color: var(--forest); margin-bottom: 4px;
}
.cat-cat-section.dark .cat-card h4 { color: var(--cream); }
.cat-card em { font-style: italic; font-family: 'Times New Roman', sans-serif;
  font-size: 12px; color: var(--ink-muted);
  display: block; margin-bottom: 8px;
}
.cat-cat-section.dark .cat-card em { color: rgba(244,239,227,0.55); }
.cat-card-local {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  color: var(--olive);
  padding-top: 8px; margin-top: 4px;
  border-top: 1px solid var(--border);
}
.cat-cat-section.dark .cat-card-local { color: var(--sage); border-top-color: rgba(244,239,227,0.12); }

/* CATALOGUE FILTER SIDEBAR LAYOUT - UPDATED */
.catalogue-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding-bottom: 120px;
}

.catalogue-sidebar {
  width: 260px;
  position: sticky;
  top: 120px;
  height: auto;
  flex-shrink: 0;
  padding-bottom: 40px;
}

.catalogue-content {
  flex: 1;
  min-width: 0;
}

.filter-group {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.catalogue-grid-unified { 
  display: grid; 
  gap: 16px; 
  grid-template-columns: repeat(2, 1fr); 
  transition: opacity 0.3s ease;
}

/* Sort Dropdown */
.sort-dropdown-wrap { position: relative; }
.sort-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--forest);
  font-size: 11px; font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.sort-btn:hover { border-color: var(--forest); }
.sort-menu {
  position: absolute; top: 100%; right: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  min-width: 200px;
  margin-top: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 150;
}
.sort-menu.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sort-option {
  padding: 12px 20px;
  font-size: 13px; color: var(--ink-soft);
  cursor: pointer; transition: background 0.2s;
}
.sort-option:hover { background: var(--cream-warm); color: var(--forest); }
.sort-option.active { color: var(--forest); font-weight: 600; background: var(--cream-warm); }

/* View More Logic */
.catalogue-grid-unified article.hidden-by-limit {
  display: none !important;
}

@media (min-width: 768px) { .catalogue-grid-unified { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .catalogue-grid-unified { grid-template-columns: repeat(4, 1fr); } }

.filter-group:last-child { border-bottom: none; }

.filter-group h5 { margin-bottom: 18px; }

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  cursor: pointer;
}

.filter-option input { margin-right: 10px; accent-color: var(--forest); }

.filter-option .count { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--ink-muted); }

@media (max-width: 900px) {
  .catalogue-layout { flex-direction: column; gap: 40px; }
  .catalogue-sidebar { width: 100%; position: relative; top: 0; border-bottom: 1px solid var(--border); }
  .sort-dropdown-wrap { width: 100%; margin-top: 10px; }
  .sort-btn { width: 100%; justify-content: space-between; }
  .sort-menu { width: 100%; left: 0; }
}

/* PROJECTS PAGE */
.proj-list { background: var(--cream); }
.proj-row-full {
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.proj-row-full .grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .proj-row-full .grid { grid-template-columns: 1.4fr 1fr; gap: 70px; } }
.proj-row-full.reverse .img { order: 2; }
.proj-row-full .img { height: 460px; background-size: cover; background-position: center; position: relative; }
.proj-row-full .img .tag {
  position: absolute; top: 18px; left: 18px;
  background: rgba(244,239,227,0.92); color: var(--forest);
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.proj-row-full .meta-row {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 18px;
}
.proj-row-full h3 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--forest); line-height: 1.05;
  margin-bottom: 22px;
}
.proj-row-full p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }
.proj-row-full .outcome {
  background: var(--paper);
  padding: 22px 26px;
  border-left: 3px solid var(--olive);
}
.proj-row-full .outcome .l {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 8px;
}
.proj-row-full .outcome .v { font-family: 'Times New Roman', sans-serif; font-size: 19px;
  color: var(--forest); line-height: 1.3;
}

/* IMPACT PAGE */
.impact-hero-collage {
  display: grid; gap: 8px;
  grid-template-columns: repeat(6, 1fr);
  height: 540px;
  margin-top: 50px;
}
.impact-hero-collage > div { background-size: cover; background-position: center; }
.impact-hero-collage > div:nth-child(1) { grid-column: span 3; grid-row: span 6; }
.impact-hero-collage > div:nth-child(2) { grid-column: span 3; grid-row: span 3; }
.impact-hero-collage > div:nth-child(3) { grid-column: span 2; grid-row: span 3; }
.impact-hero-collage > div:nth-child(4) { grid-column: span 1; grid-row: span 3; }

.impact-init-section { padding: 80px 0; }
.impact-init-section .row {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .impact-init-section .row { grid-template-columns: 1fr 1.3fr; gap: 70px; } }
.impact-init-section.reverse .img { order: 2; }
.impact-init-section .img { height: 420px; background-size: cover; background-position: center; } .impact-init-section h2 { font-family: 'Times New Roman', sans-serif;
  font-size: clamp(32px, 4.4vw, 52px);
  color: var(--forest); line-height: 1.05;
  margin: 18px 0 22px;
}
.impact-init-section p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.impact-init-section ul { margin-top: 22px; }
.impact-init-section ul li {
  padding: 12px 0; border-top: 1px solid var(--border);
  display: flex; gap: 14px; font-size: 14px; color: var(--ink-soft);
}
.impact-init-section ul li:last-child { border-bottom: 1px solid var(--border); }

/* JOURNAL PAGE */
.featured-essay { background: var(--cream); padding: 80px 0; }
.featured-essay .grid {
  display: grid; gap: 50px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .featured-essay .grid { grid-template-columns: 1.4fr 1fr; gap: 70px; } }
.featured-essay .img { height: 540px; background-size: cover; background-position: center; }
.featured-essay .cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--olive); } .featured-essay h2 { font-family: 'Times New Roman', sans-serif; font-size: clamp(32px, 4.4vw, 52px);
  color: var(--forest); line-height: 1.05;
  margin: 18px 0 22px;
}
.featured-essay p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; }
.featured-essay .meta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.featured-essay .meta .left { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-muted); letter-spacing: 0.1em; }
.featured-essay .meta .right { color: var(--forest); display: inline-flex; gap: 8px; align-items: center; }

.j-all { background: var(--paper); padding: 80px 0; }
.j-all .header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 50px; flex-wrap: wrap; gap: 18px; }
.j-all h2 { font-family: 'Times New Roman', sans-serif; font-size: clamp(40px, 6vw, 76px); color: var(--forest); }
.j-all .grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .j-all .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .j-all .grid { grid-template-columns: repeat(3, 1fr); } }

.newsletter-strip {
  background: var(--forest-deep); color: var(--cream);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.newsletter-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1000&q=82');
  background-size: cover; background-position: center;
  opacity: 0.10;
}
.newsletter-strip .container { position: relative; z-index: 2; }
.newsletter-strip .grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .newsletter-strip .grid { grid-template-columns: 1.4fr 1fr; gap: 60px; } } .newsletter-strip h2 { font-family: 'Times', sans-serif;
  font-size: clamp(40px, 5.6vw, 68px); line-height: 0.98;
  color: var(--cream); margin: 20px 0 18px;
}
.newsletter-strip p { color: rgba(244,239,227,0.75); font-size: 15px; line-height: 1.7; max-width: 420px; }
.newsletter-box {
  padding: 8px;
  background: rgba(244,239,227,0.07);
  border: 1px solid rgba(244,239,227,0.15);
  display: flex; gap: 8px; border-radius: 100px;
}
.newsletter-box input {
  flex: 1; background: transparent; border: 0; outline: 0;
  padding: 12px 18px;
  color: var(--cream); font-size: 14px;
}
.newsletter-box input::placeholder { color: rgba(244,239,227,0.4); }
.newsletter-box button {
  background: var(--cream); color: var(--forest);
  padding: 12px 22px; border-radius: 100px;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
}

/* CONTACT PAGE */
.contact-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 60px; } }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .img { height: 380px; background-size: cover; background-position: center; }
.info-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--border);
  display: flex; gap: 18px; align-items: start;
  transition: transform 0.3s;
}
.info-card:hover { transform: translateX(4px); }
.info-card .iconc {
  width: 42px; height: 42px;
  background: var(--forest); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-card .lbl {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 4px;
}
.info-card .v { font-family: 'Times New Roman', sans-serif; font-size: 18px; color: var(--forest); }
.info-card .sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }

.contact-social {
  padding: 26px; background: var(--forest); color: var(--cream);
}
.contact-social p { font-size: 14px; line-height: 1.65; color: rgba(244,239,227,0.78); margin: 12px 0 18px; }
.contact-social .icons { display: flex; gap: 10px; }
.contact-social .icons a {
  width: 38px; height: 38px;
  background: rgba(244,239,227,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background 0.2s;
}
.contact-social .icons a:hover { background: rgba(244,239,227,0.2); }

.contact-form-wrap {
  background: var(--paper);
  padding: 38px;
  border: 1px solid var(--border);
}
@media (min-width: 1024px) { .contact-form-wrap { padding: 56px; } }
.contact-form-wrap h3 {
  font-family: 'Times New Roman', sans-serif; font-size: clamp(32px, 4vw, 44px);
  color: var(--forest); margin-bottom: 36px;
}
.contact-form-wrap .field { margin-bottom: 28px; }
.contact-form-wrap label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); display: block; margin-bottom: 10px;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0; font-family: inherit; font-size: 16px; color: var(--ink);
  outline: none; transition: border-color 0.3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { border-color: var(--forest); }
.contact-form-wrap textarea { resize: vertical; min-height: 110px; }
.contact-form-wrap .row { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .contact-form-wrap .row { grid-template-columns: 1fr 1fr; } }
.contact-form-wrap .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-form-wrap .chip {
  padding: 8px 16px; border-radius: 100px;
  background: transparent; border: 1px solid var(--border);
  font-size: 12px; color: var(--ink-soft);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.05em;
  cursor: pointer; transition: all 0.2s;
}
.contact-form-wrap .chip.active, .contact-form-wrap .chip:hover {
  background: var(--forest); color: var(--cream); border-color: var(--forest);
}
.contact-form-wrap .submit-row {
  margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.contact-form-wrap .submit-row p { font-size: 11px; color: var(--ink-muted); max-width: 280px; line-height: 1.5; }
.contact-form-wrap .submit-btn {
  background: var(--forest); color: var(--cream);
  padding: 15px 30px;
  font-size: 13px; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 10px;
  transition: gap 0.3s, background 0.3s;
}
.contact-form-wrap .submit-btn:hover { background: var(--forest-deep); gap: 14px; }

.contact-strip {
  background: var(--cream-warm);
  padding: 36px 0;
  margin-top: 42px;
}
.contact-strip .grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.contact-strip .item { text-align: center; }
.contact-strip .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.contact-strip .v { font-family: 'Times New Roman', sans-serif; font-size: 18px; color: var(--forest); margin-top: 6px; }

/* SECTION CTA */
.section-cta {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--border);
}
.section-cta h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(40px, 5.6vw, 68px);
  color: var(--forest); line-height: 1;
  margin: 18px 0 22px;
}
.section-cta h2 em { font-style: italic; color: var(--olive); }
.section-cta p { max-width: 500px; margin: 0 auto 32px; font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.section-cta .btn { background: var(--forest); color: var(--cream); border: 1px solid var(--forest); }
.section-cta .btn:hover { background: var(--forest-deep); }

/* FOOTER */
.footer-statement {
  background: var(--cream-warm);
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--border);
}
.footer-statement h2 {
  font-family: 'Times New Roman', sans-serif;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--forest);
}
.footer-statement h2 em { font-style: italic; color: var(--olive); }

footer {
  background: var(--forest-deep); color: var(--cream);
  padding: 70px 0 30px;
}
footer .grid {
  display: grid; gap: 50px;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
}
@media (min-width: 1024px) { footer .grid { grid-template-columns: 1.4fr 2fr; gap: 80px; } }
.footer-brand img { height: 28px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(244,239,227,0.7); max-width: 360px; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
@media (min-width: 768px) { .footer-cols { grid-template-columns: repeat(5, 1fr); } }
.footer-cols h5 {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 18px;
}
.footer-cols a { display: block; color: rgba(244,239,227,0.78); font-size: 13.5px; padding: 6px 0; transition: color 0.2s; cursor: pointer; }
.footer-cols a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(244,239,227,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(244,239,227,0.55);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(244,239,227,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background 0.2s;
}
.footer-social a:hover { background: rgba(244,239,227,0.18); }

.rise { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.rise.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 130px 0 70px; }
  .nav-wrap { padding: 10px; }
  .nav { padding: 10px 18px; }
}
