/* ═══════════════════════════════════════════
   LA GELTRÚ — Asesores Legales y Financieros
   Custom Styles
   ═══════════════════════════════════════════ */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-deep: #5C1F2C;
  --burgundy-light: #9A3D4F;
  --blush: #F4C2C2;
  --blush-light: #FDF0F0;
  --blush-mid: #FADADD;
  --cream: #FFFAF7;
  --cream-dark: #F5EDE8;
  --charcoal: #1A1A1A;
  --text: #2D2D2D;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(123,45,59,0.08);
  --shadow-md: 0 8px 30px rgba(123,45,59,0.12);
  --shadow-lg: 0 20px 60px rgba(123,45,59,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --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(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--charcoal);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123,45,59,0.3);
}
.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,45,59,0.4);
}

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

.btn-white {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

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

/* ═══════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,250,247,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255,250,247,0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--burgundy);
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nav-logo-text { transition: color var(--transition); }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--burgundy) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--burgundy-deep) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush-mid) 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.12;
}

.shape-circle-1 {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--burgundy);
  top: -150px;
  right: -100px;
}

.shape-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--blush);
  bottom: 10%;
  left: -80px;
}

.shape-rect-1 {
  width: 200px;
  height: 200px;
  background: var(--burgundy);
  top: 20%;
  left: 5%;
  border-radius: var(--radius-lg);
  transform: rotate(15deg);
  opacity: 0.08;
}

.shape-diamond {
  width: 120px;
  height: 120px;
  background: var(--blush);
  top: 30%;
  right: 15%;
  border-radius: var(--radius-sm);
  transform: rotate(45deg);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid var(--burgundy);
  opacity: 0.06;
  bottom: 20%;
  right: 5%;
}

.shape-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--burgundy) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.15;
  bottom: 30%;
  left: 10%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(123,45,59,0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.hero-title-accent {
  color: var(--burgundy);
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--blush);
  z-index: -1;
  border-radius: 4px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Floating Stat Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123,45,59,0.06);
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(40px);
  animation: slideIn 0.6s forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }

.stat-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg);
}

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card--1 .stat-card-icon { background: rgba(123,45,59,0.1); color: var(--burgundy); }
.stat-card--2 .stat-card-icon { background: rgba(244,194,194,0.5); color: var(--burgundy); }
.stat-card--3 .stat-card-icon { background: rgba(123,45,59,0.06); color: var(--burgundy); }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  color: var(--cream);
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(123,45,59,0.06);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.service-card-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--blush-light);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
  opacity: 0.5;
  transition: all var(--transition);
}

.service-card:hover .service-card-accent {
  transform: scale(1.5);
  opacity: 0.3;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--blush-light);
  color: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--burgundy);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

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

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

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

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

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

.about-visual { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--burgundy);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.3;
}

.about-geo {
  position: absolute;
  z-index: -1;
}

.geo-square {
  width: 120px;
  height: 120px;
  background: var(--burgundy);
  opacity: 0.08;
  border-radius: var(--radius-md);
  top: -30px;
  right: -30px;
  transform: rotate(10deg);
}

.geo-circle {
  width: 80px;
  height: 80px;
  background: var(--blush);
  opacity: 0.5;
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
}

.about-content .section-title { margin-bottom: 24px; }

.about-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

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

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--blush-light);
  color: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.value-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   TEAM
   ═══════════════════════════════════════════ */
.team {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.team::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.team .section-tag { background: rgba(255,255,255,0.15); color: var(--blush); }
.team .section-title { color: var(--white); }
.team .section-subtitle { color: rgba(255,255,255,0.7); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.team-card {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.team-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92,31,44,0.6) 0%, transparent 50%);
}

.team-card-info {
  padding: 24px 28px 28px;
}

.team-card-info h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.team-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blush);
  margin-bottom: 12px;
}

.team-card-info p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(123,45,59,0.06);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  color: var(--blush);
  margin-bottom: 20px;
  opacity: 0.8;
}

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

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

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--blush-light);
  color: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  opacity: 0.08;
  background: var(--white);
}

.cta-circle-1 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -150px;
  left: -100px;
}

.cta-circle-2 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  bottom: -80px;
  right: 10%;
}

.cta-rect {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  top: 20%;
  right: 5%;
  transform: rotate(20deg);
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-accent {
  color: var(--blush);
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

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

.contact-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  color: var(--burgundy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--burgundy); }

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(123,45,59,0.06);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(123,45,59,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}

.form-group textarea { resize: vertical; }

.form-legal {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  cursor: pointer;
}

.checkbox-label input { margin-top: 3px; flex-shrink: 0; }
.checkbox-label a { color: var(--burgundy); text-decoration: underline; }

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

.form-success svg {
  color: var(--burgundy);
  margin: 0 auto 16px;
}

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

/* ═══════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════ */
.map-section {
  background: var(--cream);
}

.map-section iframe {
  display: block;
  width: 100%;
  filter: saturate(0.8) contrast(1.05);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

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

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo-mark { background: var(--burgundy); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-links strong,
.footer-legal strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a,
.footer-legal a {
  display: block;
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover { color: var(--blush); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--blush); }

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

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

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 200px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,250,247,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-cards { flex-direction: column; }
  .stat-card { animation: none; opacity: 1; transform: none; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form-wrapper { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
