/* ============================================================
   Grounded Counseling — main stylesheet
   ============================================================ */

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

:root {
  --clay:        #8c6a4a;
  --clay-light:  #b08a68;
  --bark:        #2a2018;
  --sand:        #f4ede0;
  --sand-dark:   #e5d8c4;
  --cream:       #faf6ef;
  --stone:       #7a6e60;
  --stone-light: #b8ad9e;
  --warm-mid:    #c9b89e;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: var(--cream);
  color: var(--bark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ================ TOP INFO BAR ================ */
.info-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--clay);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: .76rem;
  letter-spacing: .04em;
}
.info-bar-inner {
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem 5vw;
  max-width: 100%;
}
.info-bar-item {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s ease;
  white-space: nowrap;
}
.info-bar-item:hover { color: var(--white); }
.info-bar-item svg { opacity: .85; flex-shrink: 0; }
.info-bar-item--muted { color: rgba(250,246,239,.78); }
.info-bar-item--badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .15rem .75rem;
  background: rgba(255,255,255,.13);
  border-radius: 2rem;
  font-weight: 500;
  letter-spacing: .03em;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #b8e6c4;
  box-shadow: 0 0 0 0 rgba(184,230,196,.7);
  animation: pulseDot 2.2s ease-in-out infinite;
}
.info-bar-divider {
  width: 1px; height: 14px;
  background: rgba(250,246,239,.28);
}
.info-bar-spacer { flex: 1; }

@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(184,230,196,.55); }
  70%  { box-shadow: 0 0 0 6px rgba(184,230,196,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,230,196,0); }
}

/* ================ NAV ================ */
.site-nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5vw;
  min-height: 78px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 6px 20px rgba(42,32,24,.04);
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease, top .25s ease;
}
.site-nav.scrolled {
  padding: .75rem 5vw;
  background: rgba(255,255,255,0.985);
  box-shadow: 0 10px 30px rgba(42,32,24,.1);
}
.nav-logo {
  text-decoration: none; display: flex; align-items: center; gap: .8rem;
  color: var(--bark);
  flex-shrink: 0;
}
.nav-logo-mark {
  position: relative;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  /* Background only shows if the image fails — the new logo is self-contained */
  background: #ffffff;
  color: var(--clay);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-style: italic; font-weight: 400;
  letter-spacing: .02em;
  transition: transform .2s ease;
  overflow: hidden;
  flex-shrink: 0;
}
/* The new logo asset is already a complete circular mark (tree + ring),
   so we display it cleanly at full size — no inverting, no cropping. */
.nav-logo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 2;
}
/* Fallback letter is hidden unless the image fails to load (JS will show it). */
.nav-logo-fallback {
  position: relative; z-index: 1;
  display: none;
}
.nav-logo-mark.logo-fallback-on .nav-logo-fallback { display: block; }
.nav-logo-mark.logo-fallback-on { background: linear-gradient(135deg, var(--clay) 0%, var(--clay-light) 100%); color: var(--cream); border: none; }

.footer-brand .nav-logo-mark {
  width: 54px; height: 54px;
  background: rgba(250,246,239,.96);
  border: 1px solid rgba(255,255,255,.1);
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 8px 18px rgba(140,106,74,.4);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 400;
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--bark);
}
.nav-logo-text span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .6rem; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: .25rem;
  font-weight: 500;
}

.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .005em;
  text-transform: none;
  color: var(--bark); text-decoration: none;
  opacity: .82;
  position: relative;
  padding: .35rem 0;
  transition: opacity .2s, color .2s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 2px;
  background: var(--clay);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .3s ease;
}
.nav-links a:hover { opacity: 1; color: var(--clay); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active { opacity: 1; color: var(--clay); }
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }
.nav-cta {
  background: var(--clay) !important; color: var(--white) !important;
  opacity: 1 !important;
  padding: .65rem 1.5rem !important;
  border-radius: 2rem;
  font-family: 'Jost', sans-serif !important;
  font-size: .9rem !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
  box-shadow: 0 4px 12px rgba(140,106,74,.22);
}
.nav-cta:hover {
  background: var(--bark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(42,32,24,.25);
}

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; color: var(--bark);
}

/* ================ HERO ================ */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; padding-top: 116px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vw 6vw 8vw 8vw; background: var(--cream);
  animation: fadeUp .9s ease both;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--clay); font-weight: 400; margin-bottom: 1.6rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 400; line-height: 1.12; color: var(--bark); margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; color: var(--clay); }
.hero-body {
  font-size: 1rem; line-height: 1.9; color: var(--stone);
  max-width: 460px; margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Jost', sans-serif;
  background: var(--clay); color: var(--white);
  padding: .9rem 2.2rem; border-radius: 2rem;
  font-size: .95rem; font-weight: 400; letter-spacing: .03em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--bark); transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Jost', sans-serif;
  color: var(--bark); font-size: .95rem; font-weight: 400;
  letter-spacing: .03em; text-decoration: none;
  border-bottom: 1.5px solid var(--clay); padding-bottom: 2px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--clay); }
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(250,246,239,.15) 0%, transparent 40%),
              linear-gradient(to top, rgba(42,32,24,.3) 0%, transparent 55%);
}
.hero-card {
  position: absolute; bottom: 8%; left: -4%;
  background: rgba(250,246,239,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.2rem; padding: 1.6rem 2rem;
  box-shadow: 0 20px 60px rgba(42,32,24,.15);
  max-width: 290px;
  animation: fadeUp 1.1s .3s ease both;
  border: 1px solid var(--sand-dark);
}
.hero-card-label {
  font-family: 'Jost', sans-serif;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--clay); margin-bottom: .7rem; font-weight: 400;
}
.hero-card-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-style: italic; line-height: 1.55; color: var(--bark);
}
.hero-card-sig { margin-top: .8rem; font-size: .78rem; color: var(--stone); font-family: 'Jost', sans-serif; }

/* ================ TRUST BAR ================ */
.trust-bar {
  background: var(--bark);
  display: flex; justify-content: center; gap: 4rem;
  padding: 1.5rem 8vw; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: .8rem; color: var(--stone-light); }
.trust-item .t-icon { width: 17px; height: 17px; stroke: var(--clay-light); flex-shrink: 0; }
.trust-item p {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 300;
}

/* ================ SHARED SECTION ================ */
section { padding: 7rem 8vw; }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--clay); font-weight: 400; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400; line-height: 1.18; color: var(--bark); margin-bottom: 1.4rem;
}
.section-body {
  font-size: .97rem; line-height: 1.9; color: var(--stone); max-width: 580px;
}

/* ================ ABOUT ================ */
#about {
  padding: 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.about-photo { position: relative; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(244,237,224,.5));
}
.about-content {
  background: var(--sand); padding: 6rem 6vw;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content .section-body { max-width: 100%; margin-bottom: 1rem; }

/* ================ SERVICES ================ */
#services { background: var(--sand); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem;
}
.service-card {
  background: var(--cream); border-radius: 1.2rem; overflow: hidden;
  border: 1px solid var(--sand-dark);
  transition: transform .25s, box-shadow .25s; position: relative;
}
.service-icon-wrap {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sand-dark) 0%, var(--warm-mid) 100%);
  position: relative; overflow: hidden;
}
.service-icon-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 60%);
  pointer-events: none;
}
.service-card:nth-child(2) .service-icon-wrap {
  background: linear-gradient(135deg, #d9c5a8 0%, #b08a68 100%);
}
.service-card:nth-child(3) .service-icon-wrap {
  background: linear-gradient(135deg, #c9b89e 0%, #8c6a4a 100%);
}
.service-card:nth-child(4) .service-icon-wrap {
  background: linear-gradient(135deg, #e5d8c4 0%, #b08a68 100%);
}
.service-card:nth-child(5) .service-icon-wrap {
  background: linear-gradient(135deg, #b08a68 0%, #2a2018 100%);
}
.service-card:nth-child(6) .service-icon-wrap {
  background: linear-gradient(135deg, #d9c5a8 0%, #7a6e60 100%);
}
.service-icon {
  width: 56px; height: 56px;
  stroke: var(--cream); stroke-width: 1.4;
  fill: none;
  filter: drop-shadow(0 4px 8px rgba(42,32,24,.18));
  position: relative; z-index: 1;
  transition: transform .35s ease;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-card-body { padding: 1.8rem 1.6rem 1.7rem; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--clay), var(--warm-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease; z-index: 2;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(42,32,24,.1); }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--bark); margin-bottom: .7rem;
}
.service-card p { font-size: .88rem; line-height: 1.75; color: var(--stone); }

/* ================ TEAM ================ */
#team { background: var(--cream); }
.team-intro { max-width: 600px; margin-bottom: 3.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  border-radius: 1.2rem; overflow: hidden; background: var(--sand);
  border: 1px solid var(--sand-dark); transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(42,32,24,.1); }
.team-photo {
  height: 280px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.team-photo.avatar-1 {
  background: linear-gradient(135deg, #c9b89e 0%, #8c6a4a 100%);
}
.team-photo.avatar-2 {
  background: linear-gradient(135deg, #b08a68 0%, #5e4a36 100%);
}
.team-photo.avatar-3 {
  background: linear-gradient(135deg, #d9c5a8 0%, #7a6e60 100%);
}
.team-photo .initials {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 400;
  color: var(--cream);
  font-size: 5rem;
  letter-spacing: .04em;
  text-shadow: 0 6px 24px rgba(42,32,24,.25);
  transition: transform .5s ease;
  position: relative; z-index: 1;
}
.team-card:hover .team-photo .initials { transform: scale(1.06); }

/* Real photo overlays the gradient + initials when the file exists.
   onerror in the HTML hides this img if the file is missing. */
.team-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 2;
  transition: transform .5s ease;
}
.team-card:hover .team-photo-img { transform: scale(1.04); }
.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(42,32,24,.2));
  pointer-events: none;
}
.team-info { padding: 1.6rem; }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 400; color: var(--bark); margin-bottom: .3rem;
}
.team-cred {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .14em; color: var(--clay);
  text-transform: uppercase; font-weight: 400; margin-bottom: .8rem;
}
.team-bio { font-size: .88rem; line-height: 1.75; color: var(--stone); }
.team-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; padding: .25rem .8rem; border-radius: 2rem;
  background: var(--sand-dark); color: var(--bark); letter-spacing: .04em;
}

/* ================ INSURANCE NOTE (under team) ================ */
.insurance-note {
  margin: 3rem auto 0;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.6rem;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-left: 3px solid var(--clay);
  border-radius: .9rem;
}
.insurance-note-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream);
}
.insurance-note-icon svg { width: 18px; height: 18px; }
.insurance-note p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--bark);
  margin: 0;
}
.insurance-note p strong {
  font-weight: 400;
  color: var(--clay);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
}

@media (max-width: 680px) {
  .insurance-note { flex-direction: column; text-align: center; gap: .8rem; padding: 1.2rem; }
}

/* ================ PHOTO BREAK ================ */
.photo-break { height: 460px; position: relative; overflow: hidden; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.photo-break-overlay {
  position: absolute; inset: 0;
  background: rgba(42,32,24,.48);
  display: flex; align-items: center; justify-content: center;
}
.photo-break-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-style: italic; font-weight: 400;
  color: var(--white); text-align: center;
  max-width: 760px; line-height: 1.38; padding: 0 6vw;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.photo-break-quote cite {
  display: block; margin-top: 1.2rem;
  font-family: 'Jost', sans-serif; font-style: normal;
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ================ APPROACH ================ */
#approach { background: var(--bark); }
#approach .section-label { color: var(--clay-light); }
#approach .section-title { color: var(--sand); }
.approach-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6vw;
  align-items: start; margin-top: 3.5rem;
}
.approach-pillars { display: flex; flex-direction: column; gap: 1.2rem; }
.pillar {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem; border-radius: .8rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.pillar:hover { background: rgba(255,255,255,.08); }
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-style: italic; color: var(--clay-light); line-height: 1; min-width: 2rem;
}
.pillar-content h4 {
  font-family: 'Jost', sans-serif;
  font-size: .88rem; font-weight: 500; color: var(--sand); margin-bottom: .4rem;
  letter-spacing: .04em;
}
.pillar-content p { font-size: .88rem; line-height: 1.75; color: var(--stone-light); }
.approach-visual { position: relative; padding-bottom: 2rem; }
.approach-img-main {
  width: 100%; border-radius: 1.2rem; overflow: hidden; height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.approach-img-main img { width: 100%; height: 100%; object-fit: cover; }
.approach-img-thumb {
  position: absolute; bottom: -1rem; left: -2rem;
  width: 175px; height: 175px; border-radius: 1rem;
  overflow: hidden; border: 4px solid var(--bark);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.approach-img-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ================ LOCATION ================ */
#location { background: var(--sand); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center; }
.location-map {
  border-radius: 1.2rem; overflow: hidden; height: 360px;
  box-shadow: 0 18px 48px rgba(42,32,24,.12);
}
.location-map iframe {
  width: 100%; height: 100%; border: none;
  filter: sepia(.18) contrast(.94) saturate(.9);
}
.location-details { display: flex; flex-direction: column; gap: 1.6rem; }
.detail-block { display: flex; gap: 1rem; align-items: flex-start; }
.detail-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--clay); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.detail-icon svg { width: 17px; height: 17px; stroke: var(--white); }
.detail-block h4 {
  font-family: 'Jost', sans-serif;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--clay); font-weight: 400; margin-bottom: .3rem;
}
.detail-block p { font-size: .95rem; line-height: 1.65; color: var(--bark); }

/* ================ CONTACT ================ */
#contact { background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
.contact-note {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-style: italic; line-height: 1.38;
  color: var(--bark); margin-bottom: 1.5rem;
}
.contact-note em { color: var(--clay); }
.contact-subtext { font-size: .92rem; line-height: 1.85; color: var(--stone); margin-bottom: 2.5rem; }
.contact-photo {
  border-radius: 1.2rem; overflow: hidden; height: 260px;
  box-shadow: 0 12px 32px rgba(42,32,24,.1);
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--stone); font-weight: 400;
}
.form-group input, .form-group select, .form-group textarea {
  padding: .85rem 1rem; border: 1.5px solid var(--sand-dark);
  border-radius: .6rem; background: var(--white);
  font-family: 'Libre Baskerville', Georgia, serif; font-size: .9rem; color: var(--bark);
  outline: none; transition: border-color .2s, box-shadow .2s;
  resize: vertical;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(140,106,74,.12);
}
.form-group textarea { min-height: 130px; }
.form-disclaimer {
  font-size: .78rem; color: var(--stone); line-height: 1.65; margin-top: .4rem;
}
.form-disclaimer a { color: var(--clay); }

/* ================ FOOTER ================ */
footer {
  background: var(--bark); padding: 3.2rem 8vw 2.6rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo-text { color: var(--sand); }
.footer-brand .nav-logo-text span { color: var(--clay-light); }
.footer-brand p {
  font-size: .85rem; line-height: 1.8; color: var(--stone-light);
  margin-top: 1rem; max-width: 280px;
}
.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--clay-light); font-weight: 500; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a, .footer-col p {
  font-family: 'Jost', sans-serif;
  font-size: .82rem; color: var(--stone-light); text-decoration: none;
  transition: color .2s; line-height: 1.65;
}
.footer-col a:hover { color: var(--clay-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; color: var(--stone); letter-spacing: .04em;
}
.footer-legal { display: flex; gap: 1.6rem; }
.footer-legal a {
  font-family: 'Jost', sans-serif;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--stone); text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: var(--clay-light); }

/* ================ ANIMATIONS ================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .info-bar-item--muted,
  .info-bar-divider { display: none; }
  .info-bar-item--badge { padding: .1rem .55rem; font-size: .7rem; }
  .info-bar-inner { gap: .6rem; padding: .5rem 5vw; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand-dark);
    padding: 0; max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 500px; padding: 1rem 5vw 2rem; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 0; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { width: fit-content; margin-top: .5rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 380px; }
  .hero-card { left: 4%; bottom: 6%; }
  #about { grid-template-columns: 1fr; }
  .about-photo { height: 300px; }
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .approach-grid, .location-inner, .contact-inner { grid-template-columns: 1fr; }
  .approach-img-thumb { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.5rem; flex-direction: column; align-items: center; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 5rem 8vw; }
}

@media (max-width: 520px) {
  .hero-left { padding: 6vw 6vw 8vw; }
  .nav-logo-text { font-size: .95rem; }
}
