/* ============================================================
   KORDELL GROUP — styles.css
   Shared stylesheet for all pages
   ============================================================ */

/* ---- GOOGLE FONTS ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

/* ---- TOKENS ---------------------------------------------- */
:root {
  --forest:       #0B4431;
  --forest-deep:  #072E21;
  --forest-mid:   #0e5539;
  --bg:           #F2F5F3;
  --bg-warm:      #EEEDE8;
  --white:        #FFFFFF;
  --text:         #000000;
  --text-mid:     #303030;
  --text-light:   #6B7570;
  --border:       #D4DAD6;
  --border-light: #E5EAE6;

  --font-display: "Book Antiqua", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body:    "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-label:   Cambria, "Hoefler Text", Georgia, serif;

  --max-w: 1240px;
  --nav-h: 68px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---- RESET ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---- TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
p { line-height: 1.7; }

.eyebrow {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: rgba(244, 245, 243, 0.7); }

/* ---- LAYOUT ---------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 22px; } }

section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 3.8vw, 46px); margin-top: 16px; }
.section-head p { font-size: 17px; color: var(--text-mid); margin-top: 16px; max-width: 560px; }
.section-head.center { text-align: center; }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---- GRAIN TEXTURE --------------------------------------- */
.grain {
  position: relative;
}
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.042'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ---- NAVIGATION ------------------------------------------ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#site-nav.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 20px rgba(11,68,49,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) { .nav-inner { padding: 0 22px; } }

.nav-logo {
  height: 26px;
  width: auto;
  display: block;
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--forest);
  transition: width 0.25s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--forest); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 3px;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-mid); opacity: 1 !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 22px;
  flex-direction: column;
  gap: 28px;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 22px;
  transition: color 0.2s ease;
}
.mobile-menu a.active,
.mobile-menu a:hover { color: var(--forest); }
.mobile-menu a.mobile-cta {
  background: var(--forest);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-label);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

/* ---- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border: 1.5px solid var(--forest);
}
.btn-primary:hover { background: var(--forest-mid); border-color: var(--forest-mid); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline:hover { background: rgba(11,68,49,0.08); border-color: var(--forest-mid); color: var(--forest-mid); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-text {
  background: transparent;
  color: var(--forest);
  border: none;
  padding-left: 0;
  padding-right: 0;
  font-size: 11px;
}
.btn-text .arrow { transition: transform 0.2s ease; }
.btn-text:hover .arrow { transform: translateX(4px); }
.btn-text:hover { transform: none; }

/* ---- PAGE HERO (inner pages) ----------------------------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  color: var(--white);
  margin-top: 20px;
  max-width: 700px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-top: 18px;
  max-width: 560px;
  line-height: 1.65;
}
.page-hero-blob {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- CARDS ----------------------------------------------- */
.card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(11,68,49,0.07), 0 1px 3px rgba(11,68,49,0.04);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-out);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(11,68,49,0.12), 0 2px 8px rgba(11,68,49,0.06);
  transform: translateY(-3px);
}

/* ---- VENTURE CARDS --------------------------------------- */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .ventures-grid { grid-template-columns: 1fr; gap: 16px; } }

.venture-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-out), border-color 0.25s ease;
}
.venture-card:hover {
  box-shadow: 0 8px 32px rgba(11,68,49,0.10), 0 2px 8px rgba(11,68,49,0.05);
  transform: translateY(-3px);
  border-color: var(--forest);
}
.venture-card:hover .arrow { transform: translateX(4px); }
.venture-icon {
  width: 44px;
  height: 44px;
  color: var(--forest);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.venture-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}
.venture-card p {
  font-size: 15px;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 28px;
  line-height: 1.65;
}

/* ---- FORMS ----------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(11,68,49,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230B4431' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-submit { margin-top: 8px; }

/* ---- STAT BLOCKS ----------------------------------------- */
.stats-row {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.stat-item { }
.stat-num {
  font-family: var(--font-display);
  font-size: 46px;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ---- SPLIT LAYOUT ---------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
}
.split-text h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 16px 0 20px; }
.split-text p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.split-image { border-radius: 4px; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }

/* ---- DIVIDER -------------------------------------------- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
}

/* ---- FOOTER --------------------------------------------- */
footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}

/* ---- SCROLL ANIMATIONS ----------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ---- DARK SECTION ---------------------------------------- */
.section-dark {
  background: var(--forest);
  color: var(--white);
}
.section-dark .eyebrow { color: rgba(255,255,255,0.6); }
.section-dark .eyebrow::before { background: rgba(255,255,255,0.3); }
.section-dark .section-head h2 { color: var(--white); }
.section-dark .section-head p { color: rgba(255,255,255,0.65); }

/* ---- NEWSLETTER STRIP ------------------------------------ */
.newsletter-strip {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 6px;
}
.newsletter-text p {
  font-size: 15px;
  color: var(--text-mid);
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
.newsletter-form input {
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 13px 18px;
  font-size: 14px;
  width: 260px;
  outline: none;
  transition: border-color 0.2s ease;
  background: var(--white);
}
.newsletter-form input:focus { border-color: var(--forest); }
.newsletter-form button {
  background: var(--forest);
  color: var(--white);
  border: 1.5px solid var(--forest);
  border-radius: 0 3px 3px 0;
  padding: 13px 22px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--forest-mid); border-color: var(--forest-mid); }
@media (max-width: 640px) {
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { border-right: 1.5px solid var(--border); border-bottom: none; border-radius: 3px 3px 0 0; width: 100%; }
  .newsletter-form input:focus { border-color: var(--forest); }
  .newsletter-form button { border-radius: 0 0 3px 3px; }
}

/* ---- PROCESS STEPS --------------------------------------- */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.step-num {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  padding-top: 4px;
}
.step-body h4 { font-family: var(--font-display); font-size: 19px; color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* ---- IMAGE PLACEHOLDER ----------------------------------- */
.img-placeholder {
  background: var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  gap: 10px;
  border-radius: 4px;
  min-height: 260px;
}
.img-placeholder .ph-label {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.img-placeholder .ph-prompt {
  font-size: 12px;
  color: var(--text-light);
  max-width: 280px;
  line-height: 1.6;
}

/* ---- SERVICE CARDS --------------------------------------- */
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.service-item:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 20px rgba(11,68,49,0.09);
  transform: translateX(4px);
}
.service-item-left { display: flex; gap: 28px; align-items: flex-start; }
.service-item-icon { width: 36px; height: 36px; color: var(--forest); flex-shrink: 0; margin-top: 4px; }
.service-item h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.service-item p { font-size: 15px; color: var(--text-mid); line-height: 1.65; max-width: 580px; }
.service-item-arrow { color: var(--forest); transition: transform 0.2s ease; }
.service-item:hover .service-item-arrow { transform: translateX(4px); }
@media (max-width: 640px) {
  .service-item { grid-template-columns: 1fr; }
  .service-item-left { flex-direction: column; gap: 12px; }
}

/* ---- PORTFOLIO GRID -------------------------------------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.portfolio-item:hover {
  box-shadow: 0 8px 28px rgba(11,68,49,0.12);
  transform: translateY(-3px);
}
.portfolio-item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border-light);
}
.portfolio-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-item:hover .portfolio-item-img img { transform: scale(1.04); }
.portfolio-item-info { padding: 20px 22px 22px; }
.portfolio-item-info .tag {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}
.portfolio-item-info h4 { font-family: var(--font-display); font-size: 17px; color: var(--text); }

/* ---- NOTICE BADGE --------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
}
.badge-green { color: var(--forest); border-color: rgba(11,68,49,0.3); background: rgba(11,68,49,0.05); }
.badge-white { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ---- COLLECTIBLES CARDS --------------------------------- */
.collectible-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) { .collectible-highlight { grid-template-columns: 1fr; } }
.collectible-img-card {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--forest);
}
.collectible-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---- COMING SOON ---------------------------------------- */
.coming-soon-hero {
  min-height: calc(100vh - var(--nav-h));
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.coming-soon-hero .cs-blob {
  position: absolute;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.coming-soon-inner { position: relative; z-index: 2; }
.coming-soon-inner .big-text {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 28px;
}
.coming-soon-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ---- ABOUT PAGE ----------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-item { padding: 36px 32px; border: 1px solid var(--border-light); border-radius: 4px; background: var(--white); }
.value-item .value-num {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 16px;
}
.value-item h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 12px; }
.value-item p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* ---- CONNECT GRID (Contact page) ------------------------ */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .connect-grid { grid-template-columns: 1fr; } }
.connect-card {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 36px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.connect-card:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 20px rgba(11,68,49,0.08);
  transform: translateY(-2px);
}
.connect-card-icon { width: 36px; height: 36px; color: var(--forest); }
.connect-card h3 { font-family: var(--font-display); font-size: 19px; }
.connect-card p { font-size: 14px; color: var(--text-mid); flex: 1; }
.connect-card .connect-link {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- HERO SECTION (homepage) ---------------------------- */
.home-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,68,49,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.hero-wordmark {
  width: min(480px, 70vw);
  margin: 0 auto 36px;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-tagline {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-hint span {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--border), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--forest);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop { 0%{top:-100%} 60%{top:100%} 100%{top:100%} }

/* ---- MISSION QUOTE SECTION ------------------------------ */
.mission-section {
  background: var(--forest);
  padding: 90px 0;
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--white);
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mission-attr {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-top: 24px;
}
