/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sage: #8B9E7E;
  --sage-light: #a8b89e;
  --terra: #C27E5E;
  --terra-dark: #a8694e;
  --cream: #FAF8F4;
  --charcoal: #3A3632;
  --charcoal-light: #4a4642;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.75rem; }

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  font-weight: 300;
}

a {
  color: var(--terra);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--terra-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-narrow {
  max-width: 750px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section {
  padding: 5rem 2rem;
}

.section-cream {
  background-color: var(--cream);
}

.section-sage {
  background-color: var(--sage);
  color: var(--cream);
}

.section-sage h2,
.section-sage h3 {
  color: var(--cream);
}

.section-sage .highlight {
  color: var(--white);
}

.section-charcoal {
  background-color: var(--charcoal);
  color: var(--cream);
}

.section-charcoal h2,
.section-charcoal h3 {
  color: var(--cream);
}

.section-terra {
  background-color: var(--terra);
  color: var(--cream);
}

.section-terra h2 {
  color: var(--cream);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--cream);
  border-bottom: 1px solid rgba(58, 54, 50, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(58, 54, 50, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--terra);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--terra);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--terra) !important;
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 500 !important;
  transition: background-color 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--terra-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--sage) 0%, var(--charcoal) 100%);
  margin-top: 72px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 50, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem;
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-sub {
  color: rgba(250, 248, 244, 0.9);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background-color: var(--sage);
  padding: 8rem 2rem 4rem;
  text-align: center;
  margin-top: 72px;
}

.page-header h1 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.page-header-sub {
  color: rgba(250, 248, 244, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--terra);
  color: var(--cream);
}

.btn-primary:hover {
  background-color: var(--terra-dark);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--cream);
  color: var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--white);
  transform: translateY(-1px);
}

.btn-light {
  background-color: var(--cream);
  color: var(--charcoal);
}

.btn-light:hover {
  background-color: var(--white);
  transform: translateY(-1px);
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  max-width: 700px;
  margin: 0 auto;
}

.highlight {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--terra);
  margin: 1.5rem 0;
}

.lead {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
}

.bold-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin: 2rem 0 1rem;
}

/* ===== PAIN POINTS LIST ===== */
.pain-points {
  max-width: 600px;
  margin: 2rem auto;
}

.pain-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: rgba(250, 248, 244, 0.9);
}

.pain-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background-color: var(--terra);
  border-radius: 50%;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(58, 54, 50, 0.06);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card h3 {
  color: var(--terra);
}

.link-arrow {
  display: inline-block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--terra);
  margin-top: 0.5rem;
}

.link-arrow::after {
  content: ' \2192';
  transition: transform 0.3s ease;
}

.link-arrow:hover::after {
  margin-left: 4px;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  max-width: 900px;
  margin: 0 auto;
}

.service-subtitle {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(250, 248, 244, 0.8);
  margin-bottom: 2.5rem;
}

.section-cream .service-subtitle {
  color: var(--sage);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin: 2rem 0;
}

.service-col ul {
  margin-top: 0.5rem;
}

.service-col li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 300;
}

.section-sage .service-col li::before,
.section-sage .check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background-color: var(--terra);
  border-radius: 50%;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background-color: var(--terra);
  border-radius: 50%;
}

.service-expect {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: rgba(250, 248, 244, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--terra);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: var(--charcoal-light);
  padding: 2.5rem;
  border-radius: 12px;
  border-top: 3px solid var(--terra);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(250, 248, 244, 0.9);
  line-height: 1.8;
}

.testimonial-author {
  color: var(--terra);
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section p {
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(250, 248, 244, 0.9);
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 2rem;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--terra);
  font-size: 1.15rem;
}

.faq-item p {
  color: rgba(250, 248, 244, 0.85);
  margin-bottom: 0;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  margin-top: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(250, 248, 244, 0.3);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background-color: rgba(250, 248, 244, 0.1);
  color: var(--cream);
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 248, 244, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terra);
}

/* ===== INTRO WITH PHOTO (HOME) ===== */
.intro-with-photo {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.intro-photo {
  flex-shrink: 0;
}

.intro-photo .headshot {
  width: 200px;
  height: 200px;
}

.intro-text h2 {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .intro-with-photo {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ABOUT PHOTO ===== */
.about-photo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.headshot {
  width: 280px;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  border: 4px solid var(--sage);
  box-shadow: 0 4px 20px rgba(58, 54, 50, 0.1);
}

/* ===== INSTAGRAM LINK ===== */
.instagram-link {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--terra);
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: var(--terra-dark);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--charcoal);
  color: rgba(250, 248, 244, 0.6);
  padding: 3rem 2rem;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--terra);
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(250, 248, 244, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--terra);
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .page-header {
    padding: 6rem 1.5rem 3rem;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background-color: var(--terra);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--terra-dark);
  transform: translateY(-2px);
}
