:root {
  --oak: #6b3f1a;
  --oak-deep: #4a2a0f;
  --oak-light: #c8956a;
  --cream: #faf6ef;
  --warm-white: #fffdf9;
  --sage: #5a8a6a;
  --sage-light: #c8ddd0;
  --teal: #2d7d6f;
  --amber: #e8a63a;
  --amber-pale: #fdf0d0;
  --charcoal: #2c2420;
  --mid-gray: #7a6e68;
  --border: rgba(107, 63, 26, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(107, 63, 26, 0.1);
  --shadow-md: 0 6px 24px rgba(107, 63, 26, 0.12);
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.headline {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}
p {
  color: var(--mid-gray);
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section {
  padding: 5rem 0;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak);
  background: var(--amber-pale);
  border: 1px solid rgba(107, 63, 26, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 1rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--oak);
  color: #fff;
  border-color: var(--oak);
}
.btn-primary:hover {
  background: var(--oak-deep);
  border-color: var(--oak-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--oak);
  border-color: var(--oak);
}
.btn-outline:hover {
  background: var(--oak);
  color: #fff;
  transform: translateY(-1px);
}
.btn-amber {
  background: var(--amber);
  color: var(--oak-deep);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: #d4922e;
  border-color: #d4922e;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}
.nav-logo-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.nav-logo-text {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--oak);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid-gray);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--oak);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--oak);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--oak);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem;
}
.mobile-menu.open {
  max-height: 524px;
  padding: 1.5rem;
}
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  color: #fff;
  padding: 0.75rem 1.75rem;
  width: fit-content;
}

/* ── HERO ── */
.hero {
  background: var(--cream);
  padding: 5rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(232, 166, 58, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
.hero h1 {
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--oak);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--mid-gray);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid-gray);
}
.trust-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--sage);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
}
.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--oak-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--oak);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  min-width: 160px;
}
.hero-badge-num {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.hero-badge-label {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 2px;
}
.hero-badge-top {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--amber);
  color: var(--oak-deep);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-sm);
  line-height: 1.3;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--oak);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: 0.5rem;
}
.stat-num {
  font-family: "Fraunces", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}
.stat-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-divider::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ── ABOUT ── */
.about {
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 420px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text .section-label {
  margin-bottom: 0.75rem;
}
.about-text h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-highlights {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about-highlight-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.25rem;
}
.about-highlight-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.about-highlight-text span {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

/* ── STATIONS (HOW IT WORKS) ── */
.stations {
  background: var(--cream);
}
.stations-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.stations-header h2 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.stations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.station-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  padding-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.station-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.station-num {
  width: 36px;
  height: 36px;
  background: var(--oak);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--cream);
  outline: 2px solid var(--oak);
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.station-emoji {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}
.station-card h3 {
  font-size: 0.85rem;
  color: var(--oak);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.station-card p {
  font-size: 0.8rem;
  color: var(--mid-gray);
  line-height: 1.5;
}
.station-card.featured {
  background: var(--oak);
  border-color: var(--oak);
}
.station-card.featured .station-num {
  background: #fff;
  color: var(--oak);
  outline-color: rgba(255, 255, 255, 0.4);
  border-color: var(--oak);
}
.station-card.featured h3 {
  color: var(--amber);
}
.station-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}
.station-card.featured .station-emoji {
  filter: brightness(1.2);
}
.stations-outcome {
  margin-top: 2.5rem;
  background: var(--oak-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stations-outcome-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.stations-outcome h3 {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--amber);
}
.stations-outcome p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ── WHY US ── */
.why {
  background: var(--warm-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-left h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.why-left p {
  margin-bottom: 1.5rem;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.why-feature:hover {
  border-color: var(--oak-light);
}
.why-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.why-feature-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.why-feature-body span {
  font-size: 0.85rem;
  color: var(--mid-gray);
}
.standards-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.standards-box h3 {
  font-family: "Fraunces", serif;
  color: var(--oak);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.standard-item:last-child {
  border-bottom: none;
}
.standard-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--oak);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.standard-desc {
  font-size: 0.85rem;
  color: var(--mid-gray);
}
.outcomes-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.outcome-chip {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--mid-gray);
}
.outcome-chip::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── WHO WE SERVE ── */
.serve {
  background: var(--cream);
}
.serve-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}
.serve-header h2 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.serve-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.serve-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.serve-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.serve-card-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.serve-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.serve-card p {
  font-size: 0.85rem;
  color: var(--mid-gray);
}

/* ── GALLERY ── */
.gallery {
  background: var(--oak-deep);
  padding: 5rem 0;
}
.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery-header .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--amber);
  border-color: rgba(232, 166, 58, 0.3);
}
.gallery-header h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.gallery-header p {
  color: rgba(255, 255, 255, 0.7);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  min-height: 180px;
  font-size: 0.8rem;
  text-align: center;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.99));
  color: #fff;
  padding: 1rem 1rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--warm-white);
}
.testimonials-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}
.testimonials-header h2 {
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-quote::before {
  content: "\201C";
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--oak-light);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 4px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oak);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.author-role {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ── FAQ ── */
.faq {
  background: var(--cream);
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.faq-left h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.faq-left p {
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--cream);
}
.faq-question.open {
  color: var(--oak);
}
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  fill: var(--oak-light);
}
.faq-question.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s;
}
.faq-answer.open {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 0.9rem;
}

/* ── ENROLLMENT CTA ── */
.enroll {
  background: var(--oak);
  padding: 5rem 0;
}
.enroll-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.enroll-inner .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber);
  border-color: rgba(232, 166, 58, 0.3);
}
.enroll-inner h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.enroll-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.enroll-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--oak);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── CONTACT ── */
.contact {
  background: var(--warm-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-gray);
  margin-bottom: 2px;
}
.contact-detail a,
.contact-detail span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.contact-detail a:hover {
  color: var(--oak);
}
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
}
.contact-form-wrap h3 {
  font-family: "Fraunces", serif;
  color: var(--charcoal);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--oak);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-gray);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
}
.form-note {
  font-size: 0.78rem;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo-text {
  color: #fff;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 0.75rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

.footer-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.footer-nav-logo-mark {
  background-color: #fff;
  padding: 4px;
  border-radius: 8px;
}
.footer-contact-quick {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact-quick a {
  font-size: 0.88rem;
  color: var(--amber);
  font-weight: 500;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 1rem;
  font-size: 0.82rem;
}

.footer-copy span {
  display: block;
}
.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
}

/* ── SCROLL TO TOP BUTTON ── */
.wa-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--oak);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(107, 63, 26, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    opacity 0.3s;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.wa-btn.show {
  opacity: 1;
  pointer-events: auto;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(107, 63, 26, 0.4);
}
.wa-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.wa-tooltip {
  position: fixed;
  bottom: 5.5rem;
  right: 1.75rem;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.25s;
  pointer-events: none;
  z-index: 200;
}
.wa-btn:hover + .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  opacity: 0;
}
.animate-in.visible {
  animation: fadeUp 0.55s ease forwards;
}

/* ── RESPONSIVE ── */

@media (max-width: 1080px) {
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links a {
    font-size: 0.82rem;
  }
  .nav-phone {
    font-size: 0.78rem;
  }
  .nav-cta {
    gap: 0.6rem;
  }
  .btn-primary {
    padding: 0.65rem 1.1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta .btn,
  .nav-phone {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .stations-grid {
    grid-template-columns: 1fr 1fr;
  }
  .serve-cards {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-images {
    height: 300px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .stations-grid {
    grid-template-columns: 1fr;
  }
  .serve-cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 3.5rem 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── FORM SUCCESS STATE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: "Fraunces", serif;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--mid-gray);
  font-size: 0.9rem;
}
