/* ── HOME PAGE ── */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--bark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 60%, rgba(196,98,45,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(196,154,60,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero__content {
  padding: 100px 0 100px 8%;
  position: relative;
  z-index: 2;
  animation: heroIn 1s var(--ease) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow { margin-bottom: 20px; }

.hero__title {
  font-size: clamp(44px, 5.5vw, 76px);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__rule { margin-bottom: 28px; animation: none; }

.hero__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--sand);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: heroLogoIn 1.2s var(--ease) 0.3s both;
}
.hero__logo svg {
  width: min(420px, 90%);
  height: auto;
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.4));
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.92) rotate(-4deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: fadeIn 1s 1.2s both;
}
.hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--lgray);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* Intro stats */
.intro { padding: 60px 0; }
.intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
}
.intro__stat {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
}
.intro__stat-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--bark);
  line-height: 1;
  margin-bottom: 10px;
}
.intro__stat-num span { font-size: 32px; color: var(--rust); }
.intro__stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
  line-height: 1.5;
}

/* About teaser */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__text h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--white);
  margin: 12px 0 0;
}
.about-teaser__text h2 em { font-style: italic; color: var(--gold); }
.about-teaser__text p { color: var(--sand); font-size: 14px; line-height: 1.85; }
.about-teaser__text strong { color: var(--white); font-weight: 500; }

.about-teaser__visual { text-align: center; }
.about-teaser__badge svg { width: 260px; height: 260px; margin: 0 auto 28px; }
.about-teaser__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--sand);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 36px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  position: relative;
}
.svc-card:hover {
  box-shadow: 0 12px 40px rgba(61,43,31,0.1);
  transform: translateY(-3px);
  border-color: var(--rust);
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  background: var(--parch);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--rust);
  transition: background 0.3s, color 0.3s;
}
.svc-card:hover .svc-card__icon { background: var(--rust); color: var(--white); }
.svc-card h3 {
  font-size: 22px;
  color: var(--bark);
  margin-bottom: 10px;
}
.svc-card p { font-size: 13px; color: var(--gray); line-height: 1.75; }
.svc-card__arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-size: 18px;
  color: var(--rust);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.svc-card:hover .svc-card__arrow { opacity: 1; transform: translateX(0); }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.why-item {
  background: var(--bark);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.why-item:hover { background: var(--bark2); }
.why-item__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(196,154,60,0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.why-item h4 {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.why-item p { font-size: 13.5px; color: var(--sand); line-height: 1.8; }

/* CTA Banner */
.cta-banner { padding: 80px 0; }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner__inner .eyebrow { margin-bottom: 10px; }
.cta-banner__inner h2 {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--bark);
}
.cta-banner__inner h2 em { font-style: italic; color: var(--rust); }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 60px; }
  .hero__content { padding: 80px 28px 40px; }
  .hero__logo { padding: 0 28px 60px; }
  .intro__grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .intro__grid { grid-template-columns: 1fr 1fr; }
}
