/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 24, 0.62) 0%,
    rgba(44, 36, 24, 0.38) 60%,
    rgba(90, 110, 80, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 120px;
}

.hero-eyebrow {
  color: var(--gold-light) !important;
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.hero-info-item svg { color: var(--gold-light); }

.hero-info-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease infinite;
  transition: color var(--transition);
}

.hero-scroll:hover { color: var(--gold-light); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---- Intro Strip ---- */
.intro-strip {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--beige);
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--beige);
}

.intro-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--beige);
  transition: background var(--transition);
}

.intro-strip-item:hover {
  background: var(--beige);
}

.intro-strip-item svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.intro-strip-item h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.intro-strip-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- About Split ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.about-badge-year {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.about-split-text h2 {
  margin-bottom: 0.5rem;
}

.about-split-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.6rem;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.service-card-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}

.service-link:hover { gap: 0.7rem; }

/* ---- Quote Banner ---- */
.quote-banner {
  background: var(--sage-dark);
  padding: 70px 0;
  text-align: center;
}

.quote-inner {
  max-width: 680px;
  margin: 0 auto;
}

.quote-icon {
  color: var(--sage-light);
  opacity: 0.5;
  margin-bottom: 1.5rem;
}

.quote-banner blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
}

.quote-banner blockquote em {
  color: var(--gold-light);
}

/* ---- Blog Grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img-wrap {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
}

.blog-card-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.blog-card-body {
  padding: 1.6rem;
}

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--text);
  transition: color var(--transition);
}

.blog-card-body h3 a:hover { color: var(--gold); }

.blog-card-body p {
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,40,25,0.78), rgba(90,110,80,0.6));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.cta-banner-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split {
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }

  .intro-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap img { height: 380px; }
  .about-img-badge { width: 90px; height: 90px; right: -12px; bottom: -12px; }
  .about-badge-year { font-size: 1.4rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions { justify-content: center; }

  .hero-info-sep { display: none; }
  .hero-info { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .intro-strip-grid { grid-template-columns: 1fr; }
}
