/* =========================================
   EMPOWER HER NATUROPATHY — STYLES
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Pastel Pinks */
  --pink-light:  #FDDDE6;
  --pink-mid:    #F9C4D2;
  --pink-deep:   #EFA8BC;

  /* Earthy Browns */
  --brown-pale:  #F5EDE8;
  --brown-sand:  #C4956A;
  --brown-mid:   #8B5E52;
  --brown-deep:  #5C3D2E;

  /* Neutrals */
  --cream:       #FFF8F5;
  --off-white:   #FAF3EF;
  --text-dark:   #3A2218;
  --text-mid:    #6B4A3E;
  --text-light:  #9E7A6F;
  --border:      #EDD8CE;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1200px;
  --radius:      16px;
  --radius-sm:   8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; transition: color 0.25s; }

ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--brown-sand); }

/* ---- Layout ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-sand);
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brown-sand), var(--brown-mid));
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 94, 82, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 94, 82, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--brown-sand);
  color: var(--brown-mid);
}

.btn-outline:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(139, 94, 82, 0.1);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
  color: var(--pink-deep);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown-deep);
  line-height: 1.2;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand .logo-text {
  color: rgba(255, 255, 255, 0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--brown-sand); }

.nav-cta {
  background: linear-gradient(135deg, var(--brown-sand), var(--brown-mid));
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(139, 94, 82, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 94, 82, 0.4);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-mid);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 60%, var(--brown-pale) 100%);
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 50%, rgba(253, 221, 230, 0.6) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(196, 149, 106, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  padding: 60px 60px 60px max(24px, calc((100vw - 1200px) / 2 + 24px));
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-sand);
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

/* Hero Image */
.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 60px 0;
  position: relative;
  z-index: 1;
}

.hero-image-frame {
  width: 460px;
  height: 520px;
  max-width: 100%;
  border-radius: 220px 220px 180px 180px;
  background: linear-gradient(160deg, var(--pink-mid) 0%, var(--pink-deep) 40%, var(--brown-sand) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(139, 94, 82, 0.25);
}

.hero-botanical {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(253,221,230,0.5) 0%, transparent 40%);
}

/* Botanical decoration using CSS */
.hero-image-frame::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 300px;
  background:
    radial-gradient(ellipse 40px 60px at 50% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(ellipse 60px 80px at 30% 60%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(ellipse 60px 80px at 70% 60%, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brown-sand), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =========================================
   PILLARS
   ========================================= */
.pillars {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-deep));
  padding: 48px 0;
}

.pillars-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

a.pillar-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.pillar-item p {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.pillar-icon {
  font-size: 1.5rem;
  color: var(--pink-mid);
}

/* =========================================
   SERVICE PAGES
   ========================================= */
.service-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--pink-light) 60%, var(--brown-pale) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(249,196,210,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.service-hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.service-hero-inner .section-eyebrow { margin-bottom: 0.75rem; }

.service-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.service-hero-inner .lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-hero-inner .hero-buttons { flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--brown-sand); font-weight: 600; }
.breadcrumb a:hover { color: var(--brown-mid); }
.breadcrumb span { color: var(--text-light); }

/* What We Address */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 2rem;
}

.address-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-mid);
}

.address-tag::before {
  content: '✓';
  color: var(--brown-sand);
  font-weight: 700;
  flex-shrink: 0;
}

/* Two-col info section */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  height: 100%;
}

.info-card h3 {
  margin-bottom: 1rem;
  color: var(--brown-deep);
}

.info-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card li {
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.info-card li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--pink-deep);
  font-size: 0.5rem;
  top: 7px;
}

/* Blog / Resources */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(139, 94, 82, 0.12);
}

.blog-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-sand);
  background: var(--pink-light);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-light);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-read-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-sand);
}

.blog-read-link:hover { color: var(--brown-mid); }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--brown-mid), var(--brown-deep));
  border-radius: var(--radius);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h2 { color: #fff; margin-bottom: 0.6rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; }

.cta-banner .btn-primary {
  background: var(--pink-mid);
  color: var(--brown-deep);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-banner .btn-primary:hover {
  background: #fff;
  color: var(--brown-deep);
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  height: 560px;
}

.about-image-bg {
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-light), var(--pink-mid));
  z-index: 0;
}

.about-image-card {
  position: relative;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--pink-mid) 0%, var(--brown-sand) 100%);
  box-shadow: 0 20px 60px rgba(139, 94, 82, 0.2);
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-name-plate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(to top, rgba(92, 61, 46, 0.88) 0%, transparent 100%);
  border-radius: 0 0 var(--radius) var(--radius);
}

.about-name-plate strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.1;
}

.about-name-plate span {
  font-size: 0.82rem;
  color: var(--pink-light);
  letter-spacing: 0.04em;
  margin-top: 4px;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(139, 94, 82, 0.15);
  text-align: center;
  z-index: 2;
}

.about-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--brown-sand);
  line-height: 1;
}

.about-badge span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}

.about-leaf {
  position: absolute;
  border-radius: 50% 0 50% 0;
  opacity: 0.4;
  z-index: 0;
}

.about-leaf-1 {
  width: 80px;
  height: 120px;
  background: var(--brown-sand);
  top: -20px;
  right: 40px;
  transform: rotate(20deg);
}

.about-leaf-2 {
  width: 60px;
  height: 90px;
  background: var(--pink-deep);
  bottom: 80px;
  left: -10px;
  transform: rotate(-30deg);
}

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

.about-credentials {
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-credentials li {
  padding: 10px 16px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--brown-mid);
  font-weight: 600;
  border-left: 3px solid var(--brown-sand);
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-mid), var(--brown-sand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139, 94, 82, 0.12);
  border-color: var(--pink-mid);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(160deg, var(--pink-light) 0%, #fff 60%);
  border-color: var(--pink-mid);
  box-shadow: 0 10px 40px rgba(196, 149, 106, 0.15);
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--brown-sand), var(--brown-mid));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--pink-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--brown-deep);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brown-sand);
  transition: gap 0.2s;
}

.service-link:hover { color: var(--brown-mid); }

/* =========================================
   APPROACH
   ========================================= */
.approach {
  background: linear-gradient(160deg, var(--brown-pale) 0%, var(--pink-light) 100%);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.approach-content h2 { margin-bottom: 1.2rem; }

.approach-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink-mid);
  line-height: 1;
  min-width: 48px;
}

.step-text h4 {
  margin-bottom: 0.3rem;
  color: var(--brown-deep);
}

.step-text p {
  font-size: 0.93rem;
  margin: 0;
}

/* Approach Visual */
.approach-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-circle-outer {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 20px rgba(255,255,255,0.3);
}

.approach-circle-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(139, 94, 82, 0.15);
}

.approach-petal {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50% 50% 0 50%;
  opacity: 0.6;
  animation: petalSpin 8s linear infinite;
}

.approach-petal-1 { background: var(--pink-mid);  top: -15px; left: 65px; transform: rotate(0deg); animation-delay: 0s; }
.approach-petal-2 { background: var(--brown-sand); top: 65px; right: -15px; transform: rotate(90deg); animation-delay: -2s; }
.approach-petal-3 { background: var(--pink-deep);  bottom: -15px; left: 65px; transform: rotate(180deg); animation-delay: -4s; }
.approach-petal-4 { background: var(--brown-pale); top: 65px; left: -15px; transform: rotate(270deg); animation-delay: -6s; }

@keyframes petalSpin {
  0%, 100% { opacity: 0.5; transform-origin: center; }
  50% { opacity: 0.8; }
}

.approach-center {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--brown-mid);
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.approach-label {
  position: absolute;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown-mid);
  text-align: center;
  line-height: 1.3;
  background: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(139, 94, 82, 0.1);
}

.ap-label-1 { top: 0; left: 50%; transform: translateX(-50%); }
.ap-label-2 { right: 0; top: 50%; transform: translateY(-50%); }
.ap-label-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.ap-label-4 { left: 0; top: 50%; transform: translateY(-50%); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(139, 94, 82, 0.1);
}

.stars {
  color: var(--brown-sand);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
}

blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--pink-mid);
  line-height: 0;
  position: absolute;
  top: 12px;
  left: -10px;
  font-family: Georgia, serif;
  opacity: 0.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-mid);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.25s;
  gap: 16px;
}

.faq-question:hover { color: var(--brown-sand); }

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brown-sand);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  margin: 0;
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--brown-pale) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--brown-sand);
  width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-detail span {
  font-size: 0.93rem;
  color: var(--text-mid);
}

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(139, 94, 82, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-sand);
  box-shadow: 0 0 0 3px rgba(196, 149, 106, 0.15);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--brown-deep);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo .logo-text { color: rgba(255,255,255,0.9); }
.footer-brand .logo-icon { color: var(--pink-mid); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--pink-mid);
  border-color: var(--pink-mid);
  color: var(--brown-deep);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-links li a:hover { color: var(--pink-mid); }

.footer-disclaimer {
  margin-top: 24px;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--brown-sand);
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin: 0;
}

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

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

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-content {
    padding: 0 24px 40px;
  }

  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }

  .hero-image {
    padding: 0 24px;
    justify-content: center;
  }

  .hero-image-frame { width: 340px; height: 380px; }
  .hero-scroll { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image-wrap { height: 400px; order: -1; }

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

  .approach-grid { grid-template-columns: 1fr; gap: 50px; }
  .approach-visual { max-width: 320px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { font-size: 1rem !important; }

  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .pillars-grid {
    justify-content: center;
    gap: 24px 32px;
  }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-form-wrap { padding: 28px 20px; }

  .about-image-wrap { height: 340px; }
}

@media (max-width: 480px) {
  .hero-image-frame { width: 280px; height: 320px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; max-width: 280px; }
}
