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

:root {
  --sage:       #a8c5b5;
  --sand:       #c4a882;
  --lavender:   #b5a8c5;
  --sky:        #a8bcc5;
  --rose:       #c5a8a8;
  --cream:      #faf8f4;
  --cream-dark: #f0ebe1;
  --ink:        #1a1a2e;
  --ink-light:  #3d3d5c;
  --text-muted: #7a7a9a;
  --white:      #ffffff;
  --border:     rgba(0,0,0,0.08);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  64px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.35s; }
.fade-up:nth-child(4) { animation-delay: 0.5s; }
.fade-up:nth-child(5) { animation-delay: 0.65s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,26,46,0.2);
}
.btn-primary:hover {
  background: var(--ink-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,26,46,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,26,46,0.2);
}
.btn-ghost:hover {
  background: rgba(26,26,46,0.05);
  border-color: rgba(26,26,46,0.4);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-title { margin-bottom: 0; }

/* ── NAVIGATION ── */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
}
.nav-wrapper.scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--sage);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem !important;
}
.nav-cta:hover {
  background: var(--ink-light) !important;
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  bottom: 0; left: -80px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: blobFloat 12s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 120px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 197, 181, 0.25);
  border: 1px solid rgba(168, 197, 181, 0.5);
  color: #3d6b55;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #5a9e7c;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-headline em {
  font-style: italic;
  color: var(--sand);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-light);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: var(--ink);
}
.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ── MARQUEE ── */
.marquee-band {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.marquee-track .dot { color: var(--sage); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c, var(--sage));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c, var(--sage));
  background: color-mix(in srgb, var(--c, #a8c5b5) 20%, transparent);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 8px; }

/* ── ABOUT ── */
.about { background: var(--cream-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; display: inline-block; }
.about-img-placeholder {
  width: 340px;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-placeholder svg { width: 100%; height: 100%; }
.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -32px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}
.about-badge-float span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.about-accent-card {
  position: absolute;
  top: 32px;
  right: -48px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
  max-width: 200px;
  box-shadow: var(--shadow-md);
}
.about-body {
  color: var(--ink-light);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-light);
}
.value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PROCESS ── */
.process { background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}
.process-step:hover .step-number { color: var(--sand); }
.process-step h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, var(--sage), var(--sand));
  margin-top: 48px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--sand);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-header { position: sticky; top: 120px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--sand); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sand);
  transition: var(--transition);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
  padding-bottom: 24px;
}
.faq-item.open .faq-answer { max-height: 800px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(168,197,181,0.15) 0%, transparent 60%);
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.cta-inner .btn-primary {
  background: var(--sage);
  color: var(--ink);
  font-weight: 600;
}
.cta-inner .btn-primary:hover {
  background: #c4ddd2;
}

/* ── CONTACT ── */
.contact { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact-icon svg { width: 18px; height: 18px; color: var(--sand); }
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail span {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.6;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
}
.optional {
  color: var(--text-muted);
  font-weight: 400;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168,197,181,0.2);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-disclaimer::before {
  content: '🔒';
  font-size: 0.7rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 240px;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong, .footer-contact strong {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-links a, .footer-contact a {
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a:hover { color: var(--white); }

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: var(--ink) !important;
  font-weight: 600 !important;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--cream);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,197,181,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-hero-title em {
  font-style: italic;
  color: var(--sand);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 520px;
  line-height: 1.7;
}

/* ── INDEX PAGE PREVIEW CARDS ── */
.page-previews { background: var(--white); }
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.preview-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent, var(--sage));
  opacity: 0;
  transition: var(--transition);
}
.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.preview-card:hover::before { opacity: 1; }
.preview-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent, #a8c5b5) 18%, transparent);
  color: var(--accent, #a8c5b5);
  margin-bottom: 4px;
}
.preview-icon svg { width: 22px; height: 22px; overflow: visible; }
.preview-card h3 {
  font-size: 1.2rem;
  color: var(--ink);
}
.preview-card p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
}
.preview-arrow {
  font-size: 1.1rem;
  color: var(--sand);
  transition: var(--transition);
  display: inline-block;
}
.preview-card:hover .preview-arrow { transform: translateX(4px); }

/* ── ABOUT PAGE: VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.value-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── PROCESS PAGE: VERTICAL STEPS ── */
.process-vertical {
  max-width: 760px;
  margin: 0 auto;
}
.process-v-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}
.process-v-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  text-align: right;
  padding-top: 4px;
  transition: var(--transition);
}
.process-v-step:hover .process-v-number { color: var(--sand); }
.process-v-content h3 {
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.process-v-content p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 10px;
}
.process-v-connector {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--sage), var(--sand));
  margin: 8px 0 8px 38px;
  opacity: 0.4;
  border-radius: 2px;
}

/* ── PROCESS PAGE: WHAT TO EXPECT ── */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.expect-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.expect-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.expect-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}
.expect-item h4 {
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  margin-bottom: 8px;
}
.expect-item p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ── STORIES PAGE: STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CONTACT PAGE: NOTE ── */
.contact-note {
  margin-top: 2rem;
  padding: 16px 20px;
  background: rgba(168,197,181,0.15);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.4rem; }
  .nav-cta { padding: 14px 32px !important; font-size: 1rem !important; }
  .hamburger { display: flex; z-index: 101; }

  /* Hero */
  .hero-content { padding-top: 100px; }
  .hero-headline { font-size: 2.8rem; }
  .hero-trust { gap: 20px; }

  /* Sections */
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .process-steps { flex-direction: column; gap: 40px; align-items: center; }
  .process-connector { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-header { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 64px 0; }
  .section-title { font-size: 1.9rem; }

  /* Inner page grids */
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 140px 0 60px; }
  .page-hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .preview-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .process-v-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .process-v-number { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
}

/* ── SIMPLEPRACTICE WIDGET ── */
.spwidget-button-wrapper { text-align: center; }
.spwidget-button {
  display: inline-block;
  padding: 14px 32px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.spwidget-button:hover { background: transparent; color: var(--ink); }
.spwidget-button:active { opacity: .85; }

/* ── REDUCED MOTION (WCAG 2.1 AA) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-blob, .marquee-track, .scroll-line { animation: none !important; }
  .fade-up, .reveal { opacity: 1; transform: none; }
}
