/* ============================================================
   Gandia Eventos Eventos & Azafatas — Estilos Principales
   Archivo: css/styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600&display=swap');

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

:root {
  --gold:       #A8813A;
  --gold-mid:   #C9A96E;
  --gold-light: #E8D5A8;
  --cream:      #FAF7F2;
  --cream2:     #F3EDE3;
  --cream3:     #EDE4D6;
  --text:       #1C1814;
  --text-mid:   #4A3F35;
  --muted:      #9A8E82;
  --white:      #FFFFFF;
}
a {
    color: #A8813A; /* Color deseado */
    text-decoration: none; /* Opcional: elimina el subrayado */
}
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR PERSONALIZADO ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(168,129,58,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

/* ── NAVEGACIÓN ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.over-slide { background: transparent; }
nav.scrolled {
  background: rgba(250,247,242,0.97);
  padding: 18px 60px;
  border-bottom: 1px solid rgba(168,129,58,0.15);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(28,24,20,0.07);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  transition: color 0.4s;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
nav.scrolled .nav-logo { color: var(--text); text-shadow: none; }
.nav-logo span { color: var(--gold-light); }
nav.scrolled .nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
nav.scrolled .nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--gold-mid);
  border: none; color: var(--white);
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  cursor: none; text-decoration: none;
  transition: background 0.3s;
}
nav.scrolled .nav-cta { background: var(--gold); }
.nav-cta:hover { background: var(--text) !important; }

/* ── HERO / CARRUSEL ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.carousel-track { position: absolute; inset: 0; display: flex; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transform: scale(1.05); transition: transform 7s ease;
}
.slide.active img { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,16,12,0.72) 0%, rgba(20,16,12,0.45) 50%, rgba(20,16,12,0.2) 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; padding: 0 60px;
}
.hero-text { max-width: 680px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 32px;
  opacity: 0; animation: fadeInUp 0.8s 0.4s forwards;
}
.hero-tag::before, .hero-tag::after {
  content: ''; width: 28px; height: 1px; background: var(--gold-light);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 7.5vw, 108px);
  font-weight: 300; line-height: 0.92; color: var(--white);
  opacity: 0; animation: fadeInUp 0.9s 0.6s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-sub {
  font-size: 12px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin: 28px 0 48px;
  opacity: 0; animation: fadeInUp 0.8s 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 20px; align-items: center;
  opacity: 0; animation: fadeInUp 0.8s 1s forwards;
}
.btn-hero {
  background: var(--gold-mid); color: var(--white);
  padding: 16px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: background 0.3s;
}
.btn-hero:hover { background: var(--gold); }
.btn-hero-ghost {
  color: rgba(255,255,255,0.8); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: none;
  display: flex; align-items: center; gap: 10px; transition: color 0.3s;
}
.btn-hero-ghost::after { content: '→'; font-size: 14px; transition: transform 0.3s; }
.btn-hero-ghost:hover { color: var(--white); }
.btn-hero-ghost:hover::after { transform: translateX(6px); }

/* Controles carrusel */
.carousel-controls {
  position: absolute; bottom: 48px; right: 60px; z-index: 20;
  display: flex; align-items: center; gap: 12px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.8);
  font-size: 16px; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { background: var(--gold-mid); border-color: var(--gold-mid); color: white; }
.carousel-dots {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 10px;
}
.dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.35); cursor: none; transition: all 0.4s;
}
.dot.active { width: 28px; background: var(--gold-light); }
.slide-counter {
  position: absolute; bottom: 56px; left: 60px; z-index: 20;
  font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.5);
  opacity: 0; animation: fadeIn 1s 1.3s forwards;
}
.slide-counter span { color: var(--gold-light); }
.hero-scroll {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center;
  padding-bottom: 28px; opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll-label {
  font-size: 8px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 10px;
}
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

/* Barra de estadísticas hero */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 15;
  background: rgba(250,247,242,0.95); backdrop-filter: blur(10px);
  display: flex; align-items: stretch;
  border-top: 2px solid var(--gold-mid);
}
.hero-stat { flex: 1; padding: 22px 40px; border-right: 1px solid rgba(168,129,58,0.15); display: flex; align-items: center; gap: 18px; }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.hero-stat-sub { font-size: 12px; color: var(--text-mid); margin-top: 2px; }

/* ── GENERAL SECCIONES ── */
section { padding: 100px 60px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300; line-height: 1.05; color: var(--text); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body { font-size: 14px; line-height: 1.9; color: var(--text-mid); max-width: 580px; }

/* ── TICKER ── */
.ticker-strip { background: var(--text); overflow: hidden; padding: 14px 0; }
.ticker-inner { display: flex; animation: ticker 22s linear infinite; white-space: nowrap; }
.ticker-inner span { font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); padding: 0 36px; }
.ticker-sep { color: var(--gold); }

/* ── NOSOTROS ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px;
  background: var(--cream2); border: 1px solid rgba(168,129,58,0.2); z-index: -1;
}
.about-badge {
  position: absolute; top: -16px; left: -16px;
  width: 96px; height: 96px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: white; line-height: 1; }
.about-badge-label { font-size: 7px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.about-pillars { margin-top: 40px; display: flex; flex-direction: column; gap: 1px; }
.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 20px; background: var(--cream);
  border-left: 3px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.pillar:hover { border-left-color: var(--gold); background: var(--cream2); }
.pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--gold-mid); line-height: 1; min-width: 34px; }
.pillar-title { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 5px; }
.pillar-text { font-size: 12px; color: var(--text-mid); line-height: 1.7; }

/* ── SERVICIOS ── */
.services { background: var(--cream2); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); padding: 48px 36px;
  border: 1px solid rgba(168,129,58,0.1);
  position: relative; overflow: hidden; cursor: none;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(168,129,58,0.12); transform: translateY(-4px); border-color: rgba(168,129,58,0.25); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-num { position: absolute; top: 24px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: rgba(168,129,58,0.08); line-height: 1; }
.service-icon { width: 46px; height: 46px; background: var(--cream2); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--gold); font-size: 18px; transition: background 0.3s; }
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.service-text { font-size: 13px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.service-link { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.service-link:hover { gap: 14px; }

/* ── MOBILIARIO── */
.services { background: var(--cream2); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); padding: 48px 36px;
  border: 1px solid rgba(168,129,58,0.1);
  position: relative; overflow: hidden; cursor: none;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover { box-shadow: 0 16px 48px rgba(168,129,58,0.12); transform: translateY(-4px); border-color: rgba(168,129,58,0.25); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-num { position: absolute; top: 24px; right: 28px; font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: rgba(168,129,58,0.08); line-height: 1; }
.service-icon { width: 46px; height: 46px; background: var(--cream2); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; color: var(--gold); font-size: 18px; transition: background 0.3s; }
.service-card:hover .service-icon { background: var(--gold); color: var(--white); }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 14px; }
.service-text { font-size: 13px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.service-link { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap 0.3s; }
.service-link:hover { gap: 14px; }
/* ── PERFILES ── */
.profiles { background: var(--cream); }
.profiles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.profile-card { overflow: hidden; cursor: none; }
.profile-img { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.profile-card:hover .profile-img img { transform: scale(1.06); }
.profile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,24,20,0.9) 0%, rgba(28,24,20,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  transform: translateY(30%); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
}
.profile-card:hover .profile-overlay { transform: translateY(0); opacity: 1; }
.profile-bottom { padding: 16px 0; border-top: 2px solid var(--cream3); margin-top: 12px; }
.profile-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; color: var(--white); margin-bottom: 4px; }
.profile-role { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.profile-role-dark { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.profile-label { font-size: 13px; font-weight: 400; color: var(--text); }

/* ── PROCESO ── */
.process { background: var(--text); }
.process .section-tag { color: var(--gold-light); }
.process .section-tag::before { background: var(--gold-light); }
.process .section-title { color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 72px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: rgba(201,169,110,0.2);
}
.process-step { padding: 0 36px; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px; border: 1px solid rgba(201,169,110,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; color: var(--gold-mid);
  background: var(--text); position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-num { background: var(--gold); color: var(--text); border-color: var(--gold); }
.step-title { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.step-text { font-size: 12px; color: rgba(250,247,242,0.5); line-height: 1.75; }

/* ── TESTIMONIOS ── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.testi-card { padding: 40px; border: 1px solid rgba(168,129,58,0.12); position: relative; transition: box-shadow 0.3s, border-color 0.3s; background: var(--cream); }
.testi-card:hover { box-shadow: 0 8px 32px rgba(168,129,58,0.1); border-color: rgba(168,129,58,0.25); }
.testi-card::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 100px; font-weight: 300; line-height: 0.6; color: rgba(168,129,58,0.12); position: absolute; top: 28px; right: 28px; }
.stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15px; font-style: italic; line-height: 1.8; color: var(--text-mid); font-family: 'Cormorant Garamond', serif; margin-bottom: 24px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.testi-name { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); }
.testi-company { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ── CONTACTO ── */
.contact { background: var(--cream2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group label { display: block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--white);
  border: 1px solid rgba(168,129,58,0.15); border-radius: 0;
  color: var(--text); font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 14px 16px; outline: none; transition: border-color 0.3s; appearance: none;
}
.form-group select option { background: white; color: var(--text); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: none; height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.btn-submit {
  background: var(--gold); color: var(--white); border: none; padding: 16px; width: 100%;
  font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; cursor: none; transition: background 0.3s;
}
.btn-submit:hover { background: var(--text); }
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-detail-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-detail-value { font-size: 15px; color: var(--text); }
.contact-detail-value a { color: var(--gold); text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }
.rrss-wrap { display: flex; gap: 12px; margin-top: 6px; }
.rrss-link { width: 36px; height: 36px; border: 1px solid rgba(168,129,58,0.25); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; text-decoration: none; transition: all 0.3s; font-weight: 500; }
.rrss-link:hover { background: var(--gold); border-color: var(--gold); color: white; }

/* ── FOOTER ── */
footer { background: var(--text); padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; letter-spacing: 3px; text-transform: uppercase; color: var(--white); }
.footer-logo span { color: var(--gold-mid); }
.footer-copy { font-size: 10px; color: rgba(250,247,242,0.35); letter-spacing: 1px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(250,247,242,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-mid); }

/* ── BOTÓN SECUNDARIO ── */
.btn-secondary {
  color: var(--text-mid); font-size: 10px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; cursor: none;
  display: flex; align-items: center; gap: 10px; transition: color 0.3s;
}
.btn-secondary::after { content: '→'; font-size: 14px; transition: transform 0.3s; }
.btn-secondary:hover { color: var(--gold); }
.btn-secondary:hover::after { transform: translateX(6px); }

/* ── ANIMACIONES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── REVEAL ON SCROLL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-stats-bar { display: none; }
  section { padding: 70px 24px; }
  .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .services-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .slide-counter, .carousel-controls { display: none; }
  .carousel-dots { bottom: 90px; }
}
