@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --cream: #F9F6F1;
  --cream-dark: #F0EBE1;
  --forest: #2A3D35;
  --forest-light: #3A5448;
  --gold: #B8965A;
  --gold-light: #D4AF7A;
  --sage: #7A9E8E;
  --sage-light: #EBF2EE;
  --charcoal: #2D2D2D;
  --mid-gray: #666;
  --light-gray: #999;
  --white: #FFFFFF;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --max-width: 1100px;
  --radius: 4px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 246, 241, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 61, 53, 0.08);
  padding: 0 2rem;
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.nav-logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1px;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-light) !important; color: var(--cream) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  background: linear-gradient(150deg, var(--cream) 0%, var(--sage-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

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

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

.hero-photo {
  position: relative;
}

.hero-photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
  background: var(--sage-light);
  border-radius: 2px 120px 2px 120px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(42,61,53,0.15);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--forest);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-photo-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-photo-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gray);
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,150,90,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42,61,53,0.25);
}

/* ─── SECTION SCAFFOLDING ─── */
.section {
  padding: 100px 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ─── FOCUS AREAS (HOME) ─── */
.focus-section {
  background: var(--forest);
  color: var(--cream);
}

.focus-section .section-label { color: var(--gold); }
.focus-section .section-heading { color: var(--cream); }
.focus-section .section-subtext { color: rgba(249,246,241,0.7); }

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.focus-card {
  background: rgba(255,255,255,0.04);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.focus-card:hover { background: rgba(255,255,255,0.07); }
.focus-card:hover::before { transform: scaleX(1); }

.focus-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,150,90,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.focus-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

.focus-card p {
  font-size: 0.92rem;
  color: rgba(249,246,241,0.65);
  line-height: 1.75;
}

/* ─── ABOUT SNAPSHOT (HOME) ─── */
.about-snapshot {
  background: var(--cream-dark);
}

.about-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-snapshot-img {
  position: relative;
}

.about-snapshot-img-inner {
  background: var(--sage-light);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(42,61,53,0.12);
}

.about-snapshot-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-snapshot-accent {
  position: absolute;
  top: -16px; left: -16px;
  width: 120px; height: 120px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.4;
}

.about-snapshot-accent2 {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border: 2px solid var(--sage);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.4;
}

.credentials-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.93rem;
  color: var(--mid-gray);
  line-height: 1.5;
}

.credentials-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage-light);
  border: 2px solid var(--sage);
  margin-top: 2px;
  position: relative;
}

.credentials-list li::after {
  display: none;
}

.cred-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sage-light);
  border: 1.5px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--forest);
  font-size: 0.65rem;
}

/* ─── APLAN BANNER ─── */
.aplan-banner {
  background: var(--sage-light);
  border-left: 3px solid var(--sage);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.aplan-banner p {
  font-size: 0.88rem;
  color: var(--forest);
  line-height: 1.65;
}

.aplan-banner a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(184,150,90,0.4);
  transition: border-color var(--transition);
}

.aplan-banner a:hover { border-color: var(--gold); }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(42,61,53,0.08);
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(42,61,53,0.1);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(42,61,53,0.08);
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}

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

/* ─── CLIENTS ─── */
.clients-section {
  background: var(--forest);
  padding: 80px 2rem;
}

.clients-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249,246,241,0.4);
  margin-bottom: 2.5rem;
}

.clients-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.client-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(249,246,241,0.65);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.client-chip:hover {
  background: rgba(184,150,90,0.15);
  border-color: rgba(184,150,90,0.4);
  color: var(--gold-light);
}

/* ─── SERVICES PAGE ─── */
.services-hero {
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-light) 100%);
  color: var(--cream);
  padding: 160px 2rem 100px;
  text-align: center;
}

.services-hero .section-label { color: var(--gold); justify-content: center; }
.services-hero .section-label::before { background: var(--gold); }
.services-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.services-hero p {
  font-size: 1.05rem;
  color: rgba(249,246,241,0.7);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.service-block {
  padding: 80px 2rem;
  border-bottom: 1px solid rgba(42,61,53,0.08);
}

.service-block:last-of-type { border-bottom: none; }
.service-block:nth-child(even) { background: var(--cream-dark); }

.service-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.service-block:nth-child(even) .service-block-inner {
  direction: rtl;
}

.service-block:nth-child(even) .service-block-inner > * {
  direction: ltr;
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sage-light);
  border: 1.5px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-block h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--forest);
  margin-bottom: 1rem;
}

.service-block .lead {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.service-list li {
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-visual {
  background: var(--sage-light);
  border-radius: 8px;
  padding: 3rem;
  border: 1px solid rgba(122,158,142,0.2);
}

.service-visual-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.training-tag {
  background: var(--white);
  border: 1px solid rgba(122,158,142,0.4);
  color: var(--forest);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

.retreat-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.retreat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.55;
}

.retreat-item-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 1px;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: var(--cream-dark);
  padding: 160px 2rem 100px;
}

.about-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: end;
}

.about-hero-photo {
  position: relative;
}

.about-hero-photo-frame {
  background: var(--sage-light);
  border-radius: 2px 80px 2px 80px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(42,61,53,0.15);
}

.about-hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-hero-tagline {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  max-width: 200px;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(184,150,90,0.35);
}

.about-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.about-hero-content .subtitle {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.about-hero-content p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(42,61,53,0.1);
}

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

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--light-gray);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-philosophy {
  background: var(--forest);
  color: var(--cream);
  padding: 100px 2rem;
}

.philosophy-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-philosophy .section-label { color: var(--gold); }
.about-philosophy .section-heading { color: var(--cream); }

.philosophy-quote {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: rgba(249,246,241,0.85);
  line-height: 1.6;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.philosophy-text p {
  font-size: 0.95rem;
  color: rgba(249,246,241,0.65);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.credentials-section {
  background: var(--cream);
  padding: 100px 2rem;
}

.credentials-grid {
  max-width: var(--max-width);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.cred-card {
  background: var(--white);
  border: 1px solid rgba(42,61,53,0.08);
  padding: 1.75rem;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.cred-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: var(--sage-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.cred-card p {
  font-size: 0.83rem;
  color: var(--light-gray);
  line-height: 1.55;
}

/* ─── TESTIMONIALS PAGE ─── */
.test-hero {
  background: linear-gradient(150deg, var(--cream-dark) 0%, var(--sage-light) 100%);
  padding: 160px 2rem 100px;
  text-align: center;
}

.test-hero .section-label { justify-content: center; }
.test-hero .section-label::before { background: var(--gold); }
.test-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--forest);
  margin-bottom: 1rem;
}
.test-hero p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.testimonials-full {
  background: var(--cream);
  padding: 100px 2rem;
}

.testimonials-full-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  columns: 2;
  column-gap: 1.5rem;
}

.testimonial-full-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid rgba(42,61,53,0.08);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-full-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.7;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-full-card blockquote {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-full-card .author {
  border-top: 1px solid rgba(42,61,53,0.07);
  padding-top: 1rem;
}

.testimonial-full-card .author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 2px;
}

.testimonial-full-card .author span {
  font-size: 0.78rem;
  color: var(--light-gray);
}

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--cream-dark);
  padding: 160px 2rem 100px;
}

.contact-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.contact-hero p {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(42,61,53,0.1);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(42,61,53,0.07);
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(42,61,53,0.12);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  color: rgba(249,246,241,0.6);
  padding: 60px 2rem 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(249,246,241,0.5);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,90,0.1);
}

.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(249,246,241,0.5);
  transition: color var(--transition);
}

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

.footer-aplan {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(249,246,241,0.45);
  margin-top: 1rem;
}

.footer-aplan a {
  color: var(--gold);
  transition: opacity var(--transition);
}

.footer-aplan a:hover { opacity: 0.8; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(249,246,241,0.3);
}

/* ─── PAGE HERO (shared mini hero) ─── */
.page-hero {
  background: linear-gradient(150deg, var(--cream-dark) 0%, var(--sage-light) 100%);
  padding: 140px 2rem 80px;
  text-align: center;
}

.page-hero .section-label { justify-content: center; }
.page-hero .section-label::before { background: var(--gold); }

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--forest);
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--gold);
  padding: 80px 2rem;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  border: 2px solid var(--white);
  padding: 0.85rem 2.5rem;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-1px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner,
  .about-snapshot-grid,
  .about-hero-inner,
  .philosophy-grid,
  .contact-hero-inner { grid-template-columns: 1fr; gap: 3rem; }

  .hero-photo { display: none; }

  .focus-grid,
  .testimonials-grid,
  .credentials-grid { grid-template-columns: 1fr; }

  .service-block-inner { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  .testimonials-full-grid { columns: 1; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .form-row { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 1.5rem; }

  .about-snapshot-grid { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding: 120px 2rem 60px; }
}

@media (max-width: 600px) {
  .section { padding: 70px 1.5rem; }
  .hero { padding: 110px 1.5rem 60px; }
}

/* ─── NAV MOBILE OPEN ─── */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: rgba(249,246,241,0.99);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid rgba(42,61,53,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
