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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta crema / bordeaux */
  --bg:           #faf6f0;
  --bg-warm:      #f3ebe0;
  --bg-card:      #ffffff;
  --bordeaux:     #7a2030;
  --bordeaux-dk:  #5a1520;
  --rose:         #b05a6e;
  --rose-lt:      #d4909f;
  --gold:         #9a6840;
  --text:         #2a1a12;
  --text-mid:     #5a3d2e;
  --text-soft:    rgba(42,26,18,0.55);
  --border:       rgba(154,104,64,0.18);
  --border-rose:  rgba(176,90,110,0.15);

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;

  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 4rem;
  --gap-xl: 7rem;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}

/* grain sutil */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000; mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 var(--gap-md); }

/* EYEBROW — etiqueta pequeña sobre titles */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.8rem;
}
.eyebrow-light { color: rgba(245,237,227,0.7); }

.section-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
}

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 0.4rem; }

/* DIVIDER ornamental */
.ornament {
  text-align: center;
  color: var(--rose-lt);
  letter-spacing: 0.5em;
  font-size: 0.85rem;
  opacity: 0.5;
  padding: 1.5rem 0;
}

/* BOTÓN PRINCIPAL */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #faf6f0;
  background: var(--bordeaux);
  padding: 1rem 2.2rem;
  border-radius: var(--r-pill);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 4px 18px rgba(122,32,48,0.22);
}
.btn-cta:hover {
  background: var(--bordeaux-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122,32,48,0.32);
}
.btn-cta-large { padding: 1.15rem 2.8rem; font-size: 0.8rem; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }
