/* ═══════════════════════════════════════════════════════════════════
   AUREUS · Landing · styles.css
   Paleta old money basada en el modelo del Fundador (mayo 2026).
   Cohesión visual oscura uniforme · sin secciones claras chillonas.
   Mobile-first · optimizado para 3G cubano y Android gama media.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Fuentes auto-hospedadas (sin Google Fonts) ─── */
@font-face {
  font-family: 'Cormorant';
  src: url('fonts/cormorant-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('fonts/cormorant-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('fonts/cormorant-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('fonts/cormorant-300-italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('fonts/cormorant-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ─── Paleta old money AUREUS ─── */
:root {
  --gold:        #C4A35A;
  --gold-light:  #D4B870;
  --gold-dim:    #8A6F3A;

  --bg:          #090806;
  --bg-2:        #0F0D0A;
  --bg-3:        #151209;
  --surface:     #1A1710;
  --surface-2:   #221F15;

  --cream:       #EDE5D0;
  --cream-dim:   #A89E88;
  --muted:       #5A5448;

  --border:      rgba(196, 163, 90, 0.18);
  --border-dim:  rgba(196, 163, 90, 0.08);

  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'Jost', -apple-system, system-ui, sans-serif;

  --ease-gold: cubic-bezier(0.25, 0.1, 0.25, 1);

  --maxw: 1100px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, picture { display: block; max-width: 100%; height: auto; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ─── Textura de ruido sutil (cohesión visual de fondo) ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── Utilidades ─── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ─── Animaciones base ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes slideRight { to { left: 100%; } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Loading screen ─── */
#loading {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s, visibility 0s 0.6s;
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.4em;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light), var(--gold-dim));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.5s linear infinite;
}
.loading-line {
  width: 60px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
  position: relative;
}
.loading-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: slideRight 1.2s var(--ease-gold) infinite;
}

/* ─── Navegación ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(9, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-bottom-color: var(--border-dim);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 22px;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover { background: var(--gold-light); }

/* ─── Botones ─── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 16px 44px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  min-height: 48px;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-gold);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  padding: 14px 32px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.06);
}

.btn-form {
  width: 100%;
  text-align: center;
}

/* ─── 1 · Hero ─── */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(196, 163, 90, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(196, 163, 90, 0.03) 0%, transparent 60%);
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(196, 163, 90, 0.04) 49.5%, rgba(196, 163, 90, 0.04) 50.5%, transparent 50.5%),
    linear-gradient(45deg,  transparent 49.5%, rgba(196, 163, 90, 0.03) 49.5%, rgba(196, 163, 90, 0.03) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  z-index: 0;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeUp 1.2s var(--ease-gold) both;
}

.hero-imagotipo {
  display: block;
  margin: 0 auto 40px;
  max-width: min(80vw, 480px);
}
.hero-imagotipo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(196, 163, 90, 0.18));
}

.hero-location {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease-gold) 0.3s both;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeIn 1s var(--ease-gold) 0.4s both;
}
.hero-divider span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-divider i {
  display: block;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.hero-slogan {
  font-family: var(--font-display);
  font-size: clamp(18px, 3.4vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  animation: fadeUp 1s var(--ease-gold) 0.5s both;
}
.hero-slogan em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.btn-primary {
  animation: fadeUp 1s var(--ease-gold) 0.7s both;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s var(--ease-gold) 1.2s both;
  z-index: 1;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

/* ─── Ornamento ─── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 56px 24px;
  position: relative;
  z-index: 1;
}
.ornament.inner { padding: 0 0 32px; }
.ornament-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.ornament-line.r {
  background: linear-gradient(90deg, var(--border), transparent);
}
.ornament-icon {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-dim);
  font-style: italic;
}

/* ─── Section base ─── */
section {
  padding: 88px 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em {
  color: var(--gold);
  font-style: italic;
}
.section-body {
  font-size: 15px;
  color: var(--cream-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── 2 · Frases / reseñas ─── */
#frases { background: var(--bg-3); }
.frases-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.frases-carousel {
  position: relative;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.frase-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s var(--ease-gold);
}
.frase-item.active {
  opacity: 1;
  position: relative;
}
.frase-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 24px;
}
.frase-text::before { content: '\201C'; color: var(--gold); margin-right: 4px; }
.frase-text::after  { content: '\201D'; color: var(--gold); margin-left: 4px; }

.frases-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}
.frase-dot {
  width: 24px;
  height: 2px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
  border-radius: 0;
}
.frase-dot.active {
  background: var(--gold);
  width: 40px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  padding: 32px 28px;
}
.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-author {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── 3 · Identidad ─── */
#identidad { background: var(--bg); }
.identity-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .identity-layout { grid-template-columns: 1fr; gap: 48px; }
}

.identity-visual {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.identity-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0.35;
}
.identity-visual-placeholder svg { width: 60px; height: 60px; }
.identity-visual-placeholder span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.identity-visual::before,
.identity-visual::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold-dim);
  border-style: solid;
  z-index: 2;
}
.identity-visual::before {
  top: 12px; left: 12px;
  border-width: 1px 0 0 1px;
}
.identity-visual::after {
  bottom: 12px; right: 12px;
  border-width: 0 1px 1px 0;
}

.identity-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 28px;
}
.identity-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.identity-text {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}
.identity-text em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.identity-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.value-tag {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 6px 16px;
}

/* ─── 4 · Servicios ─── */
#servicios { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-dim);
  border: 1px solid var(--border-dim);
}
.service-card {
  background: var(--bg-3);
  padding: 40px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  width: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-gold);
}
.service-card:hover,
.service-card:focus-visible {
  background: var(--surface);
  outline: none;
}
.service-card:hover::before,
.service-card:focus-visible::before {
  transform: scaleX(1);
}
.service-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.service-desc {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.6;
  flex: 1;
}
.service-duration {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.service-arrow {
  font-size: 18px;
  color: var(--gold-dim);
  align-self: flex-end;
  transition: transform 0.3s, color 0.3s;
}
.service-card:hover .service-arrow {
  transform: translateX(6px);
  color: var(--gold);
}

/* ─── 5 · Galería (franja) ─── */
#galeria { background: var(--bg); padding-top: 88px; padding-bottom: 64px; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dim);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  margin-top: 16px;
}
@media (max-width: 640px) {
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
}
.gal-tile {
  aspect-ratio: 4 / 5;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.gal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
}
.gal-placeholder svg { width: 32px; height: 32px; }
.gal-placeholder span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ─── 6 · CTA grande ─── */
#cta { background: var(--bg-2); text-align: center; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto 48px;
}
.cta-actions {
  margin-bottom: 32px;
}
.cta-meta {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ─── 7 · Ubicación ─── */
#ubicacion { background: var(--bg-3); }
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .location-layout { grid-template-columns: 1fr; gap: 48px; }
}
.location-block {
  margin-bottom: 40px;
}
.location-block-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.location-block-text {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.8;
}
.location-block-text strong {
  color: var(--cream);
  font-weight: 400;
}
.address-fine {
  font-size: 13px;
  color: var(--muted);
}
.address-fine-placeholder {
  font-style: italic;
}
.horario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
}
.horario-day, .horario-hours {
  font-size: 14px;
  color: var(--cream-dim);
  padding: 4px 0;
  border-bottom: 1px solid var(--border-dim);
}
.horario-day {
  color: var(--cream);
  font-size: 13px;
}

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border-dim);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color 0.3s;
}
.map-placeholder:hover { border-color: var(--gold-dim); }
.map-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.map-placeholder span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Social ─── */
#social {
  background: var(--bg);
  padding: 64px 0;
}
.social-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.social-sep {
  font-size: 13px;
  color: var(--muted);
}
.social-empty {
  font-size: 13px;
  color: var(--cream-dim);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.02em;
  max-width: 420px;
  margin: 0 auto;
}
[hidden] {
  display: none !important;
}

/* ─── 8 · Únete al equipo (sección compacta) ─── */
#equipo {
  background: var(--bg-2);
  padding: 88px 0;
}
.join-compact {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.join-compact .section-label {
  margin-bottom: 12px;
}
.join-compact .section-title {
  margin-bottom: 24px;
}
.join-compact-text {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* ─── Form (usado dentro del modal-lg) ─── */
.join-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border-dim);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s;
  min-height: 48px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A6F3A' stroke-width='1.5'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}
.field input::placeholder {
  color: var(--muted);
  font-style: italic;
}

.form-feedback {
  font-size: 13px;
  text-align: center;
  min-height: 22px;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.form-feedback.success {
  color: var(--gold);
}
.form-feedback.error {
  color: #C77;
}

/* ─── 9 · Footer ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  padding: 48px 24px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-isotipo {
  display: block;
  margin: 0 auto 20px;
  max-width: 200px;
  opacity: 0.7;
}
.footer-text {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  line-height: 2;
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-dim);
  margin: 16px 0;
}
.footer-tagline em {
  color: var(--gold-dim);
}
.footer-copy {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 16px;
  opacity: 0.7;
}
.ftr-brand {
  cursor: default;
  user-select: none;
  color: var(--gold-dim);
  font-weight: 500;
}

/* ─── FAB flotante ─── */
.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
  transition: background 0.3s, transform 0.3s;
  border: 1px solid var(--gold);
}
.fab:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 8, 6, 0.88);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 520px;
  width: 100%;
  padding: 48px 36px 36px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s var(--ease-gold);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-lg {
  max-width: 580px;
  padding: 48px 32px 32px;
}
.modal-lg .modal-title {
  font-size: 36px;
  margin-bottom: 6px;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 20px;
  color: var(--muted);
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { color: var(--cream); }
.modal-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}
.modal-duration {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.modal-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.modal-desc {
  font-size: 14px;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.modal-includes {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
}
.modal-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 32px;
}
.modal-price-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.modal-price-cur {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ─── Toast ─── */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--cream);
  font-size: 13px;
  padding: 14px 28px;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 9999;
  max-width: calc(100% - 32px);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .modal { padding: 40px 24px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .social-layout { flex-direction: column; gap: 12px; }
  .ornament { padding: 40px 24px; }
}

@media (min-width: 1024px) {
  .hero-imagotipo { max-width: 520px; }
}

/* ─── Print ─── */
@media print {
  nav, .fab, .modal-overlay, .toast, #loading { display: none !important; }
  body { color: #000; background: #fff; }
  body::before { display: none; }
}
