/* ==========================================
   SELF-HOSTED VARIABLE FONTS (@font-face)
   ========================================== */

/* Inter Variable */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display Variable */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-variable.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display Variable Italic */
@font-face {
  font-family: 'Playfair Display';
  src: url('/fonts/playfair-display-variable-italic.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

/* ==========================================
   SABINO FORINA – DESIGN SYSTEM
   ========================================== */

/* --- VARIABILI --- */
:root {
  --cream: #f4f9ff;
  --cream-dark: #daeaf8;
  --dark: #0f2044;
  --dark-soft: #1a3260;
  --dark-light: #1e5689;
  --gold: #2876bc;
  --gold-light: #5aa8e8;
  --gold-pale: #daeeff;
  --teal: #2176b5;
  --teal-light: #4a9fd4;
  --gray: #5a6b80;
  --gray-light: #587088;
  --gray-text-safe: #46596E;
  --gold-on-dark: #5aa8e8;
  --footer-text-safe: #aab3c2;
  --white: #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow-md: 0 8px 32px rgba(26,26,46,0.1);
  --shadow-lg: 0 20px 60px rgba(26,26,46,0.14);
  --shadow-gold: 0 8px 32px rgba(58,143,212,0.25);

  --transition: 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: var(--transition);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- SELECTION --- */
::selection {
  background: rgba(58, 143, 212, 0.13);
  color: var(--dark);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(154,176,200,0.45); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* --- ANIMATIONS --- */
.reveal-fade, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(16px); }
.reveal-fade  { transform: translateY(6px); }
.reveal-left  { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }

.revealed {
  opacity: 1 !important;
  transform: translate(0,0) !important;
  will-change: auto;
}

/* --- SKIP LINK ACCESS BIILITÀ --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 20px;
}

/* --- TYPOGRAPHY --- */
.section-title, .hero-title {
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-light);
  background: var(--gold-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label.light {
  background: rgba(58,143,212,0.15);
  color: var(--gold-light);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light em { color: var(--gold-light); }
.section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 56px;
}
.section-desc.light { color: rgba(255,255,255,0.65); }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-left: auto; margin-right: auto; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 40px rgba(58,143,212,0.4);
  transform: translateY(-2px);
}
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(26,26,46,0.15);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

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

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(58,143,212,0.18);
}
.btn-ghost:focus-visible {
  outline: 3px solid var(--dark);
  box-shadow: 0 0 0 6px rgba(15,32,68,0.1);
}
.nav-link:focus-visible,
.service-link:focus-visible,
.faq-question:focus-visible,
.sede-cta:focus-visible,
.google-cta:focus-visible,
.contact-option.whatsapp:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: inherit;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(244, 249, 255, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(58,143,212,0.07), 0 4px 24px rgba(15,32,68,0.05);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}
.logo-sub {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover { color: var(--dark); background: rgba(15,32,68,0.05); }
.nav-link.active {
  color: var(--dark);
  background: rgba(15,32,68,0.05);
}
.nav-cta {
  background: transparent;
  color: var(--gold) !important;
  padding: 9px 20px;
  font-weight: 600;
  box-shadow: none;
}
.nav-cta:hover {
  background: rgba(58,143,212,0.07);
  color: var(--teal) !important;
  transform: translateY(-1px);
  box-shadow: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 16px; width: 100%; }
  .nav-cta { margin-top: 12px; }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  animation: blobFloat 12s ease-in-out infinite;
  will-change: transform;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,143,212,0.12), transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(33,118,181,0.08), transparent 70%);
  bottom: 100px; left: -150px;
  animation-delay: -4s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,143,212,0.06), transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -8s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}
.hero-content {
  flex: 1;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  letter-spacing: -0.03em;
}
.title-italic {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Hero Photo */
.hero-image {
  flex: 0 0 440px;
  max-width: 440px;
}
.hero-img-frame {
  position: relative;
  aspect-ratio: 3/4;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 8%, black 58%, transparent 92%),
    linear-gradient(to right, transparent 2%, black 18%, black 82%, transparent 98%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, black 8%, black 58%, transparent 92%),
    linear-gradient(to right, transparent 2%, black 18%, black 82%, transparent 98%);
  mask-composite: intersect;
}


/* Glass border removed — seamless fade effect active */

/* Photo placeholder */
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #daeaf8 0%, #c4dcf0 40%, #a8cae4 100%);
  position: relative;
}
.hero-photo-placeholder svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Real photo — replace placeholder div with img.hero-photo */
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Editorial name caption — overlays the bottom of the photo */
.hero-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 22px;
  background: linear-gradient(to top, rgba(10,25,55,0.55) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.caption-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.caption-role {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 5px;
}


/* ==========================================
   STUDIO & PERCORSO PROFESSIONALE
   ========================================== */
.studio {
  padding: 100px 0 120px;
  background: var(--cream);
  position: relative;
}
.studio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
/* Zig-zag qualifiche */
.studio .section-header-center {
  text-align: center;
  margin-bottom: 64px;
}
.qualifiche-rows { display: flex; flex-direction: column; }
.qualifica-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid rgba(15,32,68,0.07);
}
.qualifica-row:last-child { border-bottom: none; }
.qualifica-row.reverse .row-image { order: -1; }
.row-text { display: flex; flex-direction: column; gap: 12px; }
.row-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.row-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.row-meta-clean {
  font-size: 0.85rem;
  color: var(--gray-text-safe);
  line-height: 1.6;
  margin-top: 6px;
  letter-spacing: 0.01em;
}
.row-image { display: flex; justify-content: center; }
.diploma-frame {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}
.diploma-frame img {
  width: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  filter: grayscale(20%) contrast(95%) opacity(95%);
  transition: filter 0.3s ease;
}
.qualifica-row:hover .diploma-frame img { filter: none; }
@media (max-width: 960px) {
  .qualifica-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .qualifica-row .row-text { order: -1; }
  .qualifica-row.reverse .row-image { order: 0; }
}


.img-decoration {
  display: none;
}
.img-deco-1 {
  width: 200px; height: 200px;
  background: var(--gold-pale);
  bottom: -30px; right: -30px;
  animation: decoPulse 11s ease-in-out infinite;
}
.img-deco-2 {
  width: 100px; height: 100px;
  background: rgba(33,118,181,0.15);
  top: -20px; left: -20px;
  animation: decoPulse 14s ease-in-out infinite reverse;
}
@keyframes decoPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.07); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollFloat 3.2s ease-in-out infinite;
  opacity: 1;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: linePulse 3.2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-text-safe);
  writing-mode: horizontal-tb;
  opacity: 1;
}
@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes linePulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

@media (max-width: 900px) {
  .hero {
    padding: 110px 24px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-image {
    flex: none;
    width: 100%;
    max-width: 340px;
    align-self: center;
  }
  .hero-stats { gap: 20px; }
  .scroll-indicator { display: none; }
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text-col {
  display: flex;
  flex-direction: column;
}
.about-eyebrow {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  color: var(--gray-text-safe);
  margin-top: -4px;
  margin-bottom: 20px;
}
.about-title {
  margin-bottom: 28px;
}
.about-text {
  font-size: 1rem;
  line-height: 1.92;
  color: var(--gray);
  margin-bottom: 20px;
}
.about-text:last-child { margin-bottom: 0; }

.about-image-col {
  display: flex;
  align-items: stretch;
}
.about-studio-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(15,32,68,0.08),
    0 16px 48px rgba(15,32,68,0.12);
}
.about-studio-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-studio-img { height: 320px; }
}

/* ==========================================
   APPROACH
   ========================================== */
.approach {
  padding: 140px 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% 108%, rgba(58,143,212,0.07) 0%, transparent 60%),
    var(--dark);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 0;
}
.approach .container { position: relative; z-index: 1; }
.approach-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.approach-blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,143,212,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: blobFloat 15s ease-in-out infinite;
}
.approach-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.approach-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,143,212,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}
.approach-card:hover {
  border-color: rgba(58,143,212,0.28);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28), 0 0 0 1px rgba(58,143,212,0.06) inset;
}
.approach-card:hover::before { opacity: 1; }
.ac-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(58,143,212,0.15);
  line-height: 1;
  margin-bottom: 20px;
  position: absolute;
  top: 20px; right: 24px;
}
.ac-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.ac-icon svg { width: 100%; height: 100%; }
.approach-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.approach-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 1024px) {
  .approach-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .approach-cards { grid-template-columns: 1fr; }
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
  padding: 140px 0;
  background: var(--cream);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(15,32,68,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card-wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }
.service-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 20px;
  flex: 1;
}
.service-list {
  margin-bottom: 24px;
}
.service-list li {
  font-size: 0.82rem;
  color: var(--gray);
  padding: 6px 0;
  padding-left: 14px;
  border-bottom: 1px solid rgba(15,32,68,0.05);
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-link svg { width: 14px; height: 14px; }
.service-link:hover { gap: 10px; }

.service-wide-content { flex: 1; }
.techniques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.technique {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(15,32,68,0.06);
}
.technique-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { flex-direction: column; }
  .service-icon { margin-bottom: 0; }
}

/* ==========================================
   AREAS
   ========================================== */
.areas {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.areas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.areas-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15,32,68,0.07);
}
.area-group {
  background: var(--cream);
  padding: 36px 32px;
  transition: background var(--transition-fast);
}
.area-group:hover { background: var(--gold-pale); }
.area-group-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.area-group-icon svg { width: 100%; height: 100%; }
.area-group-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.area-group-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}
.area-group-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.area-micro {
  font-size: 0.72rem;
  color: var(--gray);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,32,68,0.07);
  padding: 4px 10px;
  border-radius: 100px;
}
@media (max-width: 960px) {
  .areas-editorial { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .areas-editorial { grid-template-columns: 1fr; }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 100px 0 80px;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(15,32,68,0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.t-quote {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 0.8;
  opacity: 0.35;
}
.t-stars {
  font-size: 0.75rem;
  color: #f5a623;
  letter-spacing: 3px;
}
.t-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: #435166;
  font-style: italic;
  font-weight: 450;
  flex: 1;
}
.t-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 10px 0;
  display: block;
}
@media (min-width: 769px) {
  .t-image {
    max-height: 140px;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .t-image {
    max-height: none;
    object-fit: contain;
  }
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,32,68,0.06);
}
.t-avatar {
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  flex-shrink: 0;
}
.t-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.t-date {
  font-size: 0.72rem;
  color: var(--gray-text-safe);
}
.google-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(15,32,68,0.1);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  margin: 0 auto;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}
.google-cta svg:last-child { width: 14px; height: 14px; color: var(--gray-light); }
.google-cta:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   LE SEDI
   ========================================== */
.sedi {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.sedi::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.sedi-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}
.sedi-intro .section-title { margin-bottom: 0; }
.sedi-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-top: 20px;
}
.sedi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}
.sede-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(218,234,248,0.8);
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(15,32,68,0.04),
    0 4px 16px rgba(15,32,68,0.06),
    0 16px 40px rgba(15,32,68,0.07);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sede-card:hover {
  box-shadow:
    0 1px 3px rgba(15,32,68,0.05),
    0 8px 24px rgba(15,32,68,0.09),
    0 24px 56px rgba(15,32,68,0.12);
  transform: translateY(-3px);
}
.sede-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px 16px;
}
.sede-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(58,143,212,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sede-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
}
.sede-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 3px;
  line-height: 1.2;
}
.sede-address {
  font-size: 0.76rem;
  color: var(--gray-text-safe);
  margin: 0;
  letter-spacing: 0.01em;
}
.sede-map {
  width: 100%;
  height: 170px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sede-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.02);
}
.sede-schedule {
  padding: 14px 22px;
  border-top: 1px solid rgba(218,234,248,0.8);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.schedule-day {
  font-size: 0.79rem;
  color: var(--gray);
  font-weight: 500;
}
.schedule-hours {
  font-size: 0.79rem;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.sede-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 22px;
  border-top: 1px solid rgba(218,234,248,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}
.sede-cta:hover {
  background: rgba(58,143,212,0.04);
  color: var(--dark);
}
.sede-cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sedi-grid { grid-template-columns: 1fr; gap: 24px; }
  .sedi-intro { margin-bottom: 48px; }
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 36px;
}
.contact-options { display: flex; flex-direction: column; gap: 12px; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.contact-option.whatsapp {
  cursor: pointer;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: transparent;
  color: var(--white);
}
.contact-option.whatsapp:hover { transform: translateX(6px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.contact-option.info:hover { border-color: var(--gold); transform: translateX(4px); }
.co-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-option.info .co-icon {
  background: var(--gold-pale);
  color: var(--gold);
}
.co-icon svg { width: 22px; height: 22px; }
.contact-option strong { display: block; font-size: 0.95rem; font-weight: 600; }
.contact-option span { font-size: 0.82rem; opacity: 0.75; margin-top: 2px; display: block; }
.contact-option.info strong { color: var(--dark); }
.contact-option.info span { color: var(--gray); }
.co-arrow { width: 18px; height: 18px; margin-left: auto; opacity: 0.7; }

/* Form */
.contact-form-col {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--cream-dark);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(58,143,212,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #596c80; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--gray);
}
.form-privacy input { width: auto; margin-top: 2px; accent-color: var(--gold); }
.form-privacy a { color: var(--gold); text-decoration: underline; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.1) 40%, rgba(58,143,212,0.1) 60%, transparent);
  pointer-events: none;
}
.faq-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 56px;
}
.faq-intro .section-title { margin-bottom: 0; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(218,234,248,0.9);
}
.faq-item:first-child {
  border-top: 1px solid rgba(218,234,248,0.9);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-icon svg { width: 18px; height: 18px; stroke: var(--gold); }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer.open {
  max-height: 600px;
}
.faq-answer p {
  padding: 0 4px 22px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--gray);
  margin: 0;
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.15);
  z-index: 900;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.whatsapp-float:hover {
  box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 3px 10px rgba(0,0,0,0.2);
  transform: scale(1.07);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.88);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 0.85rem;
  line-height: 1.5;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.cookie-btn-accept {
  background: var(--gold);
  color: #fff;
}
.cookie-btn-accept:hover { background: var(--dark-light); }
.cookie-btn-info {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-info:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: var(--footer-text-safe);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,143,212,0.3) 40%, rgba(58,143,212,0.3) 60%, transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-on-dark);
  border: 1px solid rgba(90,168,232,0.35);
  padding: 4px 12px;
  border-radius: 100px;
}
.footer h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav ul, .footer-services ul, .footer-contact ul {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav li a, .footer-services li {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--gold-on-dark); }
.footer-contact li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact svg { color: var(--gold-on-dark); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-on-dark); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==========================================
   FORM SUBMIT STATE
   ========================================== */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* ==========================================
   RESPONSIVE SPACING
   ========================================== */
@media (max-width: 768px) {
  .about, .studio, .approach, .services, .areas, .testimonials, .faq, .sedi, .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer { padding-top: 60px; }
}

/* ==========================================
   MOBILE MOTION
   ========================================== */
@media (max-width: 600px), (pointer: coarse) {
  .reveal-up  { transform: translateY(14px); }
  .reveal-fade { transform: translateY(5px); }
  .reveal-left { transform: translateX(-16px); }
  .reveal-right { transform: translateX(16px); }
  .img-deco-1, .img-deco-2 { animation: none; }
}

/* ==========================================
   UTILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


.form-note {
  margin-top: 8px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-text-safe);
}

.form-status {
  margin-top: 14px;
  min-height: 1.4em;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray);
  text-align: center;
}

.form-status.success { color: #1f7a4d; }
.form-status.error { color: #b64242; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ==========================================
   PREMIUM MOTION LAYER
   ========================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1400;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(58,143,212,0.1), var(--gold), rgba(90,168,232,0.82));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.92;
  pointer-events: none;
  will-change: transform;
}

.hero-img-frame,
.about-studio-frame,
.diploma-frame,
.service-card,
.area-group,
.testimonial-card,
.sede-card,
.contact-form {
  transform-style: preserve-3d;
}

.hero-image.revealed .hero-img-frame {
  animation: heroImageReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform, opacity;
}

.about-image-col.revealed .about-studio-frame,
.qualifica-row.revealed .diploma-frame {
  animation: imageMaskReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroImageReveal {
  0% {
    opacity: 0.001;
    transform: translateY(14px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes imageMaskReveal {
  0% {
    opacity: 0.001;
    clip-path: inset(10% 8% 10% 8% round 18px);
    transform: translateY(12px) scale(0.985);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round inherit);
    transform: translateY(0) scale(1);
  }
}

.btn,
.service-link,
.sede-cta,
.google-cta,
.contact-option.whatsapp {
  will-change: transform;
}

.faq-answer {
  max-height: none;
  height: 0;
  overflow: hidden;
  transition: height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer.open {
  max-height: none;
}

@media (pointer: fine) {
  .btn,
  .service-link,
  .sede-cta,
  .google-cta,
  .contact-option.whatsapp {
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    display: none;
  }
  .hero-image.revealed .hero-img-frame,
  .about-image-col.revealed .about-studio-frame,
  .qualifica-row.revealed .diploma-frame {
    animation: none;
    clip-path: none;
  }
  .faq-answer {
    transition: none;
  }
}


/* ==========================================
   PREDEPLOY COPY REFINEMENTS
   ========================================== */
.about-contact-label {
  margin-top: 28px;
  margin-bottom: 18px;
}

.service-card-wide {
  align-items: center;
  text-align: center;
}

.service-card-wide .service-icon {
  flex: 0 0 auto;
}

.service-wide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-wide .service-desc {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.techniques-grid {
  justify-content: center;
}

@media (max-width: 900px) {
  .service-card-wide {
    align-items: center;
  }
}
