/* ================================
   ROOT + GLOBAL STYLES
================================ */

:root {
  /* Earthy palette */
  --color-deep-sage: #4c6b5a;
  --color-soft-fern: #d6e2c3;
  --color-sand: #f6f2ec;
  --color-clay: #c3a78b;
  --color-charcoal: #2e4134;

  --color-text-main: #2c302d;
  --color-text-muted: #647064;
  --color-border-soft: #e0ded8;

  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.06);
  --radius-card: 16px;

  --font-heading: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: #faf9f7;
}

/* Utility containers */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(760px, 100% - 2.5rem);
}

.section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  max-width: 640px;
  margin: 0.5rem auto 0;
  color: var(--color-text-muted);
}

/* ================================
   HEADER
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 236, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--color-deep-sage);
  color: #fff;
  font-size: 0.85rem;
}

.logo-text {
  font-size: 1.2rem;
  color: var(--color-charcoal);
}

.main-nav {
  display: none;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background: var(--color-deep-sage);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  font-size: 0.9rem;
}

/* ================================
   BUTTONS
================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease,
    box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--color-deep-sage);
  color: #fff;
  box-shadow: 0 12px 30px rgba(76, 107, 90, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(76, 107, 90, 0.38);
}

.btn-secondary {
  background: #fff;
  color: var(--color-charcoal);
  border-color: var(--color-deep-sage);
}

.btn-secondary:hover {
  background: var(--color-soft-fern);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(76, 107, 90, 0.16);
  color: var(--color-charcoal);
}

.btn-ghost:hover {
  background: rgba(76, 107, 90, 0.06);
}

/* ================================
   HERO
================================ */

.hero {
  background: radial-gradient(circle at top left, #e1ebdd 0, #faf9f7 45%);
  padding-block: 3.5rem 3rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-content {
  text-align: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3vw + 1.6rem, 2.8rem);
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.hero-content p {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ================================
   APPROACH
================================ */

.approach {
  background: linear-gradient(to bottom, #faf9f7 0, #f6f2ec 100%);
}

.approach h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 1.25rem;
}

.approach p {
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* ================================
   CARDS / SERVICES
================================ */

.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem 1.7rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.services {
  background: #f6f2ec;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
      rgba(214, 226, 195, 0.45),
      transparent 50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(76, 107, 90, 0.24);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  margin-bottom: 0.8rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--color-soft-fern);
  color: var(--color-charcoal);
  font-size: 1.15rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0.25rem 0 0.4rem;
  color: var(--color-charcoal);
}

.service-tagline {
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.service-benefits {
  padding-left: 1.1rem;
  margin: 0;
  list-style: disc;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.service-benefits li+li {
  margin-top: 0.2rem;
}

/* ================================
   WHAT TO EXPECT (STEPS)
================================ */

.expect {
  background: #faf9f7;
}

.steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-icon {
  flex-shrink: 0;
}

.step-icon span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--color-deep-sage);
  color: var(--color-deep-sage);
  font-weight: 600;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================
   TESTIMONIALS
================================ */

.testimonials {
  background: #f6f2ec;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial blockquote {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--color-text-main);
}

.testimonial figcaption {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ================================
   CTA / CONTACT
================================ */

.cta {
  background: linear-gradient(135deg,
      var(--color-deep-sage),
      var(--color-charcoal));
  color: #fff;
}

.cta-inner {
  display: flex;
  justify-content: center;
}

.cta-content {
  text-align: center;
  max-width: 560px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.cta-content p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-phone {
  text-decoration: none;
  color: #f6f2ec;
  font-size: 0.95rem;
}

/* ================================
   FOOTER
================================ */

.site-footer {
  background: #151a17;
  color: #d1d6d2;
  padding: 1.6rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-brand {
  font-family: var(--font-heading);
  margin: 0 0 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #d1d6d2;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ================================
   RESPONSIVE
================================ */

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-media,
  .hero-content {
    flex: 1;
  }

  .hero-content {
    text-align: left;
  }

  .hero-content p {
    margin-left: 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }
}