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

:root {
  --sand: #f7f3ee;
  --sand-dark: #ede7de;
  --warm-white: #fdfaf6;
  --parchment: #f0ebe3;
  --terracotta: #c8522a;
  --terracotta-light: #d96b42;
  --terracotta-dark: #a33f1e;
  --terracotta-soft: rgba(200, 82, 42, 0.08);
  --espresso: #1e1712;
  --brown-mid: #5a4a3a;
  --brown-light: #8a7060;
  --sage: #4a6741;
  --sage-light: #5c7d53;
  --border: #ddd5c8;
  --border-light: #ece6de;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(30,23,18,0.07);
  --shadow-md: 0 8px 32px rgba(30,23,18,0.10);
  --shadow-lg: 0 20px 60px rgba(30,23,18,0.14);
  --radius: 10px;
} 
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--espresso);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── LANGUAGE ── */
[data-lang="es"] { display: none; }
body.lang-en [data-lang="es"] { display: none; }
body.lang-en [data-lang="en"] { display: revert; }
body.lang-es [data-lang="en"] { display: none; }
body.lang-es [data-lang="es"] { display: revert; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5%;
  background: rgba(253,250,246,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, padding 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--terracotta); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile-menu.open { opacity: 1; pointer-events: all; }
.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a[aria-current="page"] { color: var(--terracotta); }

.lang-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--sand-dark);
  border-radius: 20px;
  padding: 0.2rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  width: 70px; height: 28px;
  flex-shrink: 0;
}
.lang-pill {
  position: absolute;
  top: 2px; left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: white;
  border-radius: 14px;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.lang-toggle.is-es .lang-pill { transform: translateX(100%); }
.lang-label {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 600;
  color: var(--brown-light);
  transition: color 0.2s;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.lang-toggle .lang-label-en { color: var(--terracotta); }
.lang-toggle.is-es .lang-label-en { color: var(--brown-light); }
.lang-toggle.is-es .lang-label-es { color: var(--terracotta); }

/* ── SHARED SECTION STYLES ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 6rem 5%; }
.section-label {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1.5px;
  background: var(--terracotta); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; line-height: 1.12;
  color: var(--espresso); letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-desc {
  font-size: 0.98rem; color: var(--brown-mid);
  line-height: 1.8; font-weight: 300; max-width: 480px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--terracotta); color: white;
  padding: 0.9rem 2.2rem; border-radius: 6px;
  text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,82,42,0.25);
}
.btn-outline {
  border: 1.5px solid var(--espresso); color: var(--espresso);
  padding: 0.9rem 2.2rem; border-radius: 6px;
  text-decoration: none; font-size: 0.88rem;
  font-weight: 500; letter-spacing: 0.05em;
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--espresso); color: var(--sand); transform: translateY(-2px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 0;
  overflow: hidden;
  background: var(--warm-white);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5% 5rem 8%;
  position: relative;
  z-index: 3;
  animation: fadeUp 0.9s ease both;
}
.hero-right {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-portrait {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--warm-white) 0%, transparent 20%);
  z-index: 2;
}
.hero-right-badge {
  position: absolute;
  bottom: 3.5rem; left: 2.5rem;
  z-index: 3;
  background: white;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem;
  max-width: 200px;
}
.hero-right-badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 600;
  color: var(--terracotta); line-height: 1; flex-shrink: 0;
}
.hero-right-badge-text {
  font-size: 0.76rem; color: var(--brown-mid);
  line-height: 1.45; font-weight: 400;
}
.hero-eyebrow {
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 24px; height: 1.5px;
  background: var(--terracotta);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 300; line-height: 1.08;
  color: var(--espresso); margin-bottom: 1.6rem;
  letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-subtitle {
  font-size: 1rem; color: var(--brown-mid);
  font-weight: 300; line-height: 1.75;
  margin-bottom: 2.8rem; max-width: 400px;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges { display: flex; flex-direction: column; gap: 0.65rem; }
.badge { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--brown-mid); font-weight: 400; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* ── TRUST ── */
.trust-section {
  background: var(--parchment);
  padding: 3.5rem 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { max-width: 1100px; margin: 0 auto; }
.trust-label {
  text-align: center;
  font-size: 0.71rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brown-light); margin-bottom: 2.5rem;
}
.trust-logos {
  display: flex; align-items: center;
  justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-logo-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  transition: transform 0.2s; cursor: default;
}
.trust-logo-card:hover { transform: translateY(-2px); }
.trust-logo-badge {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sage); background: var(--warm-white);
  box-shadow: var(--shadow-sm);
}
.trust-logo-name {
  font-size: 0.69rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--brown-light); text-align: center;
  max-width: 88px; line-height: 1.4;
}

/* ── HOW IT WORKS ── */
.process-section {
  background: var(--sand);
  padding: 5.5rem 5%;
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-label { justify-content: center; }
.process-header .section-title { text-align: center; }
.process-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1.5px;
  background: linear-gradient(to right, var(--border), var(--terracotta), var(--border));
}
.process-step { text-align: center; padding: 0 1.5rem; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--terracotta);
  margin: 0 auto 1.4rem; position: relative; z-index: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--espresso); margin-bottom: 0.6rem;
}
.process-step-desc {
  font-size: 0.88rem; color: var(--brown-mid);
  line-height: 1.7; font-weight: 300;
}

/* ── DOCUMENT TYPES ── */
.doctypes-section { background: var(--warm-white); padding: 5.5rem 5%; }
.doctypes-inner { max-width: 1100px; margin: 0 auto; }
.doctypes-header { text-align: center; margin-bottom: 3.5rem; }
.doctypes-header .section-label { justify-content: center; }
.doctypes-grid {
  display: flex; flex-wrap: wrap;
  gap: 0.65rem; justify-content: center; margin-bottom: 3rem;
}
.doctype-tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--sand); border: 1.5px solid var(--border);
  border-radius: 30px; padding: 0.5rem 1.1rem;
  font-size: 0.86rem; color: var(--espresso);
  font-weight: 400; transition: all 0.2s; cursor: default;
}
.doctype-tag:hover {
  background: var(--terracotta-soft);
  border-color: var(--terracotta); color: var(--terracotta-dark);
}
.doctype-tag-icon {
  width: 24px; height: 24px; background: var(--parchment);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 700;
  color: var(--brown-light); letter-spacing: 0.04em; flex-shrink: 0;
}
.lang-pairs { display: flex; justify-content: center; margin-top: 1rem; }
.lang-pair-card {
  display: inline-flex; align-items: center; gap: 1rem;
  background: var(--warm-white); border: 1.5px solid var(--border);
  border-radius: 60px; padding: 0.8rem 2rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--espresso); box-shadow: var(--shadow-sm);
}
.lang-flag {
  background: var(--terracotta-soft); color: var(--terracotta);
  border-radius: 4px; padding: 0.15rem 0.5rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
}
.lang-pair-arrow { color: var(--terracotta); font-size: 1.1rem; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--parchment);
  padding: 5.5rem 5%;
  border-top: 1px solid var(--border);
}
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { margin-bottom: 3.5rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testimonial-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--terracotta); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic;
  color: var(--espresso); line-height: 1.7;
  font-weight: 300; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.9rem;
  padding-top: 1rem; border-top: 1px solid var(--border-light);
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--terracotta-soft); color: var(--terracotta);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1.5px solid rgba(200,82,42,0.2);
}
.testimonial-name { font-size: 0.88rem; font-weight: 500; color: var(--espresso); }
.testimonial-meta { font-size: 0.76rem; color: var(--brown-light); font-weight: 400; }
.testimonial-source-tag {
  display: inline-block; font-size: 0.67rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--sage); background: rgba(74,103,65,0.09);
  border-radius: 3px; padding: 0.15rem 0.45rem; margin-top: 0.15rem;
}

/* ── SERVICES ── */
#services { background: var(--sand); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem;
  margin-bottom: 3rem; flex-wrap: wrap;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem;
}
.service-card {
  background: var(--warm-white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  box-shadow: var(--shadow-sm);
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--terracotta);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--terracotta-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; color: var(--terracotta);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.service-icon::before { content: attr(data-icon); }
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--espresso); margin-bottom: 0.7rem; line-height: 1.2;
}
.service-desc { font-size: 0.88rem; color: var(--brown-mid); line-height: 1.75; font-weight: 300; }

/* ── ABOUT ── */
#about { background: var(--warm-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 6rem; align-items: start;
}
.about-image-wrap { position: relative; padding-bottom: 2.5rem; }
.about-image {
  width: 100%; aspect-ratio: 3/4; border-radius: 14px;
  object-fit: cover; object-position: top;
  display: block; box-shadow: var(--shadow-lg);
}
.about-accent-box {
  position: absolute; bottom: 0; right: -2rem;
  background: var(--terracotta); color: white;
  padding: 1.4rem 1.8rem; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-accent-number {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 600; line-height: 1; display: block;
}
.about-accent-label {
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.08em; opacity: 0.88;
  margin-top: 0.3rem; display: block; text-transform: uppercase;
}
.about-text { padding-top: 0.5rem; }
.about-body { margin: 1.5rem 0 0.5rem; }
.about-body p {
  font-size: 1rem; color: var(--brown-mid);
  line-height: 1.85; font-weight: 300; margin-bottom: 1.1rem;
}
.about-pull-quote {
  border-left: 3px solid var(--terracotta);
  padding: 0.5rem 0 0.5rem 1.4rem; margin: 1.8rem 0;
}
.about-pull-quote p {
  font-family: var(--font-display);
  font-size: 1.22rem; font-style: italic;
  color: var(--espresso); line-height: 1.5; font-weight: 300; margin: 0;
}
.about-credentials { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.credential {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.88rem; color: var(--espresso); font-weight: 400;
  background: var(--sand); border: 1px solid var(--border-light);
  border-radius: 8px; padding: 0.85rem 1.1rem;
}
.credential-icon {
  width: 34px; height: 34px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ── QUOTE FORM ── */
#quote { background: var(--sand); }
.form-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.form-intro p { font-size: 0.95rem; color: var(--brown-mid); line-height: 1.8; font-weight: 300; margin-top: 1.5rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.7rem;
  margin-top: 2rem; font-size: 0.9rem; color: var(--espresso);
}
.contact-detail::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--terracotta); display: inline-block; flex-shrink: 0;
}
.contact-detail a { color: var(--terracotta); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

form { display: grid; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--espresso); margin-bottom: 0.45rem;
}
input, select, textarea {
  width: 100%; padding: 0.82rem 1rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.93rem;
  color: var(--espresso); background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(200,82,42,0.1);
}
input::placeholder, textarea::placeholder { color: var(--brown-light); }
textarea { resize: vertical; min-height: 110px; }
.file-upload-area {
  border: 2px dashed var(--border); border-radius: 8px;
  padding: 2rem 1.8rem; text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--warm-white); position: relative;
}
.file-upload-area:hover { border-color: var(--terracotta); background: #fdf5ef; }
.file-upload-area input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.file-upload-icon {
  width: 44px; height: 44px; border-radius: 10px;
  border: 1.5px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem; color: var(--terracotta);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; background: var(--sand);
}
.file-upload-icon::before { content: attr(data-icon); }
.file-upload-text { font-size: 0.85rem; color: var(--brown-mid); line-height: 1.5; }
.file-upload-text strong { color: var(--terracotta); }
.form-submit { margin-top: 0.5rem; }
.btn-submit {
  background: var(--terracotta); color: white; border: none;
  padding: 1rem 2.5rem; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.06em; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s; width: 100%;
}
.btn-submit:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,82,42,0.25); }
.form-note { font-size: 0.78rem; color: var(--brown-light); text-align: center; margin-top: 0.6rem; }

/* ── FOOTER ── */
footer {
  background: var(--espresso); color: rgba(247,243,238,0.5);
  padding: 3rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--sand); letter-spacing: 0.01em; }
.footer-logo span { color: var(--terracotta-light); }
footer p { font-size: 0.82rem; }
footer a { color: var(--terracotta-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── MOBILE STICKY CTA ── */
.mobile-cta-bar {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 150;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 0.9rem 5%;
  box-shadow: 0 -4px 20px rgba(30,23,18,0.1);
}
.mobile-cta-bar .btn-primary { width: 100%; text-align: center; display: block; font-size: 0.9rem; padding: 0.85rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 5% 4rem; }
  .hero-right { min-height: 55vw; height: 55vw; }
  .hero-right-overlay { background: linear-gradient(to bottom, var(--warm-white) 0%, transparent 30%); }
}
@media (max-width: 900px) {
  .about-grid, .form-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { max-width: 340px; }
  .about-accent-box { right: 0; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 640px) {
  #navbar { padding: 0.9rem 5%; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .trust-logos { gap: 1.4rem; }
  .hero-right { min-height: 60vw; height: 60vw; }
  .section-inner { padding: 4rem 5%; }
  .hero-right-badge { display: none; }
}
