/* ============================================
   Vandhanam Natural Farms — Stylesheet
   Palette: forest #1A3626 · gold #D4AF37 · cream #FDFBF7
   Fonts:  Cormorant Garamond (headings) · Outfit (body)
   ============================================ */

:root {
  --base: #FDFBF7;
  --card: #FFFFFF;
  --muted: #E5E0D5;
  --forest: #1A3626;
  --darker: #142A1D;
  --sage: #4A6D50;
  --gold: #D4AF37;
  --text: #0D1C13;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--base);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

em { font-style: normal; color: var(--gold); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--forest); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: var(--forest); }
::-webkit-scrollbar-thumb:hover { background: var(--darker); }

/* ----- Layout helpers ----- */
.container { max-width: 1600px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px) { .container { padding: 0 48px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

.section { padding: 96px 0; }
@media (min-width: 640px) { .section { padding: 128px 0; } }
 .hero {
   
    padding: 30px;
}
.overline {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 24px;
  display: block;
}
.overline-gold { color: var(--gold); }
button.logo img {
    width: 150px;
}
/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color .3s, color .3s, transform .3s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--forest); }
.btn-primary:hover { background: var(--base); }
.btn-dark { background: var(--forest); color: var(--base); }
.btn-dark:hover { background: var(--darker); }
.btn-outline { border-color: rgba(253, 251, 247, .4); color: var(--base); }
.btn-outline:hover { background: var(--base); color: var(--forest); }

/* ----- Reveal animation ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

header#nav {
    background: rgba(253, 251, 247, .85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 54, 38, .1);
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all .5s;
}
.nav.scrolled {
  background: rgba(253, 251, 247, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 54, 38, .1);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) { .nav-inner { padding: 0 48px; } 
    .hero {
   
    padding: 30px;
}
}
@media (min-width: 1024px) { .nav-inner { padding: 0 64px; } }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--forest);
  color: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond';
  font-size: 18px;
}
.logo-text { display: none; flex-direction: column; }
@media (min-width: 640px) { .logo-text { display: flex; } }
.logo-text .name { font-family: 'Cormorant Garamond'; font-size: 20px; color: var(--forest); }
.logo-text .sub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
}

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .4s;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-cta { display: none; align-items: center; gap: 8px; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

.nav-mobile-btn { display: inline-flex; padding: 8px; color: var(--forest); }
@media (min-width: 1024px) { .nav-mobile-btn { display: none; } }

.mobile-menu { display: none; background: var(--base); border-top: 1px solid rgba(26, 54, 38, .1); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 24px; display: flex; flex-direction: column; }
.mobile-link {
  padding: 12px 0;
  color: var(--forest);
  font-weight: 500;
  text-align: left;
  border-bottom: 1px solid rgba(26, 54, 38, .05);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--forest);
  color: var(--base);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(26, 54, 38, .85), rgba(26, 54, 38, .55), rgba(26, 54, 38, .3));
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--forest), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 0 96px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.hero-title { font-size: clamp(48px, 9vw, 128px); font-weight: 500; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 2fr 1fr; gap: 40px; }
}
.hero-copy { max-width: 420px; color: rgba(253, 251, 247, .85); font-size: 18px; line-height: 1.6; }
.hero-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-stats {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(253, 251, 247, .15);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}
.stat { border-left: 1px solid rgba(212, 175, 55, .4); padding-left: 16px; }
.stat .k { font-family: 'Cormorant Garamond'; font-size: 28px; }
.stat .v {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, .65);
  margin-top: 4px;
}

/* ============ Marquee ============ */
.marquee {
  background: var(--gold);
  border-top: 1px solid rgba(26, 54, 38, .1);
  border-bottom: 1px solid rgba(26, 54, 38, .1);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  padding: 20px 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Cormorant Garamond';
  font-size: 22px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 48px;
}
.marquee-track .sep { color: rgba(26, 54, 38, .4); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ About ============ */
.about { background: var(--base); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 4fr 8fr; gap: 80px; }
}
.about-title { font-size: clamp(36px, 5vw, 72px); color: var(--forest); }
.about-body p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(13, 28, 19, .8);
  margin-bottom: 24px;
  max-width: 640px;
}
.about-body strong { color: var(--forest); font-weight: 500; }
.about-philosophy {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 54, 38, .1);
}
.about-philosophy .quote {
  font-family: 'Cormorant Garamond';
  font-size: 28px;
  line-height: 1.4;
  color: var(--forest);
  max-width: 640px;
}

/* ============ Vision ============ */
.vision { background: var(--forest); color: var(--base); position: relative; overflow: hidden; }
.vision .container { position: relative; }
.vision-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .vision-head { grid-template-columns: 5fr 1fr 6fr; }
}
.vision-head .copy {
  align-self: end;
  color: rgba(253, 251, 247, .75);
  font-size: 18px;
  line-height: 1.6;
}
@media (min-width: 1024px) { .vision-head .copy { grid-column: 3 / 4; } }
.vision-h2 { font-size: clamp(36px, 5vw, 72px); }
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(253, 251, 247, .15);
}
@media (min-width: 768px) { .vision-grid { grid-template-columns: 1fr 1fr; } }
.vision-block {
  background: var(--forest);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vision-block .row { display: flex; justify-content: space-between; align-items: baseline; }
.vision-block .num { font-family: 'Cormorant Garamond'; color: var(--gold); font-size: 20px; }
.vision-block .label {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.vision-block .body { font-family: 'Cormorant Garamond'; font-size: 26px; line-height: 1.35; }

/* ============ Ecosystem ============ */
.eco { background: var(--base); }
.eco-head { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
@media (min-width: 1024px) { .eco-head { grid-template-columns: 6fr 1fr 5fr; } }
.eco-head .copy { align-self: end; color: rgba(13, 28, 19, .75); font-size: 18px; line-height: 1.6; }
@media (min-width: 1024px) { .eco-head .copy { grid-column: 3 / 4; } }
.eco-h2 { font-size: clamp(36px, 5vw, 72px); color: var(--forest); }
.eco-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26, 54, 38, .1);
  border: 1px solid rgba(26, 54, 38, .1);
}
@media (min-width: 768px)  { .eco-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .eco-grid { grid-template-columns: repeat(4, 1fr); } }
.eco-card { background: var(--base); padding: 36px; transition: background .5s; }
.eco-card:hover { background: var(--forest); color: var(--base); }
.eco-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.eco-card .icon { width: 26px; height: 26px; color: var(--forest); transition: color .5s; }
.eco-card:hover .icon { color: var(--gold); }
.eco-card .num { font-family: 'Cormorant Garamond'; color: var(--sage); font-size: 14px; transition: color .5s; }
.eco-card:hover .num { color: var(--gold); }
.eco-card h3 { font-size: 24px; color: var(--forest); margin-bottom: 8px; transition: color .5s; }
.eco-card:hover h3 { color: var(--base); }
.eco-card p { font-size: 14px; color: rgba(13, 28, 19, .65); line-height: 1.6; transition: color .5s; }
.eco-card:hover p { color: rgba(253, 251, 247, .75); }
.eco-callout {
  background: var(--gold);
  color: var(--forest);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eco-callout .big { font-family: 'Cormorant Garamond'; font-size: 30px; line-height: 1.1; }
.eco-callout .small {
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(26, 54, 38, .8);
  margin-top: 24px;
}

/* ============ Technology ============ */
.tech { background: var(--base); }
.tech-head { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
@media (min-width: 1024px) { .tech-head { grid-template-columns: 6fr 1fr 5fr; } }
.tech-head .copy { align-self: end; color: rgba(13, 28, 19, .75); font-size: 18px; line-height: 1.6; }
@media (min-width: 1024px) { .tech-head .copy { grid-column: 3 / 4; } }
.tech-h2 { font-size: clamp(36px, 5vw, 72px); color: var(--forest); }
.bento { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .bento { grid-template-columns: repeat(12, 1fr); gap: 32px; } }
.bento-img { position: relative; overflow: hidden; min-height: 420px; }
@media (min-width: 1024px) { .bento-img { grid-column: span 7; grid-row: span 2; } }
.bento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.bento-img:hover img { transform: scale(1.05); }
.bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--forest), rgba(26, 54, 38, .3), transparent);
}
.bento-img-text {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: var(--base);
  z-index: 1;
}
.bento-img-text .small {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.bento-img-text .h { font-family: 'Cormorant Garamond'; font-size: clamp(28px, 3vw, 48px); line-height: 1.1; max-width: 420px; }

.bento-tile {
  padding: 40px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 1024px) { .bento-tile { grid-column: span 5; } }
.bento-dark { background: var(--forest); color: var(--base); }
.bento-gold { background: var(--gold); color: var(--forest); }
.bento-tile .label {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}
.bento-gold .label { color: var(--forest); }
.bento-tile .body { font-family: 'Cormorant Garamond'; font-size: 28px; line-height: 1.25; }

.tech-features {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26, 54, 38, .1);
  border: 1px solid rgba(26, 54, 38, .1);
}
@media (min-width: 768px)  { .tech-features { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tech-features { grid-column: 1 / -1; grid-template-columns: repeat(5, 1fr); } }
.tf { background: var(--base); padding: 24px; transition: background .3s, color .3s; }
.tf:hover { background: var(--forest); color: var(--base); }
.tf .ic { display: block; margin-bottom: 24px; color: var(--forest); transition: color .3s; }
.tf:hover .ic { color: var(--gold); }
.tf p { font-size: 14px; font-weight: 500; color: var(--forest); transition: color .3s; line-height: 1.3; }
.tf:hover p { color: var(--base); }

/* ============ Model ============ */
.model { background: rgba(229, 224, 213, .4); }
.model-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .model-grid { grid-template-columns: 4fr 8fr; } }
.model-h2 { font-size: clamp(36px, 5vw, 72px); color: var(--forest); margin-bottom: 32px; }
.model-intro { font-size: 18px; color: rgba(13, 28, 19, .75); line-height: 1.6; max-width: 420px; }

.model-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(26, 54, 38, .1);
  border: 1px solid rgba(26, 54, 38, .1);
}
@media (min-width: 768px) { .model-right { grid-template-columns: 1fr 1fr; } }
.model-card { padding: 40px; }
.model-card.lite { background: var(--base); }
.model-card.dark { background: var(--forest); color: var(--base); }
.model-card .lbl {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.model-card ul { list-style: none; }
.model-card li {
  display: flex;
  gap: 12px;
  font-family: 'Cormorant Garamond';
  font-size: 20px;
  color: var(--forest);
  padding: 6px 0;
}
.model-card.dark li { color: var(--base); }
.model-card li::before { content: "·"; color: var(--gold); margin-top: 4px; }

.model-resp { padding: 40px; background: var(--base); grid-column: 1 / -1; }
.resp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
@media (min-width: 640px) { .resp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .resp-grid { grid-template-columns: repeat(5, 1fr); } }
.resp-grid div {
  font-size: 14px;
  color: var(--forest);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.resp-grid div::before { content: "✓"; color: var(--gold); font-size: 12px; margin-top: 2px; }

/* ============ Lease + Contract ============ */
.lc { background: var(--base); }
.lc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(26, 54, 38, .1);
  border: 1px solid rgba(26, 54, 38, .1);
}
@media (min-width: 1024px) { .lc-grid { grid-template-columns: 1fr 1fr; } }
.lc-card { padding: 48px; }
.lc-card.lite { background: var(--base); }
.lc-card.dark { background: var(--forest); color: var(--base); }
.lc-card h2 { font-size: clamp(28px, 3vw, 48px); color: var(--forest); margin-bottom: 32px; }
.lc-card.dark h2 { color: var(--base); }
.lc-card .desc { font-size: 17px; color: rgba(13, 28, 19, .75); line-height: 1.6; margin-bottom: 32px; }
.lc-list { list-style: none; }
.lc-list li {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 54, 38, .1);
  color: var(--forest);
}
.lc-list li:last-child { border: none; }
.lc-list .n { font-family: 'Cormorant Garamond'; color: var(--gold); font-size: 14px; }
.lc-two { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .lc-two { grid-template-columns: 1fr 1fr; } }
.lc-two h4 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.lc-two ul { list-style: none; }
.lc-two li { font-size: 14px; color: rgba(253, 251, 247, .85); padding: 4px 0; }

/* ============ Value ============ */
.value { background: rgba(229, 224, 213, .4); }
.value-head { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 56px; }
@media (min-width: 1024px) { .value-head { grid-template-columns: 7fr 1fr 4fr; } }
.value-head .copy { align-self: end; color: rgba(13, 28, 19, .75); font-size: 18px; line-height: 1.6; }
@media (min-width: 1024px) { .value-head .copy { grid-column: 3 / 4; } }
.value-h2 { font-size: clamp(36px, 5vw, 72px); color: var(--forest); }
.value-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .value-grid { grid-template-columns: 7fr 5fr; } }
.value-proc { background: var(--forest); color: var(--base); padding: 48px; }
.value-proc .lbl {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(253, 251, 247, .1);
}
.proc-grid > div {
  background: var(--forest);
  padding: 18px 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.proc-grid .n { font-family: 'Cormorant Garamond'; color: var(--gold); font-size: 14px; }
.proc-grid .t { font-family: 'Cormorant Garamond'; font-size: 19px; }
.value-channels { display: flex; flex-direction: column; gap: 24px; }
.value-channels > p { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--sage); }
.ch {
  background: var(--base);
  border: 1px solid rgba(26, 54, 38, .1);
  padding: 28px;
  transition: transform .3s;
}
.ch:hover { transform: translateY(-4px); }
.ch h4 { font-size: 22px; color: var(--forest); margin-bottom: 8px; }
.ch p { font-size: 14px; color: rgba(13, 28, 19, .65); line-height: 1.6; }

/* ============ Projects ============ */
.projects { background: var(--base); }
.proj-head { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 64px; }
@media (min-width: 1024px) { .proj-head { grid-template-columns: 7fr 1fr 4fr; } }
.proj-head .copy { align-self: end; color: rgba(13, 28, 19, .75); font-size: 18px; line-height: 1.6; }
@media (min-width: 1024px) { .proj-head .copy { grid-column: 3 / 4; } }
.proj-h2 { font-size: clamp(36px, 5vw, 72px); color: var(--forest); }
.proj-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px)  { .proj-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .proj-grid { grid-template-columns: repeat(3, 1fr); } }
.proj-card {
  border: 1px solid rgba(26, 54, 38, .1);
  background: var(--base);
  transition: transform .5s;
}
.proj-card:hover { transform: translateY(-4px); }
.proj-img { aspect-ratio: 4 / 5; overflow: hidden; background: rgba(26, 54, 38, .05); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-body { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.proj-row { display: flex; justify-content: space-between; align-items: center; }
.proj-row .tag { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--sage); }
.proj-row .num { font-family: 'Cormorant Garamond'; color: var(--gold); font-size: 14px; }
.proj-card h3 { font-size: 26px; color: var(--forest); }
.proj-card p { font-size: 14px; color: rgba(13, 28, 19, .65); line-height: 1.6; }

/* ============ Why ============ */
.why { background: var(--forest); color: var(--base); position: relative; overflow: hidden; }
.why-head { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 64px; }
@media (min-width: 1024px) { .why-head { grid-template-columns: 1fr 1fr; } }
.why-h2 { font-size: clamp(36px, 5vw, 72px); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(253, 251, 247, .15); }
@media (min-width: 768px)  { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { background: var(--forest); padding: 40px; transition: background .3s; }
.why-card:hover { background: var(--darker); }
.why-card .n { font-family: 'Cormorant Garamond'; color: var(--gold); font-size: 22px; margin-bottom: 24px; }
.why-card h3 { font-size: 28px; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: rgba(253, 251, 247, .7); line-height: 1.6; }

/* ============ Contact ============ */
.contact { background: var(--base); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-h2 { font-size: clamp(36px, 5vw, 72px); color: var(--forest); margin-bottom: 32px; }
.contact-intro { font-size: 18px; color: rgba(13, 28, 19, .75); line-height: 1.6; margin-bottom: 48px; max-width: 420px; }

.contact-info { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-info li { display: flex; gap: 16px; color: var(--forest); }
.contact-info .ic { color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.contact-info .lbl {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.contact-info a:hover { color: var(--gold); }

.contact-form {
  background: var(--forest);
  color: var(--base);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cf-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cf-top .lbl { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.cf-top .req { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(253, 251, 247, .6); }
.cf-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .cf-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, .65);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(253, 251, 247, .3);
  padding: 12px 0;
  color: var(--base);
  font: inherit;
  transition: border-color .3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field select option { color: var(--forest); background: var(--base); }
.field textarea { resize: none; }
.cf-submit { align-self: flex-start; margin-top: 16px; }
.cf-success { display: none; color: var(--gold); font-size: 14px; margin-top: 8px; }
.cf-success.show { display: block; }
.cf-foot {
  font-size: 12px;
  color: rgba(253, 251, 247, .55);
  margin-top: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============ Footer ============ */
.footer { background: var(--forest); color: var(--base); position: relative; overflow: hidden; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 48px; padding: 80px 0; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: 5fr 3fr 4fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-brand .mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond';
  font-size: 20px;
}
.footer-brand .name { font-family: 'Cormorant Garamond'; font-size: 24px; }
.footer-brand .sub {
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.footer-tag { font-family: 'Cormorant Garamond'; font-size: 28px; line-height: 1.3; max-width: 420px; }
.footer h4 {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: rgba(253, 251, 247, .85); }
.footer ul a:hover { color: var(--gold); }
.footer-contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-row .ic { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(253, 251, 247, .1); }
.footer-bottom-inner {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(253, 251, 247, .6);
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-bottom-inner .right { letter-spacing: .2em; text-transform: uppercase; }

/* ============ Inline SVG icons ============ */
.svg-ic {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-lg { width: 22px; height: 22px; }
.svg-26 { width: 26px; height: 26px; stroke-width: 1.4; }

/* ==========================
   Mobile Responsive
========================== */

@media (max-width: 768px) {

  .container{
      padding:0 18px;
  }

  .section{
      padding:70px 0;
  }

  button.logo img{
      width:120px;
  }

  .nav-inner{
      height:70px;
      padding:0 16px;
  }

  .nav-cta{
      display:none;
  }

  .hero{
      min-height:auto;
  }

  .hero-inner{
      padding:120px 0 60px;
  }

  .hero-title{
      font-size:42px;
      line-height:1.1;
  }

  .hero-copy{
      font-size:16px;
      max-width:100%;
  }

  .hero-ctas{
      flex-direction:column;
  }

  .btn{
      width:100%;
  }

  .hero-stats{
      grid-template-columns:1fr;
      gap:20px;
      margin-top:50px;
  }

  .about-title,
  .vision-h2,
  .eco-h2,
  .tech-h2,
  .model-h2,
  .value-h2,
  .proj-h2{
      font-size:40px;
  }

  .about-body p{
      font-size:16px;
  }

  .vision-block,
  .eco-card,
  .model-card,
  .lc-card,
  .value-proc,
  .proj-body{
      padding:24px;
      box-sizing: border-box;
  }

  .bento-img{
      min-height:260px;
  }

  .tech-features{
      grid-template-columns:1fr;
  }

  .proj-grid{
      grid-template-columns:1fr;
  }

  .resp-grid{
      grid-template-columns:1fr;
  }

  .proc-grid{
      grid-template-columns:1fr;
  }

  .lc-two{
      grid-template-columns:1fr;
  }

  .marquee-track span{
      font-size:18px;
  }

}
