:root {
  --green-950: #14201b;
  --green-900: #1c2923;
  --green-800: #26382f;
  --green-700: #465a4d;
  --sage: #75877a;
  --terracotta: #b9855e;
  --terracotta-dark: #8f6246;
  --cream: #f6efe4;
  --cream-2: #efe3d3;
  --sand: #d7c4aa;
  --white: #fffaf2;
  --ink: #201a15;
  --muted: #776d61;
  --shadow: 0 22px 70px rgba(20, 32, 27, .18);
  --radius-lg: clamp(22px, 3vw, 32px);
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 133, 94, .18), transparent 34rem),
    linear-gradient(180deg, var(--cream), #fbf7ef 42%, var(--cream-2));
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--white);
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header y navegación */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 239, 228, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 32, 27, .08);
}
.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--green-800);
  white-space: nowrap;
}
.site-logo {
  display: block;
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}
.nav-logo { width: 52px; max-height: 62px; }
.hero-logo {
  width: min(136px, 56vw);
  max-height: 150px;
  margin: 0 auto 24px;
}
.footer-logo { width: 58px; max-height: 70px; margin-bottom: 12px; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-width: 0;
}
.nav-menu a {
  padding: 9px 10px;
  border-radius: 999px;
  color: var(--green-800);
  font-weight: 700;
  font-size: clamp(.78rem, .84vw, .9rem);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active { background: rgba(185, 133, 94, .14); }
.nav-cta {
  margin-left: 4px;
  background: var(--green-900) !important;
  color: var(--white) !important;
  box-shadow: 0 10px 24px rgba(20, 32, 27, .18);
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--green-900);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 11px;
  flex: 0 0 auto;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

/* Estructura general */
.section { padding: clamp(64px, 8vw, 92px) 0; }
h1, h2, h3 { line-height: 1.08; margin: 0; overflow-wrap: anywhere; }
h1 {
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 7vw, 6.6rem);
  letter-spacing: -.055em;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 4.15rem);
  letter-spacing: -.04em;
}
h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.22rem);
  letter-spacing: -.02em;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  flex: 0 0 auto;
}
.section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 42px);
}
.section-heading p:not(.eyebrow),
.split-copy > p,
.reservation-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 32, 27, .92), rgba(20, 32, 27, .68) 48%, rgba(20, 32, 27, .26)),
    linear-gradient(135deg, rgba(185, 133, 94, .28), transparent 45%),
    url("https://www.lodge33.cl/lounge33-quincho.png") center / cover no-repeat;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, var(--cream));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 90px);
}
.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 250, 242, .82);
  font-size: clamp(1.03rem, 2vw, 1.35rem);
}
.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  box-shadow: 0 16px 36px rgba(185, 133, 94, .28);
}
.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 250, 242, .36);
  background: rgba(255, 250, 242, .1);
}
.hero-points {
  list-style: none;
  padding: 0;
  color: rgba(255, 250, 242, .8);
  font-size: .96rem;
}
.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 242, .18);
  border-radius: 999px;
  background: rgba(255, 250, 242, .08);
}
.hero-card {
  justify-self: end;
  width: min(100%, 380px);
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 242, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, .12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}
.hero-card h2 {
  font-size: clamp(2rem, 3.3vw, 2.35rem);
  letter-spacing: -.035em;
}
.hero-card p { color: rgba(255, 250, 242, .78); }

/* Cards y grillas */
.cards,
.feature-grid {
  display: grid;
  gap: 20px;
}
.three-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.feature-grid article,
.contact-form,
.contact-box,
.amenities-strip {
  border: 1px solid rgba(20, 32, 27, .1);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, .72);
  box-shadow: var(--shadow);
}
.card {
  padding: clamp(22px, 3vw, 30px);
  min-height: 285px;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  right: -90px;
  bottom: -90px;
  background: rgba(185, 133, 94, .12);
}
.card-kicker {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--terracotta-dark);
  font-size: .8rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.card p,
.feature-grid p,
.cabin-list li,
.photo-card figcaption,
.form-note { color: var(--muted); }

/* Secciones dobles */
.split,
.reservations { background: rgba(255, 250, 242, .52); }
.split-grid,
.lounge-grid,
.reservations-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.lounge-grid { grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
.split-copy { max-width: 610px; }
.cabin-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.cabin-list article {
  padding: clamp(20px, 2.5vw, 24px);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 250, 242, .72);
}
.cabin-list ul { padding-left: 20px; margin: 14px 0 0; }
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(185, 133, 94, .18), rgba(20, 32, 27, .72)),
    var(--green-900);
}
.photo-card figcaption {
  padding: 14px 18px 18px;
  color: rgba(255, 250, 242, .72);
  font-size: .92rem;
}

/* Lounge y vinos */
.lounge,
.wine {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(185, 133, 94, .23), transparent 34rem),
    linear-gradient(180deg, var(--green-900), var(--green-950));
}
.wine {
  background:
    radial-gradient(circle at top left, rgba(185, 133, 94, .28), transparent 34rem),
    linear-gradient(180deg, var(--green-950), var(--green-900));
}
.lounge .split-copy > p,
.lounge .feature-grid p,
.wine .split-copy > p,
.wine .cabin-list li { color: rgba(255, 250, 242, .74); }
.feature-grid {
  margin-top: 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-grid article {
  padding: clamp(20px, 2.5vw, 24px);
  color: var(--white);
  background: rgba(255, 250, 242, .08);
  border-color: rgba(255, 250, 242, .12);
  box-shadow: none;
}
.wine .cabin-list article {
  background: rgba(255, 250, 242, .08);
  border-left-color: var(--terracotta);
}
.experience-panel {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, .09);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}
.experience-panel span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-weight: 900;
  letter-spacing: .16em;
}
.experience-panel h3 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2rem);
}
.experience-panel p { color: rgba(255, 250, 242, .76); }
.experience-panel hr {
  border: 0;
  border-top: 1px solid rgba(255, 250, 242, .14);
  margin: 26px 0;
}

/* Bienestar, entorno y amenities */
.wellness,
.attractions {
  background:
    radial-gradient(circle at top left, rgba(185, 133, 94, .16), transparent 32rem),
    rgba(255, 250, 242, .38);
}
.attractions {
  background:
    radial-gradient(circle at top left, rgba(185, 133, 94, .16), transparent 30rem),
    rgba(255, 250, 242, .58);
}
.attraction-cards .card { min-height: 330px; }
.attraction-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.65rem);
}
.amenities-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: clamp(16px, 2.5vw, 20px);
}
.amenities-strip span {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(185, 133, 94, .15);
  font-weight: 800;
}

/* Contacto */
.reservations-grid { align-items: start; }
.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding: 24px;
  background: var(--green-900);
  color: var(--white);
}
.contact-box a {
  color: var(--sand);
  font-weight: 750;
  word-break: break-word;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 28px);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-800);
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(20, 32, 27, .16);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  outline: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(185, 133, 94, .15);
}
.form-note { min-height: 24px; margin: 0; }



/* Reservas */
.contact-box span {
  color: rgba(255, 250, 242, .7);
  font-size: .94rem;
}
.booking-form { gap: 18px; }
.booking-type,
.extras-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.booking-type-title,
.extras-group legend {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  color: var(--green-800);
  font-weight: 850;
}
.choice-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.choice-card {
  position: relative;
  display: grid !important;
  min-height: 112px;
  gap: 8px !important;
  align-content: start;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(20, 32, 27, .13);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}
.choice-card:hover {
  transform: translateY(-1px);
  border-color: rgba(185, 133, 94, .55);
  background: rgba(255, 250, 242, .95);
}
.choice-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(70, 90, 77, .45);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
}
.choice-card::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 23px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
}
.choice-card.is-selected,
.choice-card:has(input:checked) {
  border-color: rgba(185, 133, 94, .95);
  background: rgba(185, 133, 94, .14);
  box-shadow: 0 12px 28px rgba(185, 133, 94, .16);
}
.choice-card.is-selected::before,
.choice-card:has(input:checked)::before {
  border-color: var(--terracotta-dark);
}
.choice-card.is-selected::after,
.choice-card:has(input:checked)::after {
  background: var(--terracotta-dark);
}
.choice-card input[type="radio"] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
.choice-card span {
  color: var(--green-800);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}
.choice-card small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.booking-panels { display: grid; gap: 16px; }
.booking-panel {
  display: none;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(20, 32, 27, .1);
  border-radius: 18px;
  background: rgba(255, 250, 242, .52);
}
.booking-panel.is-active { display: grid; }
.booking-panel h3 {
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.extras-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.extras-group legend { grid-column: 1 / -1; }
.extras-group label {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  color: var(--muted);
  font-weight: 750;
}
.contact-form input[type="radio"],
.contact-form input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--terracotta-dark);
}
.booking-summary {
  padding: 18px;
  background: rgba(255, 250, 242, .86);
}
.booking-summary strong { color: var(--green-800); }
.booking-summary p {
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 700px) {
  .choice-group,
  .form-grid,
  .extras-group {
    grid-template-columns: 1fr;
  }
  .choice-card {
    min-height: auto;
    padding: 16px 16px 16px 50px;
  }
  .choice-card::before {
    top: 18px;
    left: 17px;
  }
  .choice-card::after {
    top: 23px;
    left: 22px;
  }
  .booking-panel { padding: 16px; }
}

@media (max-width: 440px) {
  .choice-card {
    padding: 15px 14px 15px 48px;
  }
  .choice-card span {
    font-size: 1rem;
  }
  .choice-card small {
    font-size: .92rem;
  }
}


/* Footer */
.site-footer {
  padding: 42px 0;
  color: rgba(255, 250, 242, .74);
  background: var(--green-950);
}
.footer-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.back-top { color: var(--sand); font-weight: 850; }

/* Animación */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablets */
@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 14px;
    max-height: calc(100svh - var(--header-h) - 28px);
    overflow-y: auto;
    border: 1px solid rgba(20, 32, 27, .1);
    border-radius: 22px;
    background: rgba(246, 239, 228, .98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-menu a {
    width: 100%;
    padding: 12px 14px;
    font-size: .98rem;
  }
  .nav-cta { margin-left: 0; text-align: center; }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(20, 32, 27, .94), rgba(20, 32, 27, .78) 58%, rgba(20, 32, 27, .7)),
      linear-gradient(135deg, rgba(185, 133, 94, .24), transparent 45%),
      url("https://www.lodge33.cl/lounge33-quincho.png") center / cover no-repeat;
  }
  .hero-grid,
  .split-grid,
  .lounge-grid,
  .reservations-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    justify-self: start;
    width: 100%;
    max-width: 560px;
  }
  .split-copy { max-width: none; }
  .three-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-card img { aspect-ratio: 16 / 10; }
}

/* Celulares */
@media (max-width: 700px) {
  :root { --header-h: 72px; }
  .nav { min-height: var(--header-h); }
  .brand span { letter-spacing: .1em; }
  .nav-logo { width: 44px; max-height: 54px; }
  h1 { font-size: clamp(2.45rem, 12vw, 4rem); letter-spacing: -.05em; }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-grid { padding-block: 48px 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-points { display: grid; gap: 10px; }
  .hero-points li { border-radius: 18px; }
  .three-cols,
  .feature-grid { grid-template-columns: 1fr; }
  .card,
  .attraction-cards .card { min-height: auto; }
  .amenities-strip { gap: 10px; }
  .amenities-strip span { width: 100%; border-radius: 16px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 440px) {
  :root { --gutter: 14px; }
  .brand span { display: none; }
  .nav-toggle { width: 42px; height: 42px; }
  .hero-card { padding: 22px; }
  .hero-logo { width: 118px; }
  .photo-card img { aspect-ratio: 4 / 3; }
  .contact-form { padding: 18px; }
  .cabin-list article { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
