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

:root {
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;
  --cream-50: #fdf8f0;
  --cream-100: #faf3e8;
  --cream-200: #f5e6cc;
  --cream-300: #edcf9f;
  --ink-900: #1a1a1a;
  --ink-700: #3d3d3d;
  --gold: #c9a84c;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Navigation ───────────────────────────────────────────── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 20px 0;
}

.nav-fixed.scrolled {
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(6, 95, 70, 0.08);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald-800);
  color: var(--cream-200);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition);
}

.nav-logo:hover .nav-logo-mark {
  background: var(--emerald-700);
  transform: rotate(-3deg);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream-50);
  letter-spacing: -0.01em;
  transition: color var(--transition);
}

.nav-fixed.scrolled .nav-logo-text {
  color: var(--ink-900);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(253, 248, 240, 0.8);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--cream-300);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--cream-50);
}

.nav-fixed.scrolled .nav-link {
  color: var(--ink-700);
}

.nav-fixed.scrolled .nav-link:hover {
  color: var(--emerald-800);
}

.nav-fixed.scrolled .nav-link::after {
  background: var(--emerald-800);
}

.nav-cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cream-50);
  background: var(--emerald-800);
  padding: 9px 20px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition);
}

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

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

.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: var(--cream-50);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-fixed.scrolled .nav-toggle-line {
  background: var(--ink-900);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 25%, #047857 50%, #065f46 75%, #022c22 100%);
  background-size: 400% 400%;
  animation: heroGradient 16s ease infinite;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 0%; }
  75% { background-position: 0% 100%; }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 20%, rgba(237, 207, 159, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream-50);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline .text-cream-300 {
  font-style: italic;
  font-weight: 600;
  color: var(--cream-300);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(253, 248, 240, 0.7);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
  font-weight: 300;
}

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

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

.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cream-200);
}

.hero-trust-label {
  font-size: 0.75rem;
  color: rgba(253, 248, 240, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(253, 248, 240, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253, 248, 240, 0.4);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 24px; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--cream-200);
  color: var(--emerald-950);
}

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

.btn-ghost {
  background: transparent;
  color: var(--cream-50);
  border: 1px solid rgba(253, 248, 240, 0.3);
}

.btn-ghost:hover {
  background: rgba(253, 248, 240, 0.08);
  border-color: rgba(253, 248, 240, 0.5);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.9375rem;
}

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

/* ── Section Shared ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--emerald-800);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 1.5px;
  background: var(--emerald-800);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.section-title .text-cream-300 {
  color: var(--cream-300);
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--ink-700);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

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

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-label {
  padding-left: 0;
}

.services-header .section-label::before {
  display: none;
}

.services-header .section-desc {
  margin: 0 auto;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-800), var(--emerald-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(6, 95, 70, 0.1);
  border-color: transparent;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream-50);
  border: 1px solid rgba(6, 95, 70, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-800);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--emerald-800);
  color: var(--cream-50);
  border-color: var(--emerald-800);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3125rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--emerald-800);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
}

/* ── About ────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: white;
}

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

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

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

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--emerald-800);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.08;
}

.about-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--emerald-800);
  color: var(--cream-50);
  padding: 24px 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 16px 48px rgba(6, 95, 70, 0.3);
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8125rem;
  color: rgba(253, 248, 240, 0.7);
  line-height: 1.4;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-text {
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(6, 95, 70, 0.1);
}

.about-signature-line {
  width: 48px;
  height: 2px;
  background: var(--emerald-800);
  flex-shrink: 0;
}

.about-signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink-900);
}

.about-signature-title {
  font-size: 0.8125rem;
  color: var(--ink-700);
  font-weight: 400;
  margin-top: 2px;
}

/* ── Approach ─────────────────────────────────────────────── */
.approach {
  padding: 120px 0;
  background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #047857 100%);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 800px 600px at 80% 20%, rgba(237, 207, 159, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.approach-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

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

.approach-header .section-label::before {
  background: var(--cream-300);
}

.approach-header .section-title {
  color: var(--cream-50);
}

.approach-header .section-title .text-cream-300 {
  color: var(--cream-300);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.approach-step {
  padding: 48px 36px;
  background: rgba(253, 248, 240, 0.04);
  border: 1px solid rgba(253, 248, 240, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.approach-step:hover {
  background: rgba(253, 248, 240, 0.08);
  border-color: rgba(253, 248, 240, 0.15);
  transform: translateY(-4px);
}

.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(253, 248, 240, 0.08);
  line-height: 1;
  margin-bottom: 20px;
}

.approach-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-50);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.approach-desc {
  font-size: 0.9375rem;
  color: rgba(253, 248, 240, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--cream-100);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 600px 400px at 10% 50%, rgba(6, 95, 70, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 90% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.0625rem;
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

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

/* ── Contact ──────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info .section-label {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 100%;
}

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

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-50);
  border: 1px solid rgba(6, 95, 70, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-800);
  flex-shrink: 0;
}

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

.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--emerald-800);
  transition: color var(--transition);
}

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

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition);
}

.contact-map img:hover {
  filter: grayscale(0%);
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--cream-50);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(6, 95, 70, 0.06);
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.contact-form-desc {
  font-size: 0.875rem;
  color: var(--ink-700);
  margin-bottom: 32px;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink-900);
  background: white;
  border: 1px solid rgba(6, 95, 70, 0.12);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input::placeholder {
  color: #b0b0b0;
}

.form-input:focus {
  border-color: var(--emerald-800);
  box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.08);
}

.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='%23065f46' 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: 120px;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

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

.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 0.9375rem;
  color: var(--ink-700);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--ink-900);
  color: var(--cream-50);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(253, 248, 240, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--emerald-800);
  color: var(--cream-200);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream-50);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(253, 248, 240, 0.5);
  line-height: 1.75;
  max-width: 320px;
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-300);
  margin-bottom: 20px;
}

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

.footer-col li a {
  font-size: 0.875rem;
  color: rgba(253, 248, 240, 0.5);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-col li a:hover {
  color: var(--cream-50);
}

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

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(253, 248, 240, 0.35);
  font-weight: 300;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(253, 248, 240, 0.25);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
}

/* ── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-layout {
    gap: 48px;
  }
  
  .contact-layout {
    gap: 48px;
  }
}

@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;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    color: var(--ink-900) !important;
    font-size: 1.125rem;
  }

  .nav-link::after {
    background: var(--emerald-800) !important;
  }

  .nav-cta {
    color: var(--cream-50) !important;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

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

  .hero-headline {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .hero-trust {
    gap: 20px;
  }

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

  .services {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
  }

  .about {
    padding: 80px 0;
  }

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

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

  .about-stat-card {
    left: 16px;
    bottom: -16px;
  }

  .about-image-accent {
    display: none;
  }

  .approach {
    padding: 80px 0;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .approach-step {
    padding: 32px 28px;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

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

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