/* === HOMEPAGE === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--olive-light) 0%, var(--olive-dark) 40%, var(--charcoal) 85%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196,30,92,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122,143,69,0.25) 0%, transparent 60%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-text { animation: fadeUp 1s ease 0.3s both; }

.hero-logo { width: 180px; margin-bottom: 2rem; }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 em { font-style: italic; color: var(--crimson-light); }

.hero .subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-photo {
  animation: fadeUp 1s ease 0.5s both;
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: -15px; right: -15px;
  width: 100%; height: 100%;
  border: 2px solid rgba(196,30,92,0.3);
}

.hero-photo img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.85) brightness(0.95);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease infinite;
}

.scroll-indicator svg {
  width: 24px; height: 24px;
  stroke: rgba(255,255,255,0.4);
  stroke-width: 2; fill: none;
}

/* INTRO STRIP */
.intro-strip {
  background: var(--charcoal);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.intro-strip p {
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-style: italic;
}

/* ABOUT PREVIEW */
.home-about { background: var(--cream); }

.home-about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.home-about-inner p {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.home-about-inner .tags {
  justify-content: center;
  margin: 2rem 0 2.5rem;
}

/* SERVICES */
.home-services { background: var(--warm-white); position: relative; }

.home-services-inner { max-width: 1100px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 3rem 2.5rem;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--crimson);
  transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.service-card .service-icon-img {
  width: 180px; height: 140px; object-fit: contain;
  margin: 0 auto 1.5rem; display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon-img { transform: scale(1.1); }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card .service-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
}

.service-card .service-link::after { content: ' →'; }

/* APPROACH */
.home-approach {
  background: var(--olive-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.home-approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(90,107,47,0.08) 0%, transparent 50%);
}

.home-approach-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.home-approach .section-title { color: var(--white); }

.home-approach-text {
  font-weight: 300;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.approach-methods {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.method-tag {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* CTA */
.home-cta {
  background: var(--cream);
  text-align: center;
  padding: 5rem 2rem;
}

.home-cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.home-cta p {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr; gap: 3rem;
    text-align: center; padding-top: 7rem;
  }
  .hero-photo { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-photo::before { display: none; }
  .hero .subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-methods { gap: 1rem; }
}
.approach-label {
  color: var(--gold-light);
}