/* ==========================================================================
   THE CLUB — Design System
   Fuente: Manual de Marca (paleta, tipografía, estilo fotográfico)
   ========================================================================== */

@font-face {
  font-family: 'Michelia';
  src: url('../fonts/Michelia-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta — Manual de Marca */
  --wine: #5C1A22;
  --wine-soft: #7A3941;
  --rose: #B07A7F;
  --rose-light: #CAA7A9;
  --rose-pale: #E5D3D4;
  --taupe: #8C887C;
  --taupe-light: #A3A096;
  --taupe-pale: #D1CFCB;
  --cream-deep: #F0EDE7;
  --cream: #F5F3EF;
  --cream-light: #F8F6F3;
  --cream-lightest: #FCFBFA;
  --ink: #2E2A27;
  --ink-soft: #63594F;
  --white: #FFFFFF;

  /* Tipografía */
  --font-display: 'Fraunces', 'Cormorant Garamond', serif;
  --font-body: 'Jost', 'Poppins', sans-serif;

  --container: 1280px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream-lightest);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--wine);
  margin: 0;
  letter-spacing: 0.015em;
}

p { line-height: 1.75; color: var(--ink-soft); font-weight: 300; }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 400;
  display: block;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--rose); }
.giftcards .section-title em,
.instagram-section .section-title em { color: var(--rose-light); }

.section-lede {
  max-width: 620px;
  font-size: 1.05rem;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section--tight { padding: 90px 0; }

.section--cream { background: var(--cream); }
.section--deep { background: var(--cream-deep); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Rose divider — símbolo de la marca */
.rose-divider {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}
.rose-divider img {
  width: 34px;
  height: 34px;
  opacity: 0.55;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--primary {
  background: var(--wine);
  color: var(--cream-lightest);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 1px 0 rgba(0,0,0,0.1), 0 10px 20px -12px rgba(46,10,14,0.55);
}
.btn--primary:hover {
  background: var(--wine-soft);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 16px 30px -12px rgba(123, 34, 41, 0.5);
}
.btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 4px 10px -6px rgba(46,10,14,0.5);
}
.btn--ghost {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}
.btn--ghost:hover {
  background: var(--wine);
  color: var(--cream-lightest);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -12px rgba(46,10,14,0.4);
}
.btn--ghost:active { transform: translateY(1px); }
.btn--light {
  background: var(--cream-lightest);
  color: var(--wine);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 20px -12px rgba(20,14,13,0.3);
}
.btn--light:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 16px 28px -12px rgba(20,14,13,0.32);
}
.btn--light:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 4px 10px -6px rgba(20,14,13,0.3);
}
.btn--wa::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3Cpath d='M12.004 2C6.486 2 2 6.486 2 12.004c0 1.874.52 3.633 1.42 5.13L2 22l4.988-1.397a9.977 9.977 0 0 0 5.016 1.35C17.518 21.953 22 17.467 22 11.95 22 6.432 17.518 2 12.004 2zm0 18.15a8.14 8.14 0 0 1-4.16-1.14l-.298-.177-2.96.829.836-2.884-.194-.297a8.15 8.15 0 0 1-1.244-4.33c0-4.51 3.674-8.18 8.196-8.18 4.512 0 8.18 3.67 8.18 8.19 0 4.52-3.668 8.19-8.356 8.19z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================= HEADER ============================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 30px -20px rgba(46, 42, 39, 0.35);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img { height: 34px; width: auto; transition: filter 0.4s var(--ease); }
.site-header:not(.is-scrolled) .site-logo img.logo-dark { display: none; }
.site-header.is-scrolled .site-logo img.logo-light { display: none; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
}
.site-header:not(.is-scrolled) .nav-links a { color: var(--cream-lightest); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { padding: 12px 24px; font-size: 0.72rem; }

.nav-toggle { display: none; }
body.nav-open .site-header .nav-toggle { visibility: hidden; }

/* ============================= HERO ============================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,13,0.3) 0%, rgba(20,14,13,0.4) 30%, rgba(15,10,9,0.72) 62%, rgba(12,8,7,0.95) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 32px 100px;
  color: var(--cream-lightest);
}
.hero-content .container { max-width: 780px; margin: 0; padding: 0; }
.hero-slogan { height: 46px; width: auto; margin-bottom: 26px; opacity: 0.95; }
.hero-content h1 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--cream-lightest);
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  line-height: 1.12;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(15,10,9,0.35);
}
.hero-content h1 em {
  font-style: italic;
  color: inherit;
}
.hero-content p {
  color: rgba(253,251,248,0.86);
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(253,251,248,0.7);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-hint::after {
  content: '';
  width: 1px; height: 40px;
  background: rgba(253,251,248,0.5);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================= ABOUT / QUIENES SOMOS ============================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(46, 32, 30, 0.35);
}
.about-media .rose-tag {
  position: absolute;
  bottom: -32px; left: -32px;
  width: 96px; height: 96px;
  background: var(--cream-lightest);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px -18px rgba(46,32,30,0.3);
}
.about-media .rose-tag img { width: 46px; height: 46px; }
.about-values {
  list-style: none;
  margin: 34px 0 0; padding: 0;
  display: grid;
  gap: 18px;
}
.about-values li {
  padding-left: 26px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.about-values li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border: 1px solid var(--rose);
  border-radius: 50%;
}
.about-values strong { color: var(--wine); font-weight: 500; }

/* ============================= NUESTRO ESTUDIO (galería) ============================= */
.studio-gallery--wide {
  margin-top: 54px;
}
.studio-gallery--wide picture { display: block; }
.studio-gallery--wide img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(46, 32, 30, 0.35);
}
.studio-gallery--row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.studio-gallery--row + .studio-gallery--row { margin-top: 24px; }
.studio-gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(46, 32, 30, 0.35);
  transition: transform 0.6s var(--ease);
}
.studio-gallery-item:hover img { transform: scale(1.02); }

/* ============================= MANIFIESTO ============================= */
.manifesto { background: var(--cream-deep); }
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.45;
  color: var(--wine);
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-text em { font-style: italic; color: var(--rose); }

/* ============================= VALUES / POR QUE PILATES ============================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--taupe-pale);
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
}
.value-card {
  background: var(--cream-lightest);
  padding: 48px 38px;
  transition: background 0.4s var(--ease);
}
.value-card:hover { background: var(--cream-deep); }
.value-card .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--rose-pale);
  display: block;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.value-card p { font-size: 0.92rem; margin: 0; }

/* ============================= CLASES ============================= */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.class-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  isolation: isolate;
}
.class-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.class-card:hover img { transform: scale(1.06); }
.class-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,32,30,0) 35%, rgba(30,18,17,0.85) 100%);
}
.class-card-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 30px 26px;
  color: var(--cream-lightest);
}
.class-card-body span.eyebrow { color: var(--rose-light); margin-bottom: 8px; }
.class-card-body h3 { color: var(--cream-lightest); font-size: 1.4rem; margin-bottom: 8px; }
.class-card-body p { color: rgba(253,251,248,0.85); font-size: 0.88rem; margin: 0; }

.classes-note {
  margin-top: 44px;
  padding: 30px 36px;
  background: var(--cream-deep);
  border-left: 3px solid var(--wine);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.classes-note p { margin: 0; max-width: 520px; }

/* ============================= RESERVAS / COMO EMPEZAR ============================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 46px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream-lightest);
  background: var(--wine);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: 0; left: 0;
}
.step h4 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: 0.88rem; margin: 0; }

.reservas-panel {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(46,32,30,0.4);
}
.reservas-panel .panel {
  padding: 56px 50px;
}
.reservas-panel .panel--trial {
  background: var(--wine);
  color: var(--cream-lightest);
}
.reservas-panel .panel--trial h3 { color: var(--cream-lightest); }
.reservas-panel .panel--trial p { color: rgba(253,251,248,0.85); }
.reservas-panel .panel--app {
  background: var(--cream);
}
.reservas-panel .panel h3 { font-size: 1.5rem; margin-bottom: 16px; }
.reservas-panel .panel p { margin-bottom: 26px; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--taupe-pale);
  border-radius: var(--radius);
  background: var(--cream-lightest);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.app-badge strong { color: var(--wine); }

/* ============================= UBICACION ============================= */
.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.location-map {
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.location-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 24px;
  margin: 34px 0 38px;
}
.location-details dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  padding-top: 3px;
}
.location-details dd {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
}
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}
.hours-list li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
}
.hours-list li span {
  flex: 0 0 84px;
  color: var(--taupe);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 2px;
}
.hours-note {
  font-size: 0.82rem;
  color: var(--taupe);
  margin: 10px 0 0;
  font-style: italic;
}
.placeholder-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-soft);
  background: var(--rose-pale);
  padding: 2px 9px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================= GIFT CARDS ============================= */
#giftcards.section { padding: 0; }
.giftcards {
  background: var(--ink);
  color: var(--cream-lightest);
  position: relative;
  overflow: hidden;
  padding: 130px 0;
}
.giftcards::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(176,122,127,0.18), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(123,34,41,0.25), transparent 50%);
}
.giftcards .container { position: relative; z-index: 1; }
.giftcards .eyebrow {
  color: var(--rose-light);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
}
.giftcards h2 { color: var(--cream-lightest); }
.giftcards .section-lede { color: rgba(253,251,248,0.78); }
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 60px 0 44px;
}
.gift-card {
  border: 1px solid rgba(253,251,248,0.18);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: all 0.4s var(--ease);
  background: rgba(253,251,248,0.03);
}
.gift-card:hover {
  border-color: var(--rose-light);
  background: rgba(253,251,248,0.07);
  transform: translateY(-6px);
}
.gift-card .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream-lightest);
  display: block;
  margin-bottom: 10px;
}
.gift-card .desc {
  font-size: 0.82rem;
  color: rgba(253,251,248,0.65);
  margin-bottom: 0;
}
.gift-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(253,251,248,0.7);
  flex-wrap: wrap;
}
.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(253,251,248,0.1);
  color: var(--cream-lightest);
}

.gift-form {
  max-width: 640px;
  margin: 50px auto 0;
  background: var(--cream-lightest);
  border-radius: var(--radius);
  padding: 44px;
  text-align: left;
  color: var(--ink);
}
.gift-form .field label .opt { font-weight: 400; }
.amount-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.amount-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--taupe-pale);
  border-radius: 30px;
  background: var(--cream-lightest);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.amount-chip:hover { border-color: var(--wine); color: var(--wine); }
.amount-chip.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream-lightest);
}
.amount-chip .placeholder-tag { margin-left: 0; }
.gift-form .btn--primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.gift-form-note {
  font-size: 0.78rem;
  color: var(--taupe);
  text-align: center;
  margin: 16px 0 0;
}

/* ============================= TRABAJA CON NOSOTROS ============================= */
.jobs {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: flex-start;
  margin-top: 60px;
}
.jobs-media img {
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(46,32,30,0.35);
}
.job-form {
  background: var(--cream-lightest);
  border: 1px solid var(--taupe-pale);
  border-radius: var(--radius);
  padding: 44px;
}
.job-form .form-row,
.gift-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field { margin-bottom: 22px; }
.field-hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: -2px 0 10px;
  line-height: 1.5;
}
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--taupe-pale);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream-lightest);
  color: var(--ink);
  transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wine);
}
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.field-check input { margin-top: 4px; }
.job-form .btn { width: 100%; justify-content: center; }
.jobs-media { position: sticky; top: 120px; }

/* ============================= RESEÑAS ============================= */
.reviews-section {
  background: var(--ink);
  color: var(--cream-lightest);
}
.reviews-section .eyebrow { color: var(--rose-light); }
.reviews-section h2 { color: var(--cream-lightest); }
.reviews-section h2 em { font-style: italic; color: var(--rose-light); }
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.92rem;
  color: rgba(253,251,248,0.85);
}
.reviews-badge-score {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream-lightest);
}
.reviews-badge-stars {
  color: #E0B84C;
  letter-spacing: 0.06em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}
.review-card {
  border: 1px solid rgba(253,251,248,0.16);
  border-radius: 10px;
  padding: 28px 26px;
  background: rgba(253,251,248,0.04);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-avatar {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream-lightest);
}
.review-name {
  font-size: 0.92rem;
  color: var(--cream-lightest);
  margin: 0 0 4px;
}
.review-stars {
  color: #E0B84C;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(253,251,248,0.85);
  margin: 0;
}

/* ============================= INSTAGRAM ============================= */
.instagram-section {
  background: var(--ink);
  color: var(--cream-lightest);
}
.instagram-section .eyebrow { color: var(--rose-light); }
.instagram-section h2 { color: var(--cream-lightest); }
.instagram-section .section-lede { color: rgba(253,251,248,0.7); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-top: 50px;
}
.instagram-tile {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.instagram-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.instagram-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,10,9,0.35);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.instagram-tile::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 26px; height: 26px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.6'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.4' cy='6.6' r='0.6' fill='%23fff' stroke='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 1;
}
.instagram-tile:hover img { transform: scale(1.08); }
.instagram-tile:hover::after,
.instagram-tile:hover::before { opacity: 1; }

/* ============================= CARTA DE LA FUNDADORA ============================= */
.founder-letter { background: var(--cream-deep); }
.founder-letter-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.founder-letter-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.75;
  color: var(--ink);
  margin: 10px 0 26px;
  text-align: left;
}
.founder-letter-text em { font-style: italic; color: var(--wine); }
.founder-letter-sign {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--taupe);
  text-align: right;
  margin: 0;
}

/* ============================= FOOTER ============================= */
.site-footer {
  background: var(--wine);
  color: rgba(253,251,248,0.82);
  padding: 90px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253,251,248,0.16);
}
.footer-logo img { height: 30px; margin-bottom: 20px; }
.footer-grid p { color: rgba(253,251,248,0.7); font-size: 0.9rem; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-lightest);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(253,251,248,0.75);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--cream-lightest); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.76rem;
  color: rgba(253,251,248,0.55);
}
.footer-rose { width: 26px; opacity: 0.5; }

/* ============================= WHATSAPP FLOAT ============================= */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6);
  transition: transform 0.35s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 14px 30px -10px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 14px 30px -6px rgba(37,211,102,0.85); }
}

/* ============================= RESPONSIVE ============================= */
@media (max-width: 980px) {
  .about, .location, .jobs { grid-template-columns: 1fr; gap: 46px; }
  .jobs-media { position: static; order: 2; }
  .job-form { order: 1; }
  .values-grid, .classes-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .reservas-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .btn--ghost { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    width: 24px; height: 1px;
    background: currentColor;
  }
  .site-header:not(.is-scrolled) .nav-toggle { color: var(--cream-lightest); }
  .section { padding: 80px 0; }
  .giftcards { padding: 90px 0; }
  .values-grid, .classes-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .founder-letter-text { text-align: left; }
  .studio-gallery--row { grid-template-columns: 1fr; }
  .studio-gallery--wide img { aspect-ratio: 4/3; }
  .job-form .form-row, .gift-form .form-row { grid-template-columns: 1fr; }
  .gift-form { padding: 30px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-content { padding-bottom: 70px; }
  .classes-note { flex-direction: column; align-items: flex-start; }
  .scroll-hint { display: none; }

  .btn {
    white-space: normal;
    text-align: center;
    padding: 14px 22px;
    font-size: 0.76rem;
    max-width: 100%;
  }
  .reservas-panel .panel { padding: 36px 26px; }
  .app-badge { max-width: 100%; flex-wrap: wrap; }
  .review-head { flex-wrap: wrap; }
  .reviews-badge { flex-wrap: wrap; row-gap: 4px; }
  .location-details dl { grid-template-columns: 1fr; gap: 6px 0; }
  .location-details dt { margin-top: 10px; }
}

@media (max-height: 700px) {
  .scroll-hint { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream-lightest);
}
.mobile-nav .btn { margin-top: 10px; }
.mobile-nav a.btn--light { color: var(--wine); }
.mobile-nav a.btn--light:hover { color: var(--wine); }
.mobile-close {
  position: absolute;
  top: 26px; right: 32px;
  background: none; border: none;
  color: var(--cream-lightest);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
