/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  width: 50%;
  padding-top: 120px;
  padding-bottom: 4rem;
  padding-left: clamp(1.5rem, 6vw, 6rem);
  margin-left: 0;
  margin-right: auto;
}

.hero-headline {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.hero-headline em {
  font-style: italic;
  color: var(--color-wood-mid);
}

.hero__highlight {
  color: var(--color-wood-dark);
  text-decoration: underline;
  text-decoration-color: var(--color-wood-light);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 42ch;
}

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

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

.hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--color-cream) 0%,
    var(--color-cream) 30%,
    rgba(250, 246, 240, 0.92) 45%,
    rgba(250, 246, 240, 0.5) 62%,
    rgba(250, 246, 240, 0.1) 80%,
    rgba(250, 246, 240, 0) 100%
  );
  pointer-events: none;
}

.hero-pill {
  background: var(--color-cream-dark);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  align-self: flex-start;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7cb87c;
  flex-shrink: 0;
}

.hero-pill-text {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  white-space: nowrap;
}

.hero-pill-text strong {
  display: block;
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-end;
    min-height: 100svh;
  }

  .hero__photo {
    object-position: 70% center;
  }

  .hero__fade {
    background: linear-gradient(
      to top,
      var(--color-cream) 0%,
      var(--color-cream) 30%,
      rgba(250, 246, 240, 0.9) 50%,
      rgba(250, 246, 240, 0.3) 75%,
      rgba(250, 246, 240, 0) 100%
    );
  }

  .hero__content {
    padding-left: clamp(1.25rem, 5vw, 2rem);
    padding-right: clamp(1.25rem, 5vw, 2rem);
    padding-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 140px;
    text-align: center;
    justify-content: center;
  }
}

/* ── ABOUT ── */
.about-section {
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-wood-mid);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    max-height: 320px;
  }
}

/* ── SERVICES PREVIEW ── */
.services-preview {
  padding: var(--space-xl) 0;
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-top: 0.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--color-cream-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-sand);
  box-shadow: 0 4px 24px rgba(107, 81, 52, 0.08);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-wood-light);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ── HOURS SECTION ── */
.hours-section {
  background: var(--color-cream-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.hours-info h2 {
  margin-bottom: 1rem;
}

.hours-info p {
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: var(--space-md);
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-top: var(--space-md);
}

.address-block span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.address-block a {
  font-size: 0.875rem;
  color: var(--color-wood-mid);
  transition: color var(--transition);
}

.address-block a:hover {
  color: var(--color-wood-dark);
}

.hours-table-wrapper h3 {
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .hours-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner-inner {
  background: var(--color-wood-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.2);
  pointer-events: none;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 130, 0.15);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--color-cream);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(250, 246, 240, 0.7);
  margin: 0 auto 2rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}
