/* ========================================
   Casa Makech — Estilos
   Paleta: blanco / cream / celeste / ink
   ======================================== */

:root {
  /* Paleta inspirada en arena, parota y ladrillo expuesto */
  --bg: #faf5eb;            /* arena muy clara / marfil cálido */
  --bg-alt: #ede3d2;        /* arena media */
  --bg-dark: #2a1f18;       /* espresso profundo / parota oscura */
  --ink: #2a2018;           /* tinta cálida */
  --ink-soft: #5c4a3c;      /* parota suavizada */
  --muted: #9c8b78;         /* arena terrosa */
  --line: #d9cdb6;          /* arena seca */
  --line-soft: #e8ddc6;     /* divisor suave */
  --accent: #a0593c;        /* ladrillo expuesto */
  --accent-dark: #7a3f26;   /* ladrillo cocido */
  --accent-soft: #e8c9b2;   /* terracota lavada */
  --wood: #8b5e3c;          /* parota natural */
  --wood-dark: #5c3d24;     /* parota envejecida */
  --gold: #b89968;          /* latón / detalle de lujo */

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(26, 31, 46, 0.04);
  --shadow: 0 8px 30px rgba(26, 31, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 31, 46, 0.12);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--ink);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   Layout containers
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 760px;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: #ffffff;
}

/* ========================================
   Typography
   ======================================== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.eyebrow.light {
  color: var(--accent-soft);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-title.light {
  color: #ffffff;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
}

.section-sub.light {
  color: #c8cdd6;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #ffffff;
}

.section-dark .btn-ghost {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 14px;
}

/* ========================================
   Nav
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.brand-mark {
  display: inline-block;
  width: 32px;
  height: 44px;
  background-image: url('assets/logo-icon-transparent.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  /* Oculta el texto 'CM' del placeholder anterior */
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
  color: transparent;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.is-active {
  color: var(--ink);
  font-weight: 500;
  position: relative;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  padding: 10px 22px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s var(--ease);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(42, 31, 24, 0.78) 0%, rgba(122, 63, 38, 0.55) 100%),
    radial-gradient(circle at 18% 28%, rgba(232, 201, 178, 0.28), transparent 55%),
    radial-gradient(circle at 82% 72%, rgba(184, 153, 104, 0.35), transparent 55%),
    linear-gradient(180deg, #4a3526 0%, #2a1f18 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    /* veta de madera sutil */
    repeating-linear-gradient(92deg, rgba(255, 240, 220, 0.025) 0 1px, transparent 1px 11px),
    /* textura tipo ladrillo */
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 64px);
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero .eyebrow {
  color: var(--accent-soft);
}

.hero-icon {
  width: 64px;
  height: 88px;
  margin: 0 auto 28px;
  background-image: url('assets/logo-icon-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--accent-soft);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #d8dde6;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-ctas .btn-primary {
  background: #ffffff;
  color: var(--ink);
}

.hero-ctas .btn-primary:hover {
  background: var(--accent-soft);
  color: var(--ink);
}

.hero-ctas .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  z-index: 1;
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: #ffffff;
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: 0.3; }
}

/* ========================================
   Intro
   ======================================== */
.intro {
  padding: 120px 0 80px;
  text-align: center;
}

.intro .eyebrow {
  display: inline-block;
}

/* ========================================
   Page hero (cabecera de páginas internas)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero .eyebrow {
  display: inline-block;
}

.page-hero .section-title {
  margin-top: 8px;
  margin-bottom: 24px;
}

.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
}

/* ========================================
   Explore cards (home)
   ======================================== */
.explore {
  padding: 100px 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.explore-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
  color: var(--ink);
}

.explore-card-art {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.explore-card-art[data-art="lofts"] {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-alt) 100%);
}

.explore-card-art[data-art="amenidades"] {
  background: linear-gradient(135deg, #d9c5a8 0%, var(--accent-soft) 100%);
}

.explore-card-art[data-art="ubicacion"] {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #d6b896 100%);
}

.explore-card-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(42, 31, 24, 0.05) 28px 29px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(42, 31, 24, 0.05) 28px 29px);
}

.explore-card-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 300;
  color: var(--ink);
  opacity: 0.35;
}

.explore-card-body {
  padding: 28px;
}

.explore-card-body h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}

.explore-card-body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.explore-card-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  text-transform: uppercase;
}

.explore-card:hover .explore-card-link {
  color: var(--accent);
}

/* ========================================
   CTA block (reutilizable al final de páginas)
   ======================================== */
.cta-block {
  padding: 100px 0;
}

.center {
  text-align: center;
}

.cta-block .lead {
  margin: 0 auto 32px;
}

.cta-block-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ========================================
   Detalles list (amenidades)
   ======================================== */
.detalle-list {
  list-style: none;
  margin-top: 32px;
}

.detalle-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
}

.detalle-list strong {
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-serif);
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.detalle-list li:last-child {
  border-bottom: none;
}

/* ========================================
   Reservar alt link
   ======================================== */
.reservar-altlink {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--ink-soft);
}

.reservar-altlink a {
  font-weight: 500;
  margin-left: 6px;
}

/* Reduce top padding on first content section after page-hero */
.page-hero + section {
  padding-top: 80px;
}

/* Detalles section spacing */
.detalles {
  padding: 100px 0;
}

/* ========================================
   Amenities
   ======================================== */
.amenities {
  padding: 100px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.amenity-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s var(--ease);
}

.amenity-card:hover {
  background: var(--bg-alt);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent-dark);
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}

.amenity-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ========================================
   Lofts
   ======================================== */
.lofts {
  padding: 120px 0;
}

.loft-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--bg);
  color: var(--ink-soft);
  transition: all 0.2s var(--ease);
}

.chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.chip.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.loft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.loft-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.loft-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.loft-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-alt) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loft-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 60%, rgba(42, 31, 24, 0.35) 100%),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(42, 31, 24, 0.04) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(42, 31, 24, 0.04) 24px 25px);
}

/* Watermark del logo en los placeholders de los lofts */
.loft-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/logo-icon-transparent.png');
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: auto 55%;
  opacity: 0.08;
  pointer-events: none;
}

.loft-image-icon {
  position: relative;
  z-index: 1;
  color: rgba(42, 31, 24, 0.45);
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 30%;
}

.loft-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.loft-body {
  padding: 24px;
}

.loft-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink);
}

.loft-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.loft-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.loft-feature {
  font-size: 12px;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 100px;
}

.loft-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.loft-price {
  font-size: 13px;
  color: var(--ink-soft);
}

.loft-price strong {
  color: var(--ink);
  font-size: 14px;
}

.loft-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
}

.loft-link::after {
  content: " →";
  transition: transform 0.2s var(--ease);
  display: inline-block;
}

.loft-card:hover .loft-link::after {
  transform: translateX(4px);
}

/* ========================================
   Ubicación
   ======================================== */
.ubicacion {
  padding: 120px 0;
}

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.poi-list {
  list-style: none;
  margin-top: 32px;
}

.poi-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}

.poi-list strong {
  color: var(--ink);
  font-weight: 500;
  margin-right: 8px;
}

.poi-list li:last-child {
  border-bottom: none;
}

.ubicacion-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.ubicacion-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========================================
   Booking forms
   ======================================== */
.reservar {
  padding: 120px 0;
}

.estancia-larga {
  padding: 120px 0;
}

.booking-form,
.long-form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.section-dark .long-form {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.booking-form label,
.long-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-form label.full,
.long-form label.full {
  margin-bottom: 16px;
}

.booking-form label span,
.long-form label span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-dark .long-form label span {
  color: #c8cdd6;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.long-form input,
.long-form select,
.long-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.long-form input:focus,
.long-form select:focus,
.long-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.section-dark .long-form input,
.section-dark .long-form select,
.section-dark .long-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.section-dark .long-form input::placeholder,
.section-dark .long-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-actions {
  text-align: center;
  margin-top: 24px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.form-note.light {
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Contacto
   ======================================== */
.contacto {
  padding: 120px 0;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-list {
  list-style: none;
  margin: 32px 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.contact-list strong {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contacto-art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-alt) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contacto-art::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(26, 31, 46, 0.15);
  border-radius: var(--radius);
}

.contacto-mark {
  width: 180px;
  height: 220px;
  background-image: url('assets/logo-full-transparent.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  /* oculta texto placeholder */
  font-size: 0;
  color: transparent;
}

.contacto-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  color: var(--ink-soft);
  max-width: 280px;
  position: relative;
  z-index: 1;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-dark);
  color: #d8c8b4;
  padding: 56px 0 32px;
  font-size: 13px;
  text-align: center;
}

.footer::before {
  content: "";
  display: block;
  width: 42px;
  height: 58px;
  margin: 0 auto 20px;
  background-image: url('assets/logo-icon-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.85;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  margin-top: 8px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ubicacion-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ubicacion-map {
    aspect-ratio: 4 / 3;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .explore-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .page-hero {
    padding: 130px 0 60px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .intro,
  .amenities,
  .lofts,
  .ubicacion,
  .reservar,
  .estancia-larga,
  .contacto {
    padding: 80px 0;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form,
  .long-form {
    padding: 24px;
  }
  .contacto-mark {
    font-size: 64px;
  }
  .hero-ctas .btn {
    width: 100%;
  }
}

/* ========================================
   Mobile nav drawer
   ======================================== */
.nav.is-open .nav-links {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--bg);
  padding: 24px;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
