/* ─── VARIABLES ─── */
:root {
  --cream: #F5EFE0;
  --cream-dark: #EDE3CC;
  --cream-light: #FAF6EE;
  --green-deep: #3A5A40;
  --green-mid: #5C7A50;
  --green-light: #A8BF9A;
  --green-pale: #D6E5CC;
  --orange: #D4743A;
  --orange-light: #E8956A;
  --text-dark: #2A3520;
  --text-mid: #4A5C3A;
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(245, 239, 224, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,90,64,0.1);
  transition: padding 0.3s, box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--green-deep) !important;
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(212,116,58,0.3);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,116,58,0.35);
}
.btn-secondary {
  color: var(--green-deep);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: gap 0.2s;
}
.btn-secondary:hover { gap: 0.8rem; }
.btn-secondary::after { content: '→'; color: var(--orange); }

/* ─── SECTION COMMONS ─── */
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--green-deep);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--green-mid); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 110%;
  background: var(--green-pale);
  border-radius: 0 0 0 60% / 0 0 0 40%;
  z-index: 0;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 6rem 6rem;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--orange);
  display: inline-block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: italic; color: var(--green-mid); }
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(58,90,64,0.12);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  display: block;
  line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  margin-top: 0.3rem;
  display: block;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 4rem 4rem 4rem 2rem;
}
.photo-frame {
  position: relative;
  width: 380px;
  height: 480px;
  opacity: 0;
  animation: fadeIn 1s 0.6s forwards;
}
.photo-main {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--green-light) 0%, var(--green-mid) 100%);
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-placeholder-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.photo-deco-1 {
  position: absolute;
  bottom: -20px; left: -30px;
  width: 120px; height: 120px;
  background: var(--cream-dark);
  border-radius: 50%;
  z-index: -1;
}
.photo-deco-2 {
  position: absolute;
  top: 20px; right: -25px;
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}
.photo-badge {
  position: absolute;
  bottom: 30px; left: -40px;
  background: white;
  border-radius: 1rem;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 12px 32px rgba(58,90,64,0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.badge-icon {
  width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
}
.badge-text small {
  font-size: 0.72rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}
.leaf {
  position: absolute;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}
.leaf-1 { top: 15%; left: 3%; font-size: 3rem; animation-delay: 0s; }
.leaf-2 { top: 60%; right: 8%; font-size: 2rem; animation-delay: 2s; }
.leaf-3 { bottom: 10%; left: 45%; font-size: 1.5rem; animation-delay: 4s; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--green-deep);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-strip::after {
  content: '🌿';
  position: absolute;
  right: 4rem; bottom: -1rem;
  font-size: 8rem;
  opacity: 0.07;
}
.about-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--cream);
  line-height: 1.25;
}
.about-title em { color: var(--green-light); font-style: italic; }
.about-text {
  color: rgba(245,239,224,0.75);
  line-height: 1.9;
  font-size: 1rem;
  font-weight: 300;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.pill {
  border: 1px solid rgba(168,191,154,0.4);
  color: var(--green-light);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}
.pill:hover { background: var(--green-light); color: var(--green-deep); cursor: default; }

/* ─── SERVICES ─── */
.services {
  padding: 7rem 6rem;
  background: var(--cream-light);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream);
  border-radius: 1.5rem;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  border: 1px solid rgba(58,90,64,0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(58,90,64,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--green-deep); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.1); }
.service-card.featured .service-title { color: var(--cream); }
.service-card.featured .service-desc { color: rgba(245,239,224,0.7); }
.service-card.featured .service-num { color: rgba(255,255,255,0.12); }
.service-card.featured::before { background: var(--orange); }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(58,90,64,0.08);
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  line-height: 1;
  user-select: none;
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--green-deep);
  margin-bottom: 0.7rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ─── APPROACH ─── */
.approach {
  padding: 7rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--cream);
}
.approach-card-stack {
  position: relative;
  height: 420px;
}
.approach-img-card {
  position: absolute;
  border-radius: 1.5rem;
  overflow: hidden;
}
.approach-img-main {
  width: 280px; height: 360px;
  top: 0; left: 20px;
  background: linear-gradient(145deg, var(--green-pale), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(58,90,64,0.4);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  text-align: center;
}
.approach-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.approach-img-accent {
  width: 200px; height: 240px;
  bottom: 0; right: 0;
  background: var(--cream-dark);
  border: 4px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.approach-quote-card {
  position: absolute;
  top: 50px; right: -10px;
  background: white;
  border-radius: 1.2rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 12px 32px rgba(58,90,64,0.12);
  max-width: 200px;
  z-index: 2;
}
.approach-quote-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--green-deep);
  line-height: 1.5;
}
.approach-quote-card small {
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  display: block;
}
.approach-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.step-num {
  min-width: 40px; height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-deep);
  transition: background 0.2s, color 0.2s;
}
.step:hover .step-num { background: var(--orange); color: white; }
.step-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-deep);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.step-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--green-pale);
  padding: 6rem 6rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testi-card {
  background: var(--cream-light);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-3px); }
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--green-deep);
  font-size: 0.85rem;
}
.testi-name strong {
  display: block;
  font-size: 0.85rem;
  color: var(--green-deep);
  font-weight: 500;
}
.testi-name small { font-size: 0.72rem; color: var(--text-mid); }
.testi-stars {
  position: absolute;
  top: 1.8rem; right: 1.8rem;
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  margin: 4rem 6rem;
  background: var(--green-deep);
  border-radius: 2rem;
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,191,154,0.15) 0%, transparent 70%);
}
.cta-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.8rem;
  display: block;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--cream);
  line-height: 1.25;
}
.cta-title em { font-style: italic; color: var(--green-light); }
.cta-sub {
  color: rgba(245,239,224,0.65);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 0.8rem;
  line-height: 1.6;
}
.cta-actions { display: flex; flex-direction: column; gap: 0.8rem; align-items: center; }
.btn-cta-main {
  background: var(--orange);
  color: white;
  padding: 1rem 2.2rem;
  border-radius: 3rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 8px 24px rgba(212,116,58,0.4);
}
.btn-cta-main:hover { background: var(--orange-light); transform: scale(1.03); }
.btn-cta-sub {
  color: rgba(245,239,224,0.6);
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.btn-cta-sub:hover { color: var(--cream); }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  color: rgba(245,239,224,0.6);
  padding: 3.5rem 6rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-decoration: none;
  display: block;
}
.footer-logo small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  margin-top: 3px;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
  margin-top: 0.8rem;
}
.footer-heading {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: rgba(245,239,224,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(245,239,224,0.08);
  padding-top: 1.5rem;
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; font-weight: 300; }
.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(245,239,224,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.75rem;
  color: rgba(245,239,224,0.5);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 6rem 5rem;
  background: var(--green-pale);
  text-align: center;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--green-deep);
  margin-bottom: 1rem;
}
.page-hero-title em { font-style: italic; color: var(--green-mid); }
.page-hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BLOG ─── */
.blog-section {
  padding: 5rem 6rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--cream-light);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(58,90,64,0.06);
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(58,90,64,0.1); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(145deg, var(--green-pale), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 0.7rem;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}
.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 1rem;
  display: block;
  opacity: 0.6;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 400;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.form-input, .form-textarea {
  background: var(--cream-light);
  border: 1.5px solid rgba(58,90,64,0.15);
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--green-mid); }
.form-textarea { resize: vertical; min-height: 130px; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem 2rem; border-bottom: 1px solid rgba(58,90,64,0.1); gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero::before { display: none; }
  .hero-left { padding: 3rem 1.5rem 2rem; }
  .hero-right { display: none; }
  .hero-stats { gap: 1.5rem; }

  .about-strip { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .approach { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 3rem; }
  .approach-visual { display: none; }
  .testimonials { padding: 4rem 1.5rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-banner { margin: 2rem 1.5rem; padding: 2.5rem; grid-template-columns: 1fr; gap: 2rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem 1.5rem; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .page-hero { padding: 8rem 1.5rem 3rem; }
  .blog-section { padding: 3rem 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }

  .section-title { font-size: 2rem; }
}

