/* ============================================
   VOLTFORGE ENERGY — MAIN STYLESHEET
   Light / Whitespace Theme | Clean & Sleek
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --green:     #0A9752;
  --green-dk:  #077a40;
  --green-lt:  #e8f7f0;
  --amber:     #FACC25;
  --amber-dk:  #d4aa10;
  --white:     #ffffff;
  --off-white: #fafaf8;
  --stone:     #f4f3ef;
  --ink:       #1a1a1a;
  --ink-mid:   #3d3d3d;
  --ink-soft:  #6b6b6b;
  --ink-pale:  #999999;
  --border:    #e8e6e0;
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
  --max-w:     1240px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--ink-mid); line-height: 1.75; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* ---------- LAYOUT ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(10,151,82,.25);
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10,151,82,.35);
}
.btn-secondary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(250,204,37,.3);
}
.btn-secondary:hover {
  background: var(--amber-dk);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--ink-mid);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-lt);
}
.btn-white {
  background: var(--white);
  color: var(--green);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--green-lt);
  transform: translateY(-2px);
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.8);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- NAVIGATION ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: .65rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-mark svg { width: 22px; height: 22px; fill: white; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
#navbar.scrolled .logo-text strong { color: var(--ink); }
#navbar:not(.scrolled) .logo-text strong { color: var(--white); }
.logo-text span {
  font-size: .65rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
}
#navbar:not(.scrolled) .logo-text span { color: rgba(255,255,255,.7); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 500;
  border-radius: 100px;
  transition: var(--transition);
  color: var(--ink-mid);
}
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-lt);
}
#navbar:not(.scrolled) .nav-links a:hover,
#navbar:not(.scrolled) .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.nav-cta { margin-left: 1rem; }
#navbar:not(.scrolled) .nav-cta { background: var(--amber); color: var(--ink); box-shadow: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}
#navbar:not(.scrolled) .hamburger span { background: white; }

/* ---------- MOBILE NAV ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: .5rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--green); padding-left: .5rem; }
.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}

/* ============================================
   HOME PAGE
   ============================================ */

/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 960px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,20,15,.72) 0%,
    rgba(10,20,15,.40) 55%,
    rgba(10,20,15,.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(250,204,37,.18);
  border: 1px solid rgba(250,204,37,.4);
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-badge span { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}
.hero-content h1 em { font-style: normal; font-weight: 700; color: var(--amber); }
.hero-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--amber);
  width: 28px;
  border-radius: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}

/* ---------- STATS BAND ---------- */
.stats-band {
  background: var(--ink);
  padding: 2.5rem 0;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.stat-item {
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- INTRO SECTION ---------- */
.intro-text { max-width: 600px; }
.intro-text h2 { margin-bottom: 1.25rem; }
.intro-text p { margin-bottom: 1rem; }
.intro-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.intro-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.intro-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--green-lt);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.intro-badge-icon svg { width: 20px; height: 20px; color: var(--green); }
.intro-badge-text strong { display: block; font-size: .9rem; color: var(--ink); }
.intro-badge-text span  { font-size: .78rem; color: var(--ink-soft); }

/* ---------- SERVICES CARDS ---------- */
.services-section { background: var(--off-white); }
.services-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-lt);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--green); }
.service-card h4 { color: var(--ink); margin-bottom: .5rem; }
.service-card p { font-size: .9rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 1rem;
  transition: var(--transition);
}
.service-link:hover { gap: .6rem; }

/* ---------- WHY VOLTFORGE ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }
.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.why-visual img { width: 100%; height: 100%; object-fit: cover; }
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,151,82,.7) 100%);
  z-index: 1;
}
.why-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  color: white;
}
.why-caption strong { font-family: var(--font-head); font-size: 1.3rem; display: block; margin-bottom: .25rem; }
.why-caption span { font-size: .82rem; opacity: .8; }
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover { border-color: var(--green); background: var(--green-lt); }
.why-item-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.why-item-icon svg { width: 20px; height: 20px; color: var(--green); }
.why-item-text h4 { font-size: 1rem; margin-bottom: .25rem; }
.why-item-text p  { font-size: .85rem; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(250,204,37,.1);
  border-radius: 50%;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: .75rem; }
.cta-text p  { color: rgba(255,255,255,.75); max-width: 520px; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ---------- VALUES ---------- */
.values-section { background: var(--stone); }
.values-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}
.value-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  opacity: .25;
  margin-bottom: .5rem;
}
.value-card h4 { font-size: .9rem; color: var(--ink); }

/* ---------- NEWS / BLOG PREVIEW ---------- */
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.news-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.news-body { padding: 1.5rem; }
.news-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  background: var(--green-lt);
  padding: .2rem .65rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.news-card h4 { margin-bottom: .5rem; }
.news-card p  { font-size: .88rem; }
.news-meta {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .8rem;
  color: var(--ink-pale);
}
.news-meta span { display: flex; align-items: center; gap: .25rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  background: var(--stone);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-lt), transparent);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 580px; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: var(--ink-soft);
}
.page-breadcrumb a { color: var(--green); }
.page-breadcrumb span { color: var(--ink-pale); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.mission-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  position: relative;
}
.mission-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.mission-card.featured p { color: rgba(255,255,255,.8); }
.mission-card.featured h3 { color: white; }
.mission-accent {
  width: 36px; height: 36px;
  background: var(--green-lt);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.mission-card.featured .mission-accent {
  background: rgba(255,255,255,.2);
}
.mission-accent svg { width: 18px; height: 18px; color: var(--green); }
.mission-card.featured .mission-accent svg { color: white; }

.team-section { background: var(--off-white); }
.focus-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.focus-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.focus-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  opacity: .2;
  line-height: 1;
  flex-shrink: 0;
  min-width: 40px;
}
.focus-body h4 { margin-bottom: .4rem; }
.focus-body p  { font-size: .9rem; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
  background: var(--white);
}
.services-detail:nth-child(even) .svc-img { order: 2; }
.services-detail:nth-child(even) .svc-body { order: 1; }
.svc-img { position: relative; min-height: 340px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.svc-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.svc-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  opacity: .12;
  line-height: 1;
}
.svc-body h3 { margin-top: -.5rem; margin-bottom: .5rem; }
.svc-features { margin-top: 1rem; display: flex; flex-direction: column; gap: .5rem; }
.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--ink-mid);
}
.svc-feature::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: .45rem;
  flex-shrink: 0;
}

.compliance-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.compliance-tag {
  padding: .35rem .9rem;
  background: var(--stone);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-mid);
  letter-spacing: .04em;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.blog-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.blog-featured .news-img { aspect-ratio: unset; height: 100%; }
.blog-featured .news-body { padding: 3rem; display: flex; flex-direction: column; justify-content: center; gap: .75rem; }
.blog-featured h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: .5rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.contact-block h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green); margin-bottom: .75rem; }
.contact-block p { font-size: .9rem; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--ink-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--ink);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,151,82,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; border-radius: var(--radius-sm); }

/* ---------- MAP PLACEHOLDER ---------- */
.map-section { background: var(--stone); }
.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}
.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-logo-mark {
  width: 44px; height: 44px;
  background: transparent;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
}
.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-logo-mark svg { width: 24px; height: 24px; fill: white; }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--amber); padding-left: 4px; }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid;
  place-items: center;
  transition: var(--transition);
  color: rgba(255,255,255,.55);
}
.social-btn:hover { border-color: var(--amber); color: var(--amber); }
.social-btn svg { width: 15px; height: 15px; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--amber); }

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }
.text-green  { color: var(--green); }
.text-amber  { color: var(--amber); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-detail { grid-template-columns: 1fr; }
  .services-detail:nth-child(even) .svc-img  { order: 0; }
  .services-detail:nth-child(even) .svc-body { order: 0; }
  .svc-img { min-height: 240px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .news-img { height: 240px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 4rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .hero-scroll { display: none; }
}
