/* ── HOME PAGE STYLES ── */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--white);
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--light);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 5rem 0; position: relative; z-index: 1;
}
.hero-text { max-width: 560px; }
.hero-text .eyebrow { margin-bottom: 1.25rem; }
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text h1 span { color: var(--green); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 800;
  color: var(--dark); line-height: 1; display: block;
}
.stat-num sup { font-size: 1rem; color: var(--green); vertical-align: super; }
.stat-label {
  font-size: 0.75rem; color: var(--text-muted); font-weight: 500;
  margin-top: 0.2rem; display: block;
}
.stat-divider {
  width: 1px; height: 36px; background: var(--border);
}

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  position: relative; z-index: 1;
  max-width: 420px; width: 100%;
}
.hero-photo {
  width: 100%; border-radius: 12px;
  object-fit: cover; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-shape {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--green-light); z-index: 0;
}
.hero-badge {
  position: absolute;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.65rem;
  box-shadow: var(--shadow-md); z-index: 2;
}
.hero-badge strong { display: block; font-family: 'Syne',sans-serif; font-size: 0.8rem; font-weight: 700; }
.hero-badge span   { font-size: 0.72rem; color: var(--text-muted); }
.badge-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-badge-1 { top: 2rem; left: -2rem; }
.hero-badge-2 { bottom: 3rem; right: -2rem; }

/* SERVICES STRIP */
.services-strip {
  background: var(--dark); padding: 2.5rem 0;
}
.strip-inner {
  display: flex; gap: 0;
  justify-content: space-between; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Syne', sans-serif; font-size: 0.85rem;
  font-weight: 600; color: rgba(255,255,255,0.6);
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1; min-width: 160px;
  transition: color 0.2s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { color: var(--green-mid); }
.strip-icon { display: flex; align-items: center; flex-shrink: 0; color: var(--green-mid); }

/* FEATURED WORK */
.featured { background: var(--light); }
.section-head { margin-bottom: 3rem; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.feat-card {
  display: block; text-decoration: none; color: var(--text);
}
.feat-card--wide { grid-column: span 2; }
.feat-img {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--light);
}
.feat-card--wide .feat-img { aspect-ratio: 16/8; }
.feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feat-card:hover .feat-img img { transform: scale(1.04); }
.feat-info {
  padding: 1.1rem 1.25rem;
}
.feat-info .tag { margin-bottom: 0.5rem; }
.feat-info h3 {
  font-size: 1rem; margin-bottom: 0.15rem;
  transition: color 0.2s;
}
.feat-card:hover .feat-info h3 { color: var(--green); }
.feat-info p { font-size: 0.8rem; color: var(--text-muted); }
.featured-cta { text-align: center; margin-top: 2.5rem; }

/* ABOUT STRIP */
.about-strip { background: var(--white); padding: 6rem 0; }
.about-strip-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 5rem; align-items: center;
}
.about-strip-text h2 { margin-bottom: 1rem; }
.about-strip-text h2 span { color: var(--green); }
.about-strip-text p { color: var(--text-muted); line-height: 1.8; }
.about-strip-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.astat {
  text-align: center; padding: 1.75rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--light);
}
.astat-num {
  font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--green); display: block; line-height: 1;
}
.astat-num sup { font-size: 1.1rem; }
.astat-label {
  font-size: 0.78rem; color: var(--text-muted);
  font-weight: 500; margin-top: 0.4rem; display: block;
}

/* PROCESS */
.process { background: var(--light); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.process-step {
  padding: 2rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.process-step:hover { border-color: var(--green-line); box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Syne', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--green-light); line-height: 1; margin-bottom: 1rem;
  /* actual number colour */
  -webkit-text-stroke: 2px var(--green);
  color: transparent;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* CTA BANNER */
.cta-banner { background: var(--green); padding: 5rem 0; }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; }
.cta-inner .btn-primary {
  background: var(--white); color: var(--green);
  border-color: var(--white);
}
.cta-inner .btn-primary:hover {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .feat-card--wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .strip-inner { gap: 0; }
  .strip-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; }
  .feat-card--wide { grid-column: span 1; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .about-strip-stats { grid-template-columns: 1fr 1fr; }
}
