﻿/* ============================================================
   EcoVita Living — Main Stylesheet
   Domain: ecovitaliving.online
   ============================================================ */

:root {
  --g: #4e7b4d;
  --g2: #769d5f;
  --g3: #3f653f;
  --bg: #fbfaf5;
  --ink: #26352c;
  --muted: #68736d;
  --line: #dce4dc;
  --sage: #eaf1e5;
  --white: #fff;
  --shadow: 0 18px 50px rgba(35,49,40,.10);
  --top-bar: #334a38;
  --footer: #253329;
  --radius-card: 19px;
  --radius-btn: 999px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--g); }

img { max-width: 100%; height: auto; }

/* ─── TOP BAR ─────────────────────────────────────────────── */
.top-bar {
  background: var(--top-bar);
  color: #edf4eb;
  font-size: 13px;
  padding: 8px 0;
}
.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,250,245,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 16px rgba(35,49,40,.06);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 200px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}
.nav-links a { font-weight: 500; transition: color .2s; }
.nav-links a:hover,
.nav-links a.active { color: var(--g); font-weight: 700; }
.hamburger {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 8px;
}

/* ─── BUTTONS / CTA ───────────────────────────────────────── */
.btn-cta {
  background: var(--g);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  display: inline-block;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  font-size: 15px;
}
.btn-cta:hover { background: var(--g3); transform: translateY(-1px); color: #fff !important; }

.btn-secondary {
  border: 1.5px solid #cad7cb;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  background: var(--white);
  font-weight: 700;
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--g); color: var(--g); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 70px 0 55px;
  background: linear-gradient(135deg, #edf4e9, #fbfaf5 55%, #f1e5da);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--g);
  font-weight: 800;
  margin-bottom: 8px;
}
.hero h1 { font-family: Georgia,serif; font-size: clamp(42px,6vw,72px); letter-spacing: -2px; margin: 12px 0 20px; line-height: 1.1; }
h1 { font-family: Georgia,serif; font-size: 52px; line-height: 1.1; }
h2 { font-family: Georgia,serif; font-size: 40px; line-height: 1.1; }
h3 { font-family: Georgia,serif; font-size: 24px; margin: 10px 0; line-height: 1.2; }
.lead { font-size: 19px; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 25px; }
.check-list { display: grid; gap: 12px; margin-top: 26px; }
.check-list-item { display: flex; gap: 10px; align-items: flex-start; }
.check-icon { color: var(--g); font-weight: 900; margin-top: 2px; }

/* Hero Art */
.hero-art {
  min-height: 430px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #91b29b, #dbe7db 48%, #ead8ca);
  box-shadow: var(--shadow);
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .85;
  border-radius: 28px;
}
.hero-art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(78,123,77,.25), rgba(234,216,202,.4));
}
.sun-decor {
  position: absolute;
  right: 55px; top: 48px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.hero-note {
  position: absolute;
  left: 25px; bottom: 25px;
  background: rgba(255,255,255,.92);
  padding: 11px 16px;
  border-radius: 13px;
  box-shadow: var(--shadow);
  font-size: 14px;
  max-width: 220px;
  backdrop-filter: blur(4px);
}

/* ─── FEATURES STRIP ──────────────────────────────────────── */
.features-section { padding: 28px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: 0 8px 28px rgba(35,49,40,.1); transform: translateY(-3px); }
.feature-icon { font-size: 28px; margin-bottom: 8px; color: var(--g); }
.feature-card b { display: block; margin-bottom: 4px; }

/* ─── SECTIONS ────────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-sage { background: var(--sage); }

.head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 28px; }

/* ─── CARDS ───────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(35,49,40,.06);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card-item:hover { box-shadow: 0 14px 44px rgba(35,49,40,.12); transform: translateY(-4px); }
.card-visual {
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background: linear-gradient(135deg, #ccdcca, #f0e1d3);
  position: relative;
  overflow: hidden;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.card-visual .emoji-icon { position: relative; z-index: 1; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pill {
  display: inline-block;
  background: #edf4e9;
  color: var(--g);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.text-muted-sm { color: var(--muted); font-size: 14px; }

/* ─── ARTICLE / CONTENT BOXES ─────────────────────────────── */
.article-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
}
.quote-block {
  border-left: 4px solid var(--g2);
  padding: 8px 0 8px 20px;
  font: 26px/1.35 Georgia,serif;
  color: var(--ink);
  margin: 20px 0;
}
.notice-box {
  padding: 16px 18px;
  background: #eef4e9;
  border: 1px solid #d7e4d2;
  border-radius: 12px;
  margin-top: 24px;
}

/* ─── GRID LAYOUTS ────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

/* ─── FORM ────────────────────────────────────────────────── */
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 5px; font-weight: 600; font-size: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #cfd9cf;
  border-radius: 11px;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s;
  background: var(--bg);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--g); }
.contact-form textarea { min-height: 150px; resize: vertical; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--footer);
  color: #e5ede5;
  padding: 52px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-grid p { color: #b5c4b5; font-size: 14px; margin-top: 12px; }
.footer-col-title { font-weight: 700; font-size: 14px; margin-bottom: 10px; color: #edf4eb; }
.site-footer a { display: block; color: #ccd9cd; margin: 6px 0; font-size: 14px; transition: color .2s; }
.site-footer a:hover { color: var(--g2); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 12px;
  color: #adb9ae;
}

/* ─── PAGE HERO STRIP ─────────────────────────────────────── */
.page-hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, #edf4e9, #fbfaf5 60%, #f1e5da);
  border-bottom: 1px solid var(--line);
}

/* ─── TESTIMONIALS / STATS ────────────────────────────────── */
.stats-row { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 28px; }
.stat-item { text-align: center; }
.stat-num { font: 700 36px/1 Georgia,serif; color: var(--g); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb-nav { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb-nav a { color: var(--g); }
.breadcrumb-nav a:hover { text-decoration: underline; }

/* ─── UTILITIES ───────────────────────────────────────────── */
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }

/* ─── ALERT / SUCCESS ─────────────────────────────────────── */
.alert-success {
  background: #edf4e9;
  border: 1.5px solid var(--g2);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--g3);
  display: none;
}
.alert-success.show { display: block; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    left: 4%; right: 4%;
    top: 74px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    gap: 10px;
    z-index: 200;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .features-grid,
  .cards-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .top-bar .inner { flex-direction: column; gap: 2px; font-size: 12px; }
  .hero-art { min-height: 340px; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .stats-row { gap: 20px; }
}
