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

:root {
  --emerald-950: #052e16;
  --emerald-900: #14532d;
  --emerald-800: #166534;
  --emerald-700: #15803d;
  --emerald-600: #16a34a;
  --emerald-500: #22c55e;
  --cream-50: #fefdf8;
  --cream-100: #fdf9f0;
  --cream-200: #faf3e0;
  --cream-300: #f5e6c8;
  --text-dark: #0f1a12;
  --text-mid: #2d4a35;
  --text-light: #6b8f74;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

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

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

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

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

/* ── Navigation ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 253, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 83, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-fixed.scrolled {
  background: rgba(254, 253, 248, 0.95);
  box-shadow: 0 4px 30px rgba(5, 46, 22, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--emerald-900);
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  color: var(--emerald-700);
}

.nav-logo-text {
  letter-spacing: -0.02em;
}

.nav-cta {
  display: flex;
  align-items: center;
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--emerald-950);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.menu-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream-100);
  transition: color 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.menu-overlay.open .menu-link {
  transform: translateY(0);
  opacity: 1;
}

.menu-overlay.open .menu-link:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.open .menu-link:nth-child(2) { transition-delay: 0.15s; }
.menu-overlay.open .menu-link:nth-child(3) { transition-delay: 0.2s; }
.menu-overlay.open .menu-link:nth-child(4) { transition-delay: 0.25s; }
.menu-overlay.open .menu-link:nth-child(5) { transition-delay: 0.3s; }
.menu-overlay.open .menu-link:nth-child(6) { transition-delay: 0.35s; }

.menu-link:hover {
  color: var(--emerald-400);
}

.menu-link-cta {
  color: var(--emerald-300) !important;
  font-size: 1.3rem !important;
  margin-top: 16px;
  border: 1px solid var(--emerald-700);
  padding: 12px 32px;
  border-radius: 100px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald-700);
  color: var(--white);
  padding: 14px 32px;
}

.btn-primary:hover {
  background: var(--emerald-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 83, 45, 0.3);
}

.btn-nav {
  background: var(--emerald-800);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-nav:hover {
  background: var(--emerald-900);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream-50);
  padding: 14px 32px;
  border: 1.5px solid rgba(254, 253, 248, 0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--emerald-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 1.5px solid rgba(254, 253, 248, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--emerald-900);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1rem;
}

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

.btn-white:hover {
  background: var(--cream-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #052e16 0%, #14532d 25%, #166534 50%, #15803d 75%, #1a9b50 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  color: var(--cream-50);
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 253, 248, 0.12);
  border: 1px solid rgba(254, 253, 248, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cream-200);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

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

.hero-headline em {
  font-style: italic;
  color: var(--cream-200);
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

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

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

.hero-stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(250, 243, 224, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(254, 253, 248, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 243, 224, 0.5);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(254, 253, 248, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Section Shared ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--emerald-700);
  margin-bottom: 20px;
}

.section-label-line {
  width: 32px;
  height: 2px;
  background: var(--emerald-600);
  border-radius: 2px;
}

.section-label-light {
  color: var(--cream-300);
}

.section-label-line-light {
  background: var(--emerald-500);
}

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

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

.section-title em {
  font-style: italic;
  color: var(--emerald-600);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 540px;
  font-weight: 300;
}

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

.services .section-label,
.services .section-title,
.services .section-subtitle {
  text-align: center;
}

.services .section-subtitle {
  margin: 0 auto 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(5, 46, 22, 0.06);
  border: 1px solid rgba(20, 83, 45, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(5, 46, 22, 0.12);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5, 46, 22, 0.08));
}

.service-card-body {
  padding: 32px;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

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

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.service-card-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--emerald-500);
  border-radius: 50%;
  flex-shrink: 0;
}

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

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(5, 46, 22, 0.15);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(5, 46, 22, 0.2);
  border: 6px solid var(--cream-100);
}

.about-img-secondary img {
  width: 280px;
  height: 210px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--emerald-800);
  color: var(--cream-50);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(5, 46, 22, 0.3);
}

.about-badge svg {
  width: 18px;
  height: 18px;
  color: var(--emerald-300);
}

.about-content .section-label {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

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

.about-value {
  display: flex;
  gap: 16px;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 46, 22, 0.08);
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--emerald-700);
}

.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.about-value-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Process ── */
.process {
  padding: 120px 0;
  background: var(--emerald-950);
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(22, 101, 52, 0.4) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 20%, rgba(21, 128, 61, 0.2) 0%, transparent 50%);
}

.process .container {
  position: relative;
  z-index: 1;
}

.process .section-label {
  text-align: center;
}

.process .section-title {
  text-align: center;
  margin-bottom: 72px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.process-step {
  text-align: center;
  padding: 40px 32px;
  border-radius: 20px;
  background: rgba(254, 253, 248, 0.04);
  border: 1px solid rgba(254, 253, 248, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(254, 253, 248, 0.08);
  transform: translateY(-4px);
}

.process-step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(254, 253, 248, 0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.process-step-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.process-step-desc {
  font-size: 0.9375rem;
  color: rgba(250, 243, 224, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

.process-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(254, 253, 248, 0.2);
  padding-top: 48px;
}

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

.testimonials .section-label,
.testimonials .section-title {
  text-align: center;
}

.testimonials .section-title {
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(20, 83, 45, 0.06);
  box-shadow: 0 4px 20px rgba(5, 46, 22, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(5, 46, 22, 0.1);
}

.testimonial-card-quote {
  color: var(--emerald-300);
  margin-bottom: 20px;
}

.testimonial-card-quote svg {
  width: 40px;
  height: 40px;
}

.testimonial-card-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  font-weight: 300;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card-author-avatar svg {
  width: 20px;
  height: 20px;
  color: var(--emerald-700);
}

.testimonial-card-name {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

.testimonial-card-location {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-light);
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #166534 0%, #14532d 50%, #052e16 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(74, 222, 128, 0.15) 0%, transparent 60%);
}

.cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-headline em {
  font-style: italic;
  color: var(--cream-200);
}

.cta-text {
  font-size: 1.125rem;
  color: rgba(250, 243, 224, 0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 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 .section-label {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
}

.contact-text {
  font-size: 1.0625rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.contact-detail {
  display: flex;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 46, 22, 0.08);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--emerald-700);
}

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

.contact-detail-value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.contact-detail-value:hover {
  color: var(--emerald-700);
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 8px 40px rgba(5, 46, 22, 0.08);
  border: 1px solid rgba(20, 83, 45, 0.06);
}

.contact-form-header {
  margin-bottom: 32px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-weight: 300;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.contact-form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(20, 83, 45, 0.15);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream-50);
  transition: all 0.3s ease;
  outline: none;
}

.contact-form-input::placeholder {
  color: var(--text-light);
}

.contact-form-input:focus {
  border-color: var(--emerald-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

.contact-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='%23166534' 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 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  background: var(--emerald-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--emerald-700);
}

.form-success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Footer ── */
.footer {
  background: var(--emerald-950);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream-100);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--emerald-500);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(250, 243, 224, 0.5);
  line-height: 1.7;
  font-weight: 300;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.footer-list a {
  font-size: 0.9375rem;
  color: rgba(250, 243, 224, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

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

.footer-list a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(250, 243, 224, 0.35);
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-grid {
    gap: 60px;
  }

  .about-img-secondary {
    right: -20px;
    bottom: -20px;
  }

  .contact-grid {
    gap: 60px;
  }

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

@media (max-width: 768px) {
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 20px 80px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-divider {
    display: none;
  }

  .services {
    padding: 80px 0;
  }

  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-main img {
    height: 360px;
  }

  .about-img-secondary {
    right: 0;
    bottom: -20px;
  }

  .process {
    padding: 80px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .process-step-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .cta {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer {
    padding: 60px 0 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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