/* ============================================================
   BLANCA ESTECHE ESTUDIO — Global Styles
   Fuentes: Cormorant Garamond (títulos) + Inter (cuerpo)
   ============================================================ */

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

/* ============ VARIABLES ============ */
:root {
  /* Backgrounds */
  --bg:           #f9f2ed;
  --bg-warm:      #f4ebe5;
  --bg-card:      #ffffff;
  --bg-dark:      #0d0808;
  --bg-dark-soft: #1a1010;

  /* Bordeaux palette */
  --bordeaux:     #5C1919;
  --bordeaux-deep:#2C0808;
  --bordeaux-mid: #7a2a2a;
  --bordeaux-lt:  rgba(92,25,25,0.10);

  /* Blush / rose */
  --blush:        #f0c4cd;
  --blush-light:  rgba(240,196,205,0.22);

  /* Text */
  --text:         #2C1010;
  --text-mid:     #7a5050;
  --text-light:   #b09090;

  /* Neutral */
  --white:        #FFFFFF;
  --border:       #e8d5c8;
  --border-light: rgba(44,16,16,0.08);

  /* For dark sections */
  --cream-on-dark:      #fff7ec;
  --cream-on-dark-mid:  rgba(255,247,236,0.55);
  --cream-on-dark-low:  rgba(255,247,236,0.30);

  --gold:         #c4956a;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --container:    1200px;
  --nav-h:        54px;
  --brand-h:      76px;
  --header-total: calc(var(--brand-h) + var(--nav-h));

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:       0 4px 30px rgba(44,16,16,0.07);
  --shadow-lg:    0 12px 50px rgba(44,16,16,0.12);
}

/* ============ 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(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { 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; }

/* ============ UTILITIES ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--bordeaux-deep);
}

.section-title-light { color: var(--cream-on-dark); }

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  transition: all 0.28s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--bordeaux);
  color: var(--white);
  border: 1.5px solid var(--bordeaux);
}
.btn-primary:hover {
  background: var(--bordeaux-deep);
  border-color: var(--bordeaux-deep);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--bordeaux-deep);
  border: 1.5px solid var(--bordeaux);
}
.btn-outline:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--bordeaux-deep);
  border: 1.5px solid rgba(44,16,16,0.35);
}
.btn-outline-dark:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--white);
}

.btn-rose {
  background: var(--bordeaux);
  color: var(--white);
  border: 1.5px solid var(--bordeaux);
}
.btn-rose:hover {
  background: var(--bordeaux-deep);
  border-color: var(--bordeaux-deep);
  color: var(--white);
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border-light);
}

/* Brand bar (logo + actions) */
.header-brand {
  height: var(--brand-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--border-light);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
.header-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--bordeaux-deep);
  line-height: 1.1;
}
.header-logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-insta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  transition: color 0.2s;
}
.header-insta:hover { color: var(--bordeaux); }
.header-insta svg { width: 18px; height: 18px; }

.btn-reservar {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 26px;
  background: var(--bordeaux-deep);
  color: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.btn-reservar:hover { background: var(--bordeaux); color: var(--white); }

/* Nav bar */
.header-nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 22px;
  height: var(--nav-h);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(44,16,16,0.60);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--bordeaux); }
.nav-link.active { color: var(--bordeaux); }

.nav-arrow {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-top: 2px solid var(--bordeaux);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 16px 48px rgba(44,16,16,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover {
  background: rgba(92,25,25,0.05);
  color: var(--bordeaux);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}
.mobile-menu a:hover { color: var(--bordeaux); }
.mobile-menu .mobile-reservar {
  margin: 16px 28px 8px;
  text-align: center;
  background: var(--bordeaux-deep);
  color: var(--white);
  padding: 14px;
  border-radius: 2px;
}

/* ============ HERO CAROUSEL ============ */
.hero {
  position: relative;
  height: calc(100vh - var(--header-total));
  min-height: 520px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-color: #c9adb2;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(229, 208, 200, 0.88) 0%,
    rgba(229, 208, 200, 0.65) 28%,
    rgba(229, 208, 200, 0.25) 52%,
    transparent 72%
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 72px;
  max-width: 660px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bordeaux-mid);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 500;
  line-height: 1.07;
  color: var(--bordeaux-deep);
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 0;
}
.hero-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(44,16,16,0.15);
  overflow: hidden;
}
.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--bordeaux);
  transition: width linear;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(44,16,16,0.25);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
  background: var(--bordeaux);
  transform: scale(1.3);
}

/* ============ SERVICIOS OVERVIEW (home) ============ */
.services-home { background: var(--bg-card); }
.services-home .section-title { color: var(--bordeaux-deep); }
.services-home .tag { color: var(--bordeaux); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 60px;
}

.service-card {
  background: var(--bg-card);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.service-card:hover { background: var(--bg); }

.service-card-image {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 6px;
  transition: transform 0.45s var(--ease);
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease);
}
.service-card:hover .service-card-image { transform: scale(1.08); }
.service-card:hover .service-card-image img { transform: scale(1.12); }

.service-card-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.service-card-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--bordeaux-deep);
  line-height: 1.2;
}

.service-card-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.service-card-price {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bordeaux);
  transition: gap 0.2s;
}
.service-card:hover .service-card-link { gap: 12px; }

.service-card--plain {
  background: transparent;
  border: 1px solid var(--border);
  padding: 28px 32px;
}
.service-card--plain:hover { background: transparent; border-color: var(--bordeaux-mid); }

/* ============ COMO FUNCIONA ============ */
.how-it-works { background: var(--bg-warm); }
.how-it-works .section-title { color: var(--bordeaux-deep); }
.how-it-works .tag { color: var(--text-mid); letter-spacing: 3px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step-item { text-align: center; }

.step-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: rgba(92,25,25,0.32);
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon svg { width: 26px; height: 26px; stroke: var(--bordeaux); }

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--bordeaux-deep);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
}

.steps-grid { position: relative; }

/* ============ RESEÑAS ============ */
.reviews { background: var(--bg-dark); }

.reviews-header { text-align: center; margin-bottom: 60px; }

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}

.review-card {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
}
.review-stars svg { width: 18px; height: 18px; fill: var(--gold); }

.review-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.review-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.review-author-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.review-author-loc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 52px;
}
.review-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.review-btn:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.review-btn svg { width: 16px; height: 16px; stroke: var(--white); }

.review-dots {
  display: flex;
  gap: 8px;
}
.review-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.review-dot.active { background: var(--blush); transform: scale(1.4); }

/* ============ FAQ ============ */
.faq { background: var(--bg-warm); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  margin-top: 60px;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: calc(var(--header-total) + 40px);
}

.faq-aside-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bordeaux-deep);
  margin-bottom: 24px;
}

.faq-aside-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--bordeaux); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.faq-icon svg { width: 12px; height: 12px; stroke: var(--text-mid); transition: transform 0.3s, stroke 0.2s; }
.faq-item.open .faq-icon { border-color: var(--bordeaux); background: var(--bordeaux); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--bordeaux);
  padding: 80px 0;
  text-align: center;
}
.cta-banner .section-title { color: var(--white); margin-bottom: 16px; }
.cta-banner .tag { color: rgba(255,255,255,0.60); }
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--bordeaux);
  border-color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--bordeaux-deep);
}
.cta-banner .btn-outline-dark {
  color: var(--white);
  border-color: rgba(255,255,255,0.50);
}
.cta-banner .btn-outline-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--blush); background: rgba(240,196,205,0.15); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--blush); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.5px;
}

/* ============ INNER PAGES ============ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  text-align: center;
  background-color: #f9f3ec;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    #f9f3ec 0,
    #f9f3ec 7%,
    #f4ede6 7%,
    #f4ede6 14%
  );
  opacity: 1;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(7% - 0.5px),
    rgba(92, 25, 25, 0.04) calc(7% - 0.5px),
    rgba(92, 25, 25, 0.04) 7%
  );
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 18px;
  opacity: 0.85;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 600;
  color: var(--bordeaux-deep);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.page-hero-sub {
  font-size: 15.5px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
  opacity: 0.9;
}

/* Service detail layout */
.service-detail { background: var(--bg-warm); }
.service-detail .section-title { color: var(--bordeaux-deep); }
.service-detail .tag { color: var(--bordeaux); }
.service-detail .section-sub { color: var(--text-mid); }
.service-detail-img { background: var(--bg); }

.service-detail-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 90px 0;
}

.service-detail-img {
  aspect-ratio: 4/5;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

/* Precio badge */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bordeaux-lt);
  color: var(--bordeaux);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Precio table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.price-table th {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 12px 0;
  border-bottom: 1.5px solid var(--border);
  text-align: left;
}
.price-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--text-mid);
  vertical-align: middle;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: rgba(92,25,25,0.03); }

/* ============ SOBRE MI ============ */
.about-story {
  background: var(--bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about-img-wrap {
  position: relative;
  align-self: start;
  margin-top: 38px;
}

.about-img {
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 40px rgba(44,16,16,0.13);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-img-accent {
  display: none;
}

.about-content {
  padding-top: 8px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.about-value-item {
  padding: 18px 20px;
  background: var(--bg-warm);
  border-radius: 3px;
  border: 1px solid var(--border-light);
}
.about-value-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--bordeaux);
  line-height: 1;
  margin-bottom: 5px;
}
.about-value-label {
  font-size: 12.5px;
  color: var(--text-mid);
  letter-spacing: 0.3px;
}

/* ============ CONTACTO ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bordeaux-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: var(--bordeaux); }
.contact-info-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}
.contact-info-val {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
}
.contact-info-val a { transition: color 0.2s; }
.contact-info-val a:hover { color: var(--bordeaux); }

.map-wrapper {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ CÓMO LLEGAR ============ */
.llegar-cards .service-card { background: transparent; }
.llegar-cards .service-card:hover { background: transparent; }

/* ============ SERVICIOS PAGE ============ */
.servicios-category { border-top: 1px solid var(--border); }
.servicios-category:first-child { border-top: none; }

.category-header {
  padding: 48px 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.category-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--bordeaux-deep);
}
.category-count {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
}

/* ============ PRICE ACCORDION ============ */
.price-accordion {
  border-top: 1.5px solid var(--border);
  margin-top: 32px;
}

.price-item { border-bottom: 1px solid var(--border-light); }

.price-item-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.price-item-trigger:hover .price-item-name { color: var(--bordeaux-deep); }
.price-item-trigger:active { background: rgba(92,25,25,0.03); }

.price-item-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
  line-height: 1.4;
  transition: color 0.2s;
}
.price-item.open .price-item-name { color: var(--bordeaux-deep); }

.price-item-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.price-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.price-item-arrow {
  width: 14px;
  height: 14px;
  stroke: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), stroke 0.2s;
}
.price-item.open .price-item-arrow {
  transform: rotate(180deg);
  stroke: var(--bordeaux);
}

.price-item-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.price-item.open .price-item-body { max-height: 100px; }

.price-item-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 2px 0 16px;
  line-height: 1.6;
}

.price-note {
  font-size: 12.5px;
  color: var(--text-light);
  padding: 14px 0 4px;
  line-height: 1.5;
  border-top: 1px solid var(--border-light);
  margin-top: 4px;
}

/* ============ PRICE LIST (servicios overview) ============ */
.price-list {
  border-top: 1.5px solid var(--border);
  margin-top: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
}

.price-row-name {
  font-size: 14.5px;
  color: var(--text-mid);
  flex: 1;
  line-height: 1.45;
}

.price-row-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============ FADE-IN ANIMATION ============ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb-list a {
  font-size: 12.5px;
  color: var(--text-light);
  transition: color 0.2s;
}
.breadcrumb-list a:hover { color: var(--bordeaux); }
.breadcrumb-list span {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 500;
}
.breadcrumb-sep { font-size: 10px; color: var(--border); }

/* ============ SERVICE BTNS (buttons row in service pages) ============ */
.service-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============ SERVICES RELATED GRID (otros servicios in subsections) ============ */
.services-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============ STUDIO SECTION (Mi Trayectoria) ============ */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.studio-photo {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg);
  aspect-ratio: 1 / 1;
}
.studio-photo.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.studio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.studio-photo:hover img { transform: scale(1.04); }
.studio-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-mid);
  opacity: 0.35;
}
.studio-placeholder svg { width: 28px; height: 28px; stroke: currentColor; }
.studio-placeholder span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============ EN LOS MEDIOS (Mi Trayectoria) ============ */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.media-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  cursor: pointer;
}
.media-card:hover {
  box-shadow: 0 12px 36px rgba(44,8,8,0.10);
  transform: translateY(-3px);
}
.media-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg-warm);
  overflow: hidden;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.media-card:hover .media-thumb img { transform: scale(1.04); }
.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  opacity: 0.3;
}
.media-placeholder svg { width: 36px; height: 36px; stroke: currentColor; }
.media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,8,8,0.30);
  transition: background 0.2s;
}
.media-card:hover .media-play { background: rgba(44,8,8,0.45); }
.media-play svg {
  width: 52px;
  height: 52px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s var(--ease);
}
.media-card:hover .media-play svg { transform: scale(1.10); }
.media-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.media-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.media-yt-icon { width: 16px; height: 16px; flex-shrink: 0; }
.media-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--bordeaux-deep);
  line-height: 1.35;
  margin: 4px 0 0;
}
.media-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* ============ BRANDS HOME ============ */
.brands-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.brand-home-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  text-align: center;
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  cursor: default;
}
.brand-home-card:hover {
  box-shadow: 0 20px 64px rgba(44,8,8,0.13);
  transform: translateY(-5px);
  z-index: 1;
  position: relative;
}
.brand-home-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  box-sizing: border-box;
  background: #fff;
}
.brand-home-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s var(--ease);
}
.brand-home-card:hover .brand-home-img { transform: scale(1.06); }
.brand-home-name {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bordeaux-deep);
  padding: 0 12px 18px;
  font-family: var(--font-body);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brands-home-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .brands-home-grid { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-photo.tall { grid-row: span 1; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .service-detail-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-img-wrap { margin-top: 0; }
  .about-img { max-height: 340px; }
  .about-img-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-card { padding: 0 30px; }
  .services-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --brand-h: 64px; --nav-h: 0px; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-logo-text { font-size: 18px; }
  .hero-content { padding: 0 24px 0; max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card-body { padding: 28px 28px; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-pad { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .header-brand { padding: 0 20px; }
  .header-insta { display: none; }
  .header-logo img { display: none; }
  .btn-reservar { padding: 8px 14px; font-size: 10px; letter-spacing: 1px; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(229,208,200,0.80) 0%,
      rgba(229,208,200,0.55) 50%,
      rgba(229,208,200,0.20) 100%
    );
  }

  /* More breathing room on mobile */
  .container { padding: 0 32px; }

  /* Servicios page */
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
  }

  /* Price table: add horizontal padding so text doesn't go edge-to-edge */
  .price-table td,
  .price-table th { padding-left: 4px; padding-right: 4px; }
  .price-table td:last-child { padding-left: 16px; }

  /* Subsection pages: related services grid → 1 column */
  .services-related-grid { grid-template-columns: 1fr; }

  /* Subsection pages: button pairs → stack vertically */
  .service-btns { flex-direction: column; align-items: stretch; }
  .service-btns .btn { width: 100%; justify-content: center; text-align: center; }

  .studio-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .studio-photo.tall { grid-column: span 2; aspect-ratio: 4 / 3; }
  .media-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .review-card { padding: 0 16px; }
  .review-text { font-size: 18px; }
  .hero-dots { right: 20px; }
}

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