/* ─── RESET & ROOT ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep:   #1a5c27;
  --green-mid:    #2d6a35;
  --green-light:  #4a9b55;
  --green-pale:   #e8f5ea;
  --gold:         #c9902a;
  --gold-light:   #f5e6c8;
  --cream:        #faf7f2;
  --earth:        #5c4a2a;
  --teal:         #2f5f54;
  --text-dark:    #1a1a18;
  --text-mid:     #3d3d38;
  --text-muted:   #7a7a70;
  --white:        #ffffff;
  --border:       rgba(44,44,40,0.12);
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(26,61,31,0.10);
  --shadow-lg:    0 12px 48px rgba(26,61,31,0.16);
  --transition:   0.22s ease;
  --layout-max:   1160px;
  --layout-gutter: 5%;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
p { color: var(--text-mid); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 0.7rem;
  margin-bottom: 1rem;
}

.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .eyebrow { border-left: none; border-bottom: 2px solid var(--gold); padding-left: 0; padding-bottom: 0.25rem; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; }

/* ─── LAYOUT UTILITIES ──────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 5%; }
.section    { padding: 6rem 5%; }
.section-sm { padding: 4rem 5%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; 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: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary   { background: var(--gold); color: var(--green-deep); }
.btn-primary:hover { background: #b8821f; transform: translateY(-1px); }
.btn-outline   { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-green     { background: var(--green-mid); color: var(--white); }
.btn-green:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-ghost     { background: transparent; border-color: var(--green-mid); color: var(--green-mid); }
.btn-ghost:hover { background: var(--green-pale); }

/* ─── NAVIGATION ────────────────────────────────── */
.main-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--layout-gutter);
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.01em;
  font-weight: 700;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links .nav-cta {
  background: var(--gold); color: var(--green-deep) !important;
  margin-left: 0.5rem; padding: 0.5rem 1.1rem;
  font-weight: 700 !important;
}
.nav-links .nav-cta:hover { background: #b8821f; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ─── HERO SLIDER (HOME) ────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--green-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Photo on the right */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Fade from solid green (left) to transparent (right) */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 92, 39, 0.97) 0%,
    rgba(26, 92, 39, 0.9) 18%,
    rgba(26, 92, 39, 0.72) 34%,
    rgba(26, 92, 39, 0.42) 50%,
    rgba(26, 92, 39, 0.15) 65%,
    transparent 82%
  );
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--layout-gutter) 5rem;
}

/* Same width & gutter as .nav-inner — text starts where the logo starts */
.hero-slide-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  width: 100%;
}

.hero-slide-inner h1,
.hero-slide-inner p {
  max-width: 34rem;
}

.hero-slide h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: slideInLeft 1s ease-out;
}

.hero-slide h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-slide p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-slide .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInLeft 1s ease-out 0.4s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── PAGE HERO (inner pages) ───────────────────── */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 5.5rem 5% 4.5rem;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 92, 39, 0.96) 0%,
    rgba(26, 92, 39, 0.88) 22%,
    rgba(26, 92, 39, 0.55) 45%,
    rgba(26, 92, 39, 0.2) 62%,
    transparent 80%
  );
  z-index: 1;
}
.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--gold);
  transition: var(--transition);
}
.breadcrumb a:hover {
  color: var(--white);
}
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── CARDS ─────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.6rem; color: var(--green-deep); }
.card p { font-size: 0.95rem; color: var(--text-muted); }

/* ─── SERVICE SECTION CARD ──────────────────────── */
.service-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; padding: 4rem 5%;
  max-width: 1160px; margin: 0 auto;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block-text .eyebrow { margin-bottom: 0.75rem; }
.service-block-text h2 { color: var(--green-deep); margin-bottom: 1rem; }
.service-block-text p { margin-bottom: 1.25rem; }
.service-block-visual {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  min-height: 360px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  position: relative; overflow: hidden;
}
.service-block-visual.dark { background: var(--green-deep); }
.service-block-visual.gold-bg { background: var(--gold-light); }
.visual-big-text {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 700; opacity: 0.07;
  position: absolute; top: 1rem; right: 1rem;
  color: var(--green-deep); line-height: 1;
}
.visual-big-text.light { color: var(--white); }
.visual-badge {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: inline-flex; flex-direction: column; gap: 0.2rem;
  box-shadow: var(--shadow);
}
.visual-badge strong { font-size: 1.4rem; color: var(--green-deep); font-family: 'Playfair Display', serif; }
.visual-badge span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.checklist { margin: 1.25rem 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.6rem;
}
.checklist li::before {
  content: '✓';
  color: var(--green-mid); font-weight: 700; flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── TESTIMONIAL ───────────────────────────────── */
.testimonial-block {
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem; position: relative;
}
.testimonial-block::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 8rem; line-height: 1; color: var(--gold);
  opacity: 0.25; position: absolute; top: 1rem; left: 2rem;
}
.testimonial-block blockquote {
  font-size: 1.15rem; line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic; position: relative; z-index: 1;
  margin-bottom: 1.5rem;
}
.testimonial-attr { font-size: 0.85rem; color: var(--gold); font-weight: 600; }

/* ─── PROCESS STEPS ─────────────────────────────── */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step { position: relative; padding-left: 1.5rem; border-left: 3px solid var(--green-pale); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.5rem;
}
.step h4 { color: var(--green-deep); margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--text-muted); }

/* ─── BLOG CARD ─────────────────────────────────── */
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-img.green  { background: var(--green-pale); }
.blog-card-img.gold   { background: var(--gold-light); }
.blog-card-img.earth  { background: #f0e8da; }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-mid);
  background: var(--green-pale); padding: 0.25rem 0.65rem;
  border-radius: 50px; margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.05rem; color: var(--green-deep); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more { font-size: 0.82rem; font-weight: 600; color: var(--green-mid); display: flex; align-items: center; gap: 0.3rem; }
.blog-read-more:hover { color: var(--green-deep); }

/* ─── CTA BANNER ────────────────────────────────── */
.cta-banner {
  background: var(--green-deep);
  color: var(--white);
  padding: 5rem 5%; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2.25rem; font-size: 1.05rem; }
.cta-banner .btn-primary { font-size: 1rem; padding: 1rem 2.25rem; }

/* ─── STATS STRIP ───────────────────────────────── */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 5%;
  display: flex; justify-content: center;
}
.stats-strip-inner {
  max-width: 1160px; width: 100%;
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 2rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--green-deep); display: block;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { border-left: 1px solid var(--border); }

/* ─── TEAM / ABOUT ──────────────────────────────── */
.person-card {
  text-align: center;
}
.person-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}
.person-card h4 { color: var(--green-deep); margin-bottom: 0.2rem; }
.person-card .role { font-size: 0.82rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }

/* ─── CONTACT FORM ──────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h3 { color: var(--green-deep); margin-bottom: 0.75rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.contact-detail strong { display: block; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.2rem; }
.contact-detail span { font-size: 0.95rem; color: var(--text-dark); }
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,106,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── TRAINING PAGE ─────────────────────────────── */
.training-track {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
}
.training-track-num {
  width: 48px; height: 48px;
  background: var(--green-deep); color: var(--white);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; flex-shrink: 0;
}
.training-track h3 { color: var(--green-deep); margin-bottom: 0.4rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.training-track p  { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--green-mid);
  background: var(--green-pale); padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

/* ─── FOOTER ────────────────────────────────────── */
.site-footer {
  background: #0f3f1c;
  color: rgba(255,255,255,0.82);
  padding: 5rem 5% 0;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--white); font-weight: 700;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-mission { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.74); max-width: 300px; }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.84);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--green-deep); }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--white); font-weight: 600; margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.76); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.76); margin-bottom: 0.75rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-size: 0.84rem; color: rgba(255,255,255,0.82);
}
.footer-bottom p {
  color: rgba(255,255,255,0.9);
}
.footer-bottom a {
  color: var(--gold-light);
  font-weight: 600;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ─── DIVIDERS & ACCENTS ────────────────────────── */
.divider-leaf {
  text-align: center; padding: 1rem 0;
  color: var(--green-light); font-size: 1.5rem; opacity: 0.4;
}
.bg-white   { background: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-green   { background: var(--green-deep); }
.bg-pale    { background: var(--green-pale); }
.text-white { color: var(--white) !important; }

/* ─── IMAGE-DRIVEN LAYOUT ───────────────────────── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  min-height: 280px;
  background: var(--green-pale);
}

.img-frame img { width: 100%; height: 100%; object-fit: cover; min-height: inherit; }

.img-frame-tall { min-height: 420px; }
.img-frame-wide { min-height: 320px; }

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}

.media-split.reverse { direction: rtl; }
.media-split.reverse > * { direction: ltr; }

.media-split__image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.media-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.media-split__body {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.image-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.image-card__media {
  height: 220px;
  overflow: hidden;
}

.image-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover .image-card__media img {
  transform: scale(1.05);
}

.image-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.image-card__body h3 {
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.photo-band {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.photo-band__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,92,39,0.92) 0%, rgba(26,92,39,0.55) 50%, rgba(26,92,39,0.35) 100%);
}

.photo-band__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 5%;
  width: 100%;
  color: var(--white);
}

.photo-band__content h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.photo-band__content p {
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}

.mosaic {
  display: grid;
  gap: 1rem;
}

.mosaic-2,
.mosaic-3 {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.mosaic-2 { grid-template-columns: 1fr 1fr; }
.mosaic-3 { grid-template-columns: 2fr 1fr 1fr; }

.mosaic__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 200px;
  position: relative;
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.mosaic__item--tall { min-height: 420px; grid-row: span 2; }

.step-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step-card:hover { box-shadow: var(--shadow); }

.step-card__img {
  height: 160px;
  overflow: hidden;
}

.step-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.step-card__body h4 { color: var(--green-deep); margin-bottom: 0.35rem; }
.step-card__body p { font-size: 0.9rem; color: var(--text-muted); }

.service-block-visual.has-photo {
  padding: 0;
  min-height: 400px;
  background: var(--green-pale);
}

.service-block-visual.has-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.service-block-visual.has-photo .visual-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
}

.blog-card-img.has-photo {
  height: 220px;
  padding: 0;
}

.blog-card-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}

.footer-logo-link .footer-logo { margin-bottom: 0; }

.cta-banner.has-photo {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
}

.cta-banner.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.cta-banner.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 92, 39, 0.82);
  z-index: 1;
}

.cta-banner.has-photo .container {
  position: relative;
  z-index: 2;
}

/* ─── VIDEO TOUR SECTION ────────────────────────── */
.video-tour {
  padding: 6rem 5%;
  background: var(--cream);
}

.video-tour-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.video-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--green-pale);
}

.video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-body {
  padding: 1.5rem;
}

.video-card h3 {
  font-size: 1.1rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.video-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ICON STYLING ──────────────────────────────── */
.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
}

.card-icon svg,
.service-pill-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-mid);
  stroke-width: 2;
}

.service-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-pill-icon svg {
  stroke: var(--white);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-mid);
  stroke-width: 2;
}

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  .hero-slider { min-height: 75vh; }
  .hero-slide-content { min-height: 75vh; padding: 4rem var(--layout-gutter); }
  .hero-slide::after {
    background: linear-gradient(
      to right,
      rgba(26, 92, 39, 0.95) 0%,
      rgba(26, 92, 39, 0.85) 45%,
      rgba(26, 92, 39, 0.5) 70%,
      transparent 100%
    );
  }
  .media-split,
  .media-split.reverse { grid-template-columns: 1fr; direction: ltr; min-height: auto; }
  .media-split__body { padding: 3rem 5%; }
  .mosaic-3 { grid-template-columns: 1fr 1fr; }
  .mosaic__item--tall { grid-row: auto; min-height: 200px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(3) { border-left: none; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .page-hero { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--green-deep); padding: 1rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.08); z-index: 200; gap: 0.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .hero-slider { min-height: 68vh; }
  .hero-slide-content { min-height: 68vh; }
  .hero-slide h1 { font-size: 2rem; }
  .nav-logo-text { display: none; }
  .mosaic-2, .mosaic-3 { grid-template-columns: 1fr; }
}
