/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F2EC;
  --eggshell: #EDE8DF;
  --taupe: #C8BBA8;
  --taupe-dark: #9E8E7A;
  --black: #111110;
  --black-soft: #1E1D1B;
  --text: #2A2825;
  --text-muted: #6B6459;
  --white: #FAFAF8;
  --gold: #B8A882;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --nav-h: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(245, 242, 236, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 187, 168, 0.3);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(17,17,16,0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1.25rem;
  }
  .logo-text {
    max-width: 180px;
  }
  .logo-box {
    font-size: 14px;
    padding: 4px 8px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .logo-sub {
    font-size: 7px;
    letter-spacing: 0.2em;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 3px;
}

.logo-box {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 8px 16px;
  white-space: nowrap;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: var(--black);
  text-align: center;
  white-space: nowrap;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 1.5rem;
}

.footer-logo-box {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cream);
  border: 1.5px solid var(--cream);
  padding: 5px 10px;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(245,242,236,0.6);
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--black); }

.nav-cta {
  background: var(--black) !important;
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--black-soft) !important;
  color: var(--cream) !important;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184, 168, 130, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200, 187, 168, 0.2) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 1.5rem;
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--taupe-dark), transparent);
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-dark {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--black-soft);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}

.btn-light:hover {
  background: var(--eggshell);
}

.btn-outline-dark {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,242,236,0.4);
}

.btn-outline-dark:hover {
  border-color: var(--cream);
  background: rgba(245,242,236,0.1);
}

.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-lg { padding: 18px 40px; font-size: 13px; }

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 1rem;
}

.section-tag.light { color: var(--taupe); }

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header.light h2,
.section-header.light p { color: var(--cream); }
.section-header.light .section-tag { color: var(--taupe); }

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

/* ========== BACKGROUNDS ========== */
.bg-dark { background: var(--black-soft); }
.bg-taupe { background: var(--eggshell); }

/* ========== INTRO ========== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 1rem;
  transition: gap var(--transition);
}

.link-arrow:hover { gap: 1rem; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--taupe);
  border: 1px solid var(--taupe);
}

.stat-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--black);
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,242,236,0.1);
  border: 1px solid rgba(245,242,236,0.1);
}

.service-card {
  background: var(--black-soft);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
  cursor: pointer;
}

.service-card:hover {
  background: #2a2825;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.6);
  line-height: 1.6;
}

.card-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: auto;
  transition: color var(--transition);
}

.service-card:hover .card-link { color: var(--cream); }

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ========== APPROACH ========== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.approach-item { position: relative; }

.approach-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.approach-item h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.approach-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border: 1px solid var(--taupe);
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  display: block;
}

.testimonial-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========== CTA BAND ========== */
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.cta-band-inner p {
  color: var(--taupe);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,242,236,0.1);
}



.footer-brand p {
  color: rgba(245,242,236,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-nav h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-nav ul li + li { margin-top: 0.75rem; }

.footer-nav a {
  color: rgba(245,242,236,0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--cream); }

.footer-contact h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-contact .btn + .btn { margin-top: 0.75rem; display: block; text-align: center; }

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

.footer-bottom p {
  color: rgba(245,242,236,0.3);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ========== HERO VIDEO ========== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.55;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(245,242,236,0.72) 45%, rgba(245,242,236,0.1) 100%),
    linear-gradient(to top, rgba(245,242,236,0.5) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-scroll-indicator { z-index: 3; }

/* ========== INTERIOR PAGE HERO ========== */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--eggshell);
  border-bottom: 1px solid var(--taupe);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 560px;
}

/* ========== SERVICES PAGE ========== */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--taupe);
}

.service-list-item {
  background: var(--cream);
  padding: 3rem 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: background var(--transition);
}

.service-list-item:hover { background: var(--eggshell); }

.service-list-icon {
  width: 48px;
  height: 48px;
  color: var(--taupe-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.service-list-icon svg { width: 100%; height: 100%; }

.service-list-text h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-list-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ========== INDIVIDUAL SERVICE PAGE ========== */
.service-detail {
  padding: 5rem 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.service-detail-content h2:first-child { margin-top: 0; }

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.service-detail-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-detail-content ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(200,187,168,0.3);
}

.service-detail-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--taupe-dark);
}

.sidebar {
  background: var(--eggshell);
  border: 1px solid var(--taupe);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.sidebar h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.sidebar .btn { display: block; text-align: center; margin-bottom: 1rem; }

.sidebar-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ========== TEAM PAGE ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  border: 1px solid var(--taupe);
}

.team-photo {
  aspect-ratio: 3/4;
  background: var(--eggshell);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.team-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.team-info .title {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 1rem;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== FAQ PAGE ========== */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--taupe);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
}

.faq-question span.icon {
  font-size: 1.5rem;
  color: var(--taupe-dark);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-question span.icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1.75rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--eggshell);
  border: 1px solid var(--taupe);
  padding: 12px 16px;
  border-radius: 2px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

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

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

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-details { list-style: none; }
.contact-details li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--taupe);
  display: flex;
  gap: 1rem;
}

.contact-details .detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  min-width: 80px;
  padding-top: 2px;
}

.contact-details .detail-value {
  font-size: 0.95rem;
  color: var(--text);
}

/* ========== INSURANCE PAGE ========== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.insurance-card {
  background: var(--eggshell);
  border: 1px solid var(--taupe);
  padding: 2rem;
}

.insurance-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.insurance-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.pricing-table th {
  background: var(--black);
  color: var(--cream);
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--taupe);
  font-size: 0.95rem;
  color: var(--text);
}

.pricing-table tr:nth-child(even) td { background: var(--eggshell); }

/* ========== PAGE FADE IN ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--taupe);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
}

a.practice-area-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(200,187,168,0.4);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
a.practice-area-item:hover { color: var(--taupe-dark); }
a.practice-area-item::after { content: "→"; color: var(--taupe-dark); font-size: 0.9rem; }

/* ========== NAV DROPDOWNS ========== */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--taupe);
  min-width: 240px;
  z-index: 200;
  padding: 0.75rem 0 0.5rem;
  /* invisible top padding acts as a hover bridge */
  margin-top: 0;
}

/* Bridge gap between trigger and dropdown with invisible pseudo-element */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

/* Keep dropdown open when cursor is inside it */
.dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.dropdown li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.dropdown li a:hover {
  background: var(--eggshell);
  color: var(--black) !important;
}


/* ========== FOOTER SOCIAL BAR ========== */
.footer-social-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(245,242,236,0.08);
  border-bottom: 1px solid rgba(245,242,236,0.08);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.footer-social-bar span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.4);
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,242,236,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,242,236,0.6);
  transition: all var(--transition);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(245,242,236,0.08);
}

.footer-contact-info {
  margin-top: 1rem;
}

.footer-contact-info p {
  font-size: 0.85rem;
  color: rgba(245,242,236,0.6);
  margin-bottom: 0.25rem;
}




/* ========== MOBILE LOGO ========== */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1rem;
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .logo-box {
    font-size: 13px;
    padding: 4px 8px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .logo-sub {
    font-size: 7px;
    letter-spacing: 0.2em;
  }
}
