/* ============================================================
   THE ARFID & ANXIETY GROUP — Stylesheet
   Design: Warm woodland naturalism, refined and calm
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --forest:      #25343F;
  --forest-deep: #25343F;
  --forest-mid:  #25343F;
  --sage:        #BFC9D1;
  --sage-light:  #EAEFEF;
  --sage-pale:   #EAEFEF;
  --amber:       #FF9B51;
  --amber-light: #FF9B51;
  --cream:       #EAEFEF;
  --warm-white:  #EAEFEF;
  --text:        #25343F;
  --text-mid:    #25343F;
  --text-muted:  #BFC9D1;
  --border:      rgba(37, 52, 63, 0.12);
  --shadow-xs:   0 1px 4px rgba(30, 51, 38, 0.06);
  --shadow-sm:   0 2px 12px rgba(30, 51, 38, 0.08);
  --shadow-md:   0 6px 24px rgba(30, 51, 38, 0.10);
  --shadow-lg:   0 16px 48px rgba(30, 51, 38, 0.12);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 138px; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest-deep);
}

p { color: var(--text-mid); font-size: 1.05rem; }

a { color: inherit; }

/* ── Focus Styles (Accessibility) ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #25343F;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 239, 239, 0.12);
  animation: slideDown 0.5s var(--ease) both;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 3rem 4px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  height: 110px;
  overflow: hidden;
  background: #25343F;
  border-radius: 12px;
  padding: 0 4px;
}

.logo-img {
  height: 130px;
  width: auto;
  display: block;
  margin: 0;
  transition: transform 0.3s var(--ease);
}

.logo-img:hover { transform: scale(1.04); }

/* Text fallback if logo not found */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.logo:hover { color: var(--amber); }

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

.nav-links a {
  text-decoration: none;
  color: #EAEFEF;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: #FF9B51; }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-schedule {
  background: #FF9B51;
  color: #25343F !important;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}

.btn-schedule:hover {
  background: #EAEFEF;
  color: #25343F !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-schedule::after { display: none !important; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}

.mobile-menu-toggle span {
  width: 24px; height: 1.5px;
  background: #EAEFEF;
  transition: all 0.3s var(--ease);
  display: block;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 138px);
  min-height: 480px;
  display: flex;
  align-items: center;
  margin-top: 138px;
  overflow: hidden;
  background: var(--warm-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('trees2.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.45;
  transform: scale(1.04);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.08); }
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250, 248, 244, 0.94) 0%,
    rgba(250, 248, 244, 0.82) 45%,
    rgba(250, 248, 244, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  width: 100%;
}

.hero-text {
  max-width: 560px;
  align-self: flex-start;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500;
  color: var(--forest-deep);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

.hero-title em {
  font-style: italic;
  color: var(--forest-mid);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.btn-primary {
  background: var(--forest);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--sage);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--forest);
  background: var(--sage-pale);
  transform: translateY(-2px);
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--forest-deep);
  text-decoration: none;
  z-index: 3;
  animation: fadeUp 0.8s var(--ease) 0.7s both;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.scroll-cue:hover { opacity: 1; }

.scroll-cue--inline {
  position: static;
  transform: none;
  margin: 0.4rem auto 0;
  width: fit-content;
  gap: 0.15rem;
}

.scroll-cue-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue-arrow {
  animation: scrollBounce 2s var(--ease) infinite;
}

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

/* Hero right column (description + buttons) */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  animation: fadeUp 0.9s var(--ease) 0.35s both;
}

.hero-right .hero-desc {
  margin-bottom: 2rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  width: 260px;
  text-align: center;
  box-sizing: border-box;
}

/* Hero logo display (right column) */
.hero-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

.hero-logo-display img {
  max-width: 380px;
  width: 100%;
  filter: drop-shadow(0 12px 32px rgba(30, 51, 38, 0.15));
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.9s var(--ease) both; }
.fade-in-delay-1 { animation: fadeUp 0.9s var(--ease) 0.15s both; }
.fade-in-delay-2 { animation: fadeUp 0.9s var(--ease) 0.3s both; }
.fade-in-delay-3 { animation: fadeUp 0.9s var(--ease) 0.45s both; }

.fade-in-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Divider ───────────────────────────────────────────────── */
.section-divider {
  border: none;
  height: 1px;
  background: var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Services / Cards Section ──────────────────────────────── */
.services {
  padding: 2.5rem 3rem 1rem;
  background: var(--cream);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
  color: var(--forest-deep);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.75rem 2.25rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--forest);
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  background: var(--sage-light);
  transform: scale(1.1);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 0.85rem;
}

.service-description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.service-card { cursor: pointer; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.25s, gap 0.25s;
}

.service-link:hover { color: var(--amber); gap: 0.65rem; }

.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-card:hover .service-link { color: var(--amber); gap: 0.65rem; }

/* Telehealth note in page hero */
.page-hero-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Back-to-home link (interior pages) */
.back-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest-deep);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s, gap 0.2s;
}

.back-link:hover {
  color: var(--forest);
  text-decoration: underline;
  gap: 0.55rem;
}

/* ── Page Hero (interior pages) ────────────────────────────── */
.page-hero {
  padding: 3rem 3rem 5.5rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  margin-top: 138px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background-image: url('trees2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Content Section ───────────────────────────────────────── */
.content-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 3rem 5.5rem;
}

.content-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--forest);
  margin: 3.5rem 0 1.25rem;
  line-height: 1.25;
}

.content-section p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.35rem;
}

.content-section strong { color: var(--forest-deep); font-weight: 500; }

/* Bio block: photo + text side-by-side on desktop, stacked on mobile */
.bio-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.bio-photo {
  width: 100%;
}

.bio-photo img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  display: block;
  filter: grayscale(0%);
}

.bio-credentials {
  color: #888;
  font-size: 0.95rem;
  margin-top: -0.5rem;
}

@media (max-width: 768px) {
  .bio-block {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .bio-photo {
    max-width: 280px;
    margin: 0 auto;
  }
}

.content-section ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.content-section ul li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* Highlight box */
.highlight-box {
  background: var(--sage-pale);
  border-left: 3px solid var(--sage);
  border-radius: 0 6px 6px 0;
  padding: 2rem 2.25rem;
  margin: 2.5rem 0;
}

.highlight-box h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--forest);
}

.highlight-box p { color: var(--text-mid); margin-bottom: 0; }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--forest-deep);
  color: #fff;
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('trees2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn-cta {
  background: var(--amber);
  color: #fff;
  padding: 0.95rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(196, 129, 58, 0.35);
  display: inline-block;
}

.btn-cta:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 129, 58, 0.45);
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.contact-form-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.contact-form-block > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 130, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a74' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

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

.btn-submit {
  background: var(--forest);
  color: #fff;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Contact sidebar */
.contact-sidebar { position: sticky; top: 100px; }

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.info-card h3 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
}

.info-card p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.info-card p + p { margin-top: 0.4rem; }

.crisis-card {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 1.75rem;
  margin-top: 1.25rem;
}

.crisis-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.65rem;
}

.crisis-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.crisis-card strong { color: var(--forest-deep); }

/* Form success message */
.success-message {
  background: var(--sage-pale);
  color: var(--forest);
  border: 1px solid var(--sage-light);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  animation: fadeUp 0.4s var(--ease) both;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.85);
  padding: 5rem 3rem 2.5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-col a:hover { color: #fff; }

.footer-col p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-right { text-align: center; }
  .hero-logo-display { order: -1; }
  .hero-logo-display img { max-width: 240px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .contact-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 1.5rem; height: 68px; }

  .nav-links {
    position: fixed;
    top: 68px; left: -100%;
    flex-direction: column;
    background: rgba(250,248,244,0.98);
    backdrop-filter: blur(12px);
    width: 100%;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    transition: left 0.35s var(--ease);
    gap: 1.5rem;
  }

  .nav-links.active { left: 0; }

  .btn-schedule { display: none; }
  .mobile-menu-toggle { display: flex; }

  .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

  .hero { min-height: auto; padding: 3rem 0; }
  .hero-content { padding: 4rem 1.5rem; }

  .page-hero { padding: 2rem 1.5rem 4rem; margin-top: 68px; }

  .services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .content-section { padding: 2rem 1.5rem 4rem; }

  .contact-wrapper { padding: 4rem 1.5rem; }

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

  .cta-section { padding: 5rem 1.5rem; }

  .footer { padding: 4rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}
