/* ==========================================================================
   New Beginning Therapy Center — Styles
   Palette: Burgundy (#7B2D3B) · Blush (#C4838F) · Cream (#FDF8F6)
   Fonts: Cormorant Garamond (headings) · Inter (body)
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #3D2B2B;
  background-color: #FDF8F6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #7B2D3B;
  color: #FDF8F6;
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  z-index: 1000;
  font-size: 0.875rem;
  font-weight: 500;
}
.skip-link:focus {
  top: 0;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2A1F1F;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: #7B2D3B;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
  color: #2A1F1F;
}

.accent {
  color: #7B2D3B;
  font-style: italic;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5C4040;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #7B2D3B;
  color: #FDF8F6;
  border-color: #7B2D3B;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #5E2130;
  border-color: #5E2130;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #FDF8F6;
  border-color: rgba(253, 248, 246, 0.5);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(253, 248, 246, 0.1);
  border-color: #FDF8F6;
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2A1F1F;
  line-height: 1.2;
}
.logo-text-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B2D3B;
}
.logo--light .logo-text { color: #FDF8F6; }
.logo--light .logo-text-sub { color: #C4838F; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3D2B2B;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #7B2D3B;
  transition: width 0.3s ease;
}
.main-nav a:hover { color: #7B2D3B; }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: #7B2D3B;
  color: #FDF8F6 !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: all 0.3s ease !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: #5E2130 !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  padding: 0;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #3D2B2B;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger { top: 50%; margin-top: -0.75px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: translateX(-50%) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: #2A1F1F;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 31, 31, 0.92) 0%,
    rgba(123, 45, 59, 0.75) 50%,
    rgba(42, 31, 31, 0.88) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #C4838F;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #FDF8F6;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-accent {
  color: #C4838F;
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(253, 248, 246, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

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

/* ── Floating Cards ──────────────────────────────────────────────────────── */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.float-card {
  background: rgba(253, 248, 246, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(253, 248, 246, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  color: #FDF8F6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.float-card--1 { grid-column: 1 / -1; }
.float-card--1 .float-card-number { font-size: 1.75rem; }
.float-card--2 { grid-column: 1 / 2; }
.float-card--3 { grid-column: 2 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.float-card--4 { grid-column: 1 / -1; background: rgba(123, 45, 59, 0.4); }

.float-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #C4838F;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.float-card-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(253, 248, 246, 0.85);
  line-height: 1.4;
}
.float-card-icon {
  color: #C4838F;
  margin-bottom: 0.5rem;
}

/* ── About ───────────────────────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: #FDF8F6;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 59, 0.12);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.15);
  border: 4px solid #FDF8F6;
}
.about-img-accent img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.about-seal {
  position: absolute;
  top: -1.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: #7B2D3B;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.85rem;
  background: #FDF8F6;
  padding: 1rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.12);
}
.about-seal span {
  text-align: center;
  line-height: 1.2;
}

.about-content { max-width: 520px; }
.about-text {
  color: #5C4040;
  margin-bottom: 1.25rem;
  font-size: 1.025rem;
}
.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: #2A1F1F;
  margin-bottom: 0.15rem;
}
.value-item span {
  font-size: 0.875rem;
  color: #5C4040;
}

/* ── Services ────────────────────────────────────────────────────────────── */
.services {
  padding: 7rem 0;
  background: #FAF0EE;
}
.section-header { margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: #FDF8F6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.12);
}
.service-card-img {
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.05);
}
.service-card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(123, 45, 59, 0.15);
  line-height: 1;
}
.service-card-body {
  padding: 1.75rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #2A1F1F;
}
.service-desc {
  font-size: 0.925rem;
  color: #5C4040;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-list li {
  font-size: 0.85rem;
  color: #7B2D3B;
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: #C4838F;
  border-radius: 50%;
}

/* ── Approach ────────────────────────────────────────────────────────────── */
.approach {
  padding: 7rem 0;
  background: #2A1F1F;
  color: #FDF8F6;
}
.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.approach-text { display: flex; flex-direction: column; gap: 1.5rem; }
.approach-text-body {
  color: rgba(253, 248, 246, 0.75);
  font-size: 1.025rem;
  line-height: 1.8;
}
.approach-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}
.method {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}
.method-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #C4838F;
  line-height: 1;
  padding-top: 0.25rem;
}
.method-title {
  font-size: 1.15rem;
  color: #FDF8F6;
  margin-bottom: 0.35rem;
}
.method-desc {
  font-size: 0.9rem;
  color: rgba(253, 248, 246, 0.65);
  line-height: 1.7;
}
.approach-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.approach-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}
.approach-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42, 31, 31, 0.95), transparent);
  padding: 3rem 2rem 2rem;
}
.quote-mark {
  margin-bottom: 0.75rem;
  opacity: 0.6;
}
.approach-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #FDF8F6;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.approach-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  color: #C4838F;
  letter-spacing: 0.05em;
}

/* ── Community ───────────────────────────────────────────────────────────── */
.community {
  padding: 7rem 0;
  background: #FDF8F6;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.community-card {
  background: #FAF0EE;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.12);
}
.community-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.community-card:hover .community-card-img img {
  transform: scale(1.05);
}
.community-card-body {
  padding: 1.75rem;
}
.community-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #2A1F1F;
}
.community-card-desc {
  font-size: 0.925rem;
  color: #5C4040;
  line-height: 1.7;
}

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact {
  padding: 7rem 0;
  background: #FAF0EE;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { max-width: 480px; }
.contact-text {
  font-size: 1.025rem;
  color: #5C4040;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(123, 45, 59, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #2A1F1F;
  margin-bottom: 0.2rem;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.9rem;
  color: #5C4040;
  line-height: 1.5;
}
.contact-detail a:hover { color: #7B2D3B; }
.contact-detail address { font-style: normal; }

.contact-hours {
  background: rgba(123, 45, 59, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
}
.contact-hours strong {
  display: block;
  font-size: 0.95rem;
  color: #2A1F1F;
  margin-bottom: 0.75rem;
}
.contact-hours span {
  display: block;
  font-size: 0.875rem;
  color: #5C4040;
  line-height: 1.8;
}

/* ── Form ────────────────────────────────────────────────────────────────── */
.contact-form-wrap {
  background: #FDF8F6;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(123, 45, 59, 0.08);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  color: #2A1F1F;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3D2B2B;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(123, 45, 59, 0.15);
  border-radius: 12px;
  background: #FAF0EE;
  font-size: 0.925rem;
  color: #3D2B2B;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D3B;
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A08080;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-privacy {
  font-size: 0.775rem;
  color: #A08080;
  text-align: center;
  margin-top: 1rem;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: #7B2D3B;
}
.form-success p {
  font-size: 0.95rem;
  color: #3D2B2B;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: #1E1616;
  color: rgba(253, 248, 246, 0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 248, 246, 0.08);
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C4838F;
  margin-bottom: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a,
.footer-contact a,
.footer-contact address,
.footer-contact p {
  font-size: 0.875rem;
  color: rgba(253, 248, 246, 0.6);
  transition: color 0.3s ease;
  line-height: 1.6;
}
.footer-links a:hover,
.footer-contact a:hover { color: #FDF8F6; }
.footer-contact address { font-style: normal; }
.footer-contact p { margin-bottom: 0.4rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 248, 246, 0.4);
}
.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 500px;
  text-align: right;
}

/* ── Scroll Reveal (progressive enhancement) ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-cards { max-width: 480px; }
  .about-grid,
  .approach-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images { max-width: 560px; }
  .services-grid,
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }
  .main-nav a:hover { background: rgba(123, 45, 59, 0.06); }
  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-heading { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .float-card--1 { grid-column: 1 / -1; }
  .float-card--2 { grid-column: 1 / 2; }
  .float-card--3 { grid-column: 2 / 3; }
  .float-card--4 { grid-column: 1 / -1; }

  .about, .services, .approach, .community, .contact { padding: 4rem 0; }
  .services-grid,
  .community-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 0; }

  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-cards { grid-template-columns: 1fr; }
  .float-card--2,
  .float-card--3 { grid-column: 1 / -1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}
