/* ============================================
   E-Eshora CCC, Inc. — Brand Styles
   Palette: Burgundy #800020 · Blush #F4C2C2 · Cream #FFF8F0
   Fonts: Playfair Display + Inter
   ============================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a1a;
  background: #FFF8F0;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --burgundy: #800020;
  --burgundy-dark: #5c0017;
  --burgundy-light: #a02040;
  --blush: #F4C2C2;
  --blush-light: #FDE8E8;
  --blush-pale: #FFF0F0;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #9a9a9a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(128, 0, 32, 0.08);
  --shadow-lg: 0 12px 48px rgba(128, 0, 32, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--burgundy);
}
em { font-style: italic; color: var(--burgundy-light); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }

/* ── SECTION HEADERS ── */
.section-header { max-width: 680px; margin-bottom: 60px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.section-eyebrow-mark {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--burgundy);
  flex-shrink: 0;
}
.section-eyebrow--light { color: var(--white); }
.section-eyebrow-mark--light { background: var(--blush); }
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--blush); }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(128, 0, 32, 0.3);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128, 0, 32, 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-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--burgundy);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(128, 0, 32, 0.08);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow);
}
.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-size: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
}
.nav-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-logo-text { letter-spacing: -0.02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: 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: 50px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--burgundy-dark) !important;
  transform: translateY(-1px);
}

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--burgundy);
}
.mobile-menu-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 0;
  transition: var(--transition);
}
.mobile-menu-link:hover { color: var(--burgundy); }
.mobile-menu-cta {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  padding-bottom: 0;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--blush);
  top: -200px;
  right: -100px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--blush-light);
  bottom: -100px;
  left: -100px;
}
.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--burgundy);
  opacity: 0.08;
  top: 30%;
  left: 45%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.hero-shape-4 {
  width: 120px;
  height: 120px;
  background: var(--blush);
  opacity: 0.6;
  top: 20%;
  left: 10%;
  border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--burgundy);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero-headline em {
  color: var(--burgundy);
  font-style: italic;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
}

/* Hero image stack */
.hero-visual { position: relative; }
.hero-img-stack {
  position: relative;
  height: 600px;
}
.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-main {
  width: 380px;
  height: 480px;
  top: 0;
  right: 0;
  z-index: 2;
}
.hero-img-accent {
  width: 260px;
  height: 180px;
  bottom: 60px;
  left: 0;
  z-index: 3;
  border: 4px solid var(--white);
}
.hero-img-badge {
  width: 140px;
  height: 140px;
  bottom: 0;
  right: 60px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  width: 100%;
  height: 100%;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.hero-badge svg {
  width: 28px;
  height: 28px;
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blush);
}
.service-card--primary {
  background: var(--burgundy);
  color: var(--white);
  grid-column: span 1;
}
.service-card--primary h3,
.service-card--primary p { color: var(--white); }
.service-card--primary .service-card-icon svg { stroke: var(--blush); }
.service-card--blush {
  background: var(--blush-pale);
  border-color: var(--blush);
}
.service-card-accent {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.3;
  transition: var(--transition);
}
.service-card:hover .service-card-accent {
  transform: scale(1.5);
  opacity: 0.15;
}
.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-pale);
  border-radius: 14px;
  margin-bottom: 20px;
  color: var(--burgundy);
}
.service-card--primary .service-card-icon {
  background: rgba(255,255,255,0.15);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
.about {
  background: var(--cream);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 680px;
}
.about-img-main {
  width: 380px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 280px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  z-index: 3;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-geo-shape {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 200px;
  height: 200px;
  background: var(--burgundy);
  opacity: 0.06;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}
.about-content { max-width: 500px; }
.about-body {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.about-feature-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-pale);
  border-radius: 50%;
  color: var(--burgundy);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   APPROACH
   ══════════════════════════════════════ */
.approach {
  background: var(--burgundy);
  padding: 120px 0;
  overflow: hidden;
}
.approach-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.approach-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.approach-shape--burgundy {
  width: 500px;
  height: 500px;
  background: var(--burgundy-dark);
  top: -200px;
  left: -150px;
  opacity: 0.5;
}
.approach-shape--blush {
  width: 300px;
  height: 300px;
  background: var(--blush);
  bottom: -80px;
  right: 10%;
  opacity: 0.15;
}
.approach-shape--blush-alt {
  width: 180px;
  height: 180px;
  background: var(--blush);
  top: 10%;
  right: 30%;
  opacity: 0.1;
  border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
}
.approach-inner {
  position: relative;
  z-index: 2;
}
.approach-text {
  max-width: 560px;
  margin-bottom: 60px;
}
.approach-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: var(--transition);
}
.approach-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.approach-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.approach-step h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.approach-step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blush);
}
.testimonial-card--blush {
  background: var(--blush-pale);
  border-color: var(--blush);
}
.testimonial-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */
.cta-banner {
  background: var(--burgundy);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.cta-banner-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-shape {
  position: absolute;
  border-radius: 50%;
}
.cta-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--blush);
  opacity: 0.08;
  top: -100px;
  left: 5%;
}
.cta-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--blush);
  opacity: 0.06;
  bottom: -60px;
  right: 15%;
}
.cta-shape-3 {
  width: 100px;
  height: 100px;
  background: var(--white);
  opacity: 0.05;
  top: 20%;
  right: 5%;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { max-width: 520px; }
.cta-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-headline em { color: var(--blush); }
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-body {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  border-radius: 12px;
  color: var(--white);
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}
.contact-detail a:hover { color: var(--burgundy); }

/* Contact form */
.contact-form-wrap {
  position: relative;
}
.contact-form-bg-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--blush);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  top: -60px;
  right: -60px;
  pointer-events: none;
}
.contact-form {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush);
}
.contact-form-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #e8f5e9;
  border-radius: var(--radius);
  color: #2e7d32;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
}
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
}
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links strong {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-links a,
.footer-links span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal { font-size: 0.78rem; }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-text { max-width: 600px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 480px; }
  .about-img-main { width: 100%; height: 400px; }
  .about-img-float { width: 200px; height: 150px; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 72px; }
  .hero-inner { padding: 40px 24px; }
  .hero-headline { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--primary { grid-column: span 1; }
  .about-features { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-header { margin-bottom: 40px; }
}
