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

:root {
  --emerald-900: #042f26;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #047857;
  --emerald-500: #059669;
  --emerald-400: #10b981;
  --emerald-100: #d1fae5;
  --emerald-50: #ecfdf5;
  --cream-50: #fafaf5;
  --cream-100: #f5f5f0;
  --cream-200: #e8e8e0;
  --cream-300: #d4d4c8;
  --text-primary: #1a1a14;
  --text-secondary: #4a4a3e;
  --text-muted: #7a7a6e;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  background: transparent;
}

.nav--scrolled {
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  padding: 20px 0;
  transition: color 0.3s ease;
}

.nav--scrolled .nav__brand {
  color: var(--emerald-800);
}

.nav__brand-icon {
  color: var(--white);
  transition: color 0.3s ease;
}

.nav--scrolled .nav__brand-icon {
  color: var(--emerald-700);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-left: auto;
  padding: 28px 0;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  letter-spacing: 0.01em;
}

.nav--scrolled .nav__link {
  color: var(--text-secondary);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav--scrolled .nav__link:hover {
  color: var(--emerald-700);
  background: var(--emerald-50);
}

.nav__link--cta {
  background: var(--white);
  color: var(--emerald-800) !important;
  font-weight: 600;
  margin-left: 8px;
}

.nav--scrolled .nav__link--cta {
  background: var(--emerald-700);
  color: var(--white) !important;
}

.nav__link--cta:hover {
  background: var(--cream-100) !important;
  transform: translateY(-1px);
}

.nav--scrolled .nav__link--cta:hover {
  background: var(--emerald-600) !important;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav--scrolled .nav__toggle-line {
  background: var(--emerald-800);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--emerald-900) 0%,
    var(--emerald-700) 35%,
    var(--emerald-600) 60%,
    #0a8a6a 80%,
    var(--emerald-400) 100%
  );
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 20px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.hero__trust-item svg {
  opacity: 0.8;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--white);
  color: var(--emerald-800);
}

.btn--primary:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-heading--light {
  color: var(--white);
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
}

.section-lead--light {
  color: rgba(255,255,255,0.75);
}

/* ─── INTRO ─── */
.intro {
  padding: 120px 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.intro__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-200);
}

.intro__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 6px;
}

.intro__stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.intro__image {
  position: relative;
}

.intro__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--emerald-100);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: var(--emerald-800);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 75% 25%, white 1px, transparent 1px);
  background-size: 48px 48px;
}

.services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--emerald-300);
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* ─── PROCESS ─── */
.process {
  padding: 120px 0;
  background: var(--cream-50);
}

.process__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

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

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process__step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 800;
  color: var(--emerald-100);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.process__step-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process__step-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 280px;
}

.process__step-arrow {
  position: absolute;
  right: -16px;
  top: 56px;
  color: var(--emerald-300);
  display: flex;
  align-items: center;
}

/* ─── WHY ─── */
.why {
  padding: 120px 0;
  background: var(--cream-100);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.why__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.why__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why__item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
}

.why__item-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.why__item-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.why__image {
  position: relative;
}

.why__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.why__image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  background: var(--emerald-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ─── AREAS BANNER ─── */
.areas-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 100%);
  position: relative;
  overflow: hidden;
}

.areas-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 20% 80%, white 1px, transparent 1px);
  background-size: 56px 56px;
}

.areas-banner__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.areas-banner__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

/* ─── FAQ ─── */
.faq {
  padding: 120px 0;
  background: var(--cream-50);
}

.faq__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq__item--open {
  border-color: var(--emerald-200);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.25s ease;
}

.faq__question:hover {
  color: var(--emerald-700);
}

.faq__question-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--emerald-600);
  transition: transform 0.3s ease, background 0.25s ease;
}

.faq__item--open .faq__question-toggle {
  transform: rotate(45deg);
  background: var(--emerald-100);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item--open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--cream-100);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  border-radius: var(--radius-sm);
  color: var(--emerald-700);
}

.contact__detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact__detail-value a {
  color: var(--emerald-700);
  transition: color 0.2s ease;
}

.contact__detail-value a:hover {
  color: var(--emerald-500);
  text-decoration: underline;
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-200);
}

.form__group {
  margin-bottom: 22px;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--cream-50);
  border: 1.5px solid var(--cream-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__input:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
  background: var(--white);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a6e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__textarea {
  resize: vertical;
  min-height: 110px;
}

/* Success message */
.contact__success {
  text-align: center;
  padding: 44px 20px;
}

.contact__success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--emerald-100);
  border-radius: 50%;
  color: var(--emerald-600);
}

.contact__success-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact__success p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.contact__success a {
  color: var(--emerald-700);
  font-weight: 600;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--emerald-900);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer__title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer__links,
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer__contact a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .intro__grid,
  .why__grid,
  .contact__grid {
    gap: 48px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.12);
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__link {
    color: var(--text-secondary) !important;
    font-size: 1rem;
    padding: 12px 0;
    width: 100%;
  }

  .nav__link:hover {
    background: var(--emerald-50) !important;
    color: var(--emerald-700) !important;
  }

  .nav__link--cta {
    background: var(--emerald-700) !important;
    color: var(--white) !important;
    margin-left: 0;
    text-align: center;
    margin-top: 12px;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    padding: 100px 24px 60px;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    gap: 20px;
  }

  .intro__grid,
  .why__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro__image {
    order: -1;
  }

  .intro__image img,
  .why__image img {
    height: 360px;
  }

  .intro__image-accent,
  .why__image-accent {
    display: none;
  }

  .intro__stats {
    gap: 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__step-arrow {
    display: none;
  }

  .contact__form-wrap {
    padding: 28px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .intro,
  .services,
  .process,
  .why,
  .faq,
  .contact {
    padding: 80px 0;
  }

  .hero__headline {
    font-size: 2.25rem;
  }

  .intro__stats {
    flex-direction: column;
    gap: 20px;
  }

  .areas-banner {
    padding: 72px 0;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-overlay--visible {
  display: block;
}
