/* ============================================================
   ECO HOLZ RESIDENCE — Main Stylesheet
   Palette: Forest green / Warm cream / Aged-gold amber
   Type: Playfair Display (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --green-deep:   #2A3628;
  --green-mid:    #3D4F3A;
  --green-muted:  #7A9078;
  --green-pale:   #A8B8A6;
  --cream:        #F7F4EF;
  --cream-mid:    #EFECE5;
  --cream-dark:   #E2DDD4;
  --amber:        #C4A165;
  --amber-light:  #D4B896;
  --amber-dark:   #8B6A3A;
  --text-dark:    #1E2A1C;
  --text-body:    #3A4A38;
  --text-muted:   #6A7A68;
  --text-faint:   #9AA898;
  --white:        #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:       2px;
  --max-w:        1140px;
  --section-pad:  80px 32px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Typography scale ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--green-deep); }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--text-body); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-dark);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  padding: 13px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary  { background: var(--amber); color: var(--green-deep); }
.btn-ghost    { background: transparent; color: var(--cream); border: 0.5px solid rgba(247,244,239,0.45); }
.btn-dark     { background: var(--green-deep); color: var(--cream); }
.btn-outline  { background: transparent; color: var(--green-deep); border: 0.5px solid var(--amber-dark); }
.btn-group    { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,244,239,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(139,106,58,0.2);
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  white-space: nowrap;
}
.nav-logo span { color: var(--amber-dark); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a.active { color: var(--green-deep); font-weight: 500; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 0.5px solid rgba(139,106,58,0.25);
  border-radius: 3px;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(30,42,28,0.1);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 20px;
  font-size: 0.78rem; color: var(--text-body);
}
.dropdown-menu a:hover { background: var(--cream-mid); color: var(--green-deep); }

.nav-cta {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.07em;
  background: var(--green-deep); color: var(--cream);
  padding: 9px 20px; border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-mid); color: var(--cream); }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--green-deep); transition: all 0.2s; }

/* Page offset for fixed nav */
.nav-spacer { height: 64px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  padding: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    158deg,
    rgba(30,42,28,0.52) 0%,
    rgba(24,36,22,0.75) 45%,
    rgba(18,28,16,0.93) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  width: 100%;
  padding-bottom: 72px;
  padding-top: 120px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  max-width: 620px;
  margin-bottom: 20px;
  line-height: 1.12;
}
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--green-pale);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding-top: 28px;
  border-top: 0.5px solid rgba(196,161,101,0.3);
  margin-top: 44px;
}
.hero-trust-item {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-muted);
}

/* ── SECTIONS ── */
.section          { padding: var(--section-pad); }
.section-cream    { background: var(--cream); }
.section-mid      { background: var(--cream-mid); }
.section-dark     { background: var(--green-deep); }
.section-inner    { max-width: var(--max-w); margin: 0 auto; }

.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { max-width: 540px; }

/* ── FEATURE COLUMNS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0.5px solid rgba(139,106,58,0.18);
}
.feature-col {
  padding: 32px 28px;
  border-right: 0.5px solid rgba(139,106,58,0.18);
}
.feature-col:last-child { border-right: none; }
.feature-icon {
  width: 32px; height: 32px;
  background: rgba(42,54,40,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 16px; height: 16px; stroke: var(--green-deep); fill: none; stroke-width: 1.5; }
.feature-col h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.feature-col p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* ── BUILD SECTION ── */
.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.build-text h2 { margin-bottom: 20px; }
.build-text p  { margin-bottom: 16px; }
.build-points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.build-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--cream-mid);
  border-left: 2px solid var(--amber);
}
.build-point-text h4 {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  color: var(--green-deep); margin-bottom: 3px;
}
.build-point-text p { font-size: 0.78rem; color: var(--text-muted); }
.build-visual {
  background: rgba(196,161,101,0.08);
  border: 0.5px solid rgba(196,161,101,0.3);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.build-visual-label {
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--amber-dark); text-transform: uppercase;
}

/* ── PROJECT CARD (homepage) ── */
.project-banner {
  background: var(--green-deep);
  padding: var(--section-pad);
}
.project-banner-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.project-img-placeholder {
  aspect-ratio: 4/3;
  background: rgba(196,161,101,0.08);
  border: 0.5px solid rgba(196,161,101,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.project-img-placeholder span {
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: rgba(196,161,101,0.6); text-transform: uppercase;
}
.project-info .eyebrow { margin-bottom: 12px; }
.project-info h2 { color: var(--cream); margin-bottom: 20px; }
.project-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px; margin-bottom: 28px;
}
.project-meta-item {
  font-size: 0.78rem;
}
.project-meta-item .meta-label { color: var(--amber); font-weight: 500; display: block; margin-bottom: 2px; }
.project-meta-item .meta-value { color: var(--green-pale); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green-deep);
  padding: 72px 32px 64px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { color: var(--cream); max-width: 640px; margin-bottom: 20px; }
.page-hero p { color: var(--green-pale); max-width: 560px; font-size: 1.05rem; }

/* ── PIPELINE PAGE ── */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  background: rgba(139,106,58,0.15);
  margin-top: 40px;
}
.pipeline-card {
  background: var(--cream);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: background 0.15s;
}
.pipeline-card:hover { background: var(--cream-mid); }
.pipeline-card .eyebrow { margin-bottom: 10px; }
.pipeline-card h3 { font-size: 1.2rem; margin-bottom: 14px; color: var(--green-deep); }
.pipeline-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.pipeline-card-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.pipeline-card-meta-item { font-size: 0.72rem; }
.pipeline-card-meta-item .ml { color: var(--amber-dark); font-weight: 500; display: block; }
.pipeline-card-meta-item .mv { color: var(--text-body); }
.status-pill {
  display: inline-block;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(196,161,101,0.15);
  color: var(--amber-dark);
  border: 0.5px solid rgba(196,161,101,0.4);
  margin-bottom: 14px;
}

/* ── DEVELOPMENT DETAIL ── */
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-sidebar {
  background: var(--cream-mid);
  padding: 32px;
  border-left: 2px solid var(--amber);
  position: sticky; top: 88px;
}
.detail-sidebar h3 {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: 20px;
}
.fact-list { display: flex; flex-direction: column; gap: 14px; }
.fact-item { border-bottom: 0.5px solid var(--cream-dark); padding-bottom: 14px; }
.fact-item:last-child { border-bottom: none; padding-bottom: 0; }
.fact-label { font-size: 0.7rem; font-weight: 500; color: var(--text-faint); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.fact-value { font-size: 0.9rem; color: var(--green-deep); font-weight: 400; }
.detail-body h2 { margin-bottom: 16px; }
.detail-body p  { margin-bottom: 20px; }
.detail-body h2 + p { margin-top: 0; }

/* ── PARTNERSHIPS (Investors / Landowners) ── */
.partnership-section { padding: 60px 0; border-bottom: 0.5px solid var(--cream-dark); }
.partnership-section:last-child { border-bottom: none; }
.partnership-section h2 { margin-bottom: 16px; }
.partnership-section p  { max-width: 640px; margin-bottom: 16px; }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start;
}
.about-aside {
  background: var(--green-deep); padding: 40px 36px; color: var(--cream);
  border-radius: var(--radius);
}
.about-aside h3 {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.about-aside ul { display: flex; flex-direction: column; gap: 14px; }
.about-aside ul li {
  font-size: 0.85rem; font-weight: 300; color: var(--green-pale);
  padding-left: 16px; position: relative; line-height: 1.6;
}
.about-aside ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--amber-dark); font-size: 0.75rem;
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p  { margin-bottom: 20px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.contact-detail  { font-size: 0.85rem; color: var(--text-muted); }
.contact-detail strong { color: var(--green-deep); font-weight: 500; }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  border: 0.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(196,161,101,0.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.72rem; color: var(--text-faint); margin-top: 2px; }
.form-submit { margin-top: 8px; }
.form-success {
  display: none; text-align: center; padding: 32px;
  background: rgba(196,161,101,0.08);
  border: 0.5px solid rgba(196,161,101,0.3);
  border-radius: var(--radius);
}
.form-success h3 { font-family: var(--font-body); font-size: 1rem; color: var(--green-deep); margin-bottom: 8px; }
.form-success p { font-size: 0.85rem; color: var(--text-muted); }

/* ── FAQ ── */
.faq-section { margin-bottom: 56px; }
.faq-section h2 { margin-bottom: 28px; padding-bottom: 14px; border-bottom: 0.5px solid var(--cream-dark); }
.faq-item { border-bottom: 0.5px solid var(--cream-dark); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1rem;
  color: var(--green-deep); font-weight: 400;
  gap: 16px;
}
.faq-question:hover { color: var(--amber-dark); }
.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px;
  position: relative; transition: transform 0.2s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: var(--amber-dark);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  display: none; padding: 0 0 20px;
  font-size: 0.9rem; font-weight: 300; color: var(--text-body); line-height: 1.85;
}
.faq-answer p + p { margin-top: 12px; }
.faq-item.open .faq-answer { display: block; }

/* ── SUSTAINABILITY ── */
.sustain-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.sustain-aside {
  background: var(--cream-mid); padding: 32px;
  border-top: 2px solid var(--green-deep);
  position: sticky; top: 88px;
}
.sustain-aside h3 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 20px;
}
.sustain-aside ul { display: flex; flex-direction: column; gap: 10px; }
.sustain-aside ul li { font-size: 0.82rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.sustain-aside ul li::before { content: '↓'; position: absolute; left: 0; color: var(--green-muted); }
.sustain-body h2 { margin-bottom: 14px; margin-top: 40px; }
.sustain-body h2:first-child { margin-top: 0; }
.sustain-body p  { margin-bottom: 14px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green-deep); padding: 64px 32px; text-align: center;
}
.cta-band-inner { max-width: 560px; margin: 0 auto; }
.cta-band h2 { color: var(--cream); margin-bottom: 14px; }
.cta-band p  { color: var(--green-pale); margin-bottom: 32px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--text-dark);
  padding: 56px 32px 32px;
  color: var(--green-pale);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.8rem; color: var(--green-muted); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--green-muted); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 0.5px solid rgba(139,106,58,0.2);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.72rem; color: var(--text-faint); }
.footer-bottom a { color: var(--text-faint); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--green-pale); }

/* ── REAL IMAGES ── */
.build-visual-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.build-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.project-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pipeline-card-img {
  margin: -36px -32px 24px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pipeline-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.pipeline-card:hover .pipeline-card-img img { transform: scale(1.03); }

/* ── CONSTRUCTION PROGRESS TIMELINE ── */
.progress-timeline { display: flex; flex-direction: column; }
.pt-item {
  display: grid;
  grid-template-columns: 160px 24px 1fr;
  gap: 0;
}
.pt-date-col {
  text-align: right;
  padding-right: 0;
  padding-bottom: 48px;
  padding-top: 3px;
}
.pt-item--last .pt-date-col { padding-bottom: 0; }
.pt-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 4px;
}
.pt-phase {
  display: block;
  font-size: 0.72rem;
  color: var(--text-faint);
}
.pt-line-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 0;
}
.pt-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
}
.pt-dot--done {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(196,161,101,0.2);
}
.pt-dot--upcoming {
  background: var(--cream);
  border: 1.5px solid var(--amber-light);
}
.pt-connector {
  flex: 1;
  width: 1px;
  background: rgba(196,161,101,0.25);
  min-height: 24px;
  margin: 6px 0;
}
.pt-item--last .pt-connector { display: none; }
.pt-content {
  padding-left: 24px;
  padding-bottom: 48px;
}
.pt-item--last .pt-content { padding-bottom: 0; }
.pt-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 14px;
}
.pt-caption-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.pt-caption-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}
.pt-upcoming-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: rgba(196,161,101,0.12);
  border: 0.5px solid rgba(196,161,101,0.35);
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .pt-item { grid-template-columns: 0 20px 1fr; }
  .pt-date-col { display: none; }
  .pt-caption-title::before {
    content: attr(data-date) ' — ';
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--amber-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }
}

/* ── DIVIDER ── */
.divider { border: none; border-top: 0.5px solid rgba(139,106,58,0.2); margin: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --section-pad: 56px 24px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-col { border-bottom: 0.5px solid rgba(139,106,58,0.18); }
  .feature-col:nth-child(odd) { border-right: 0.5px solid rgba(139,106,58,0.18); }
  .feature-col:nth-child(even) { border-right: none; }
  .build-grid { grid-template-columns: 1fr; }
  .build-visual { display: none; }
  .project-banner-inner { grid-template-columns: 1fr; }
  .project-img-placeholder { display: none; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sustain-grid { grid-template-columns: 1fr; }
  .sustain-aside { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--cream); padding: 24px;
    border-bottom: 0.5px solid var(--cream-dark);
    gap: 20px; z-index: 99;
  }
  .nav-links.open .dropdown-menu { display: block; position: static; transform: none; box-shadow: none; border: none; padding: 8px 0 0 16px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-col { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}


