  :root {
    /* design tokens */
    --pine: #1a2a1e;
    --forest: #2d4a35;
    --sage: #7a9e7e;
    --mist: #c8d8cc;
    --snow: #f4f1ec;
    --glacier: #a8c5c0;
    --dusk: #8b7355;
    --ember: #c4622d;
    --cream: #faf7f2;
    --gold: #c9a84c;
  }

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

  html { scroll-behavior: smooth; font-size: 17px; overflow-x: hidden; max-width: 100%; }

  body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--cream);
    color: var(--pine);
    overflow-x: hidden;
    max-width: 100%;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 4rem;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(26,42,30,0.92);
    backdrop-filter: blur(12px);
  }
  .logo { display:flex; align-items:center; text-decoration:none; }
  .logo svg { height:44px; display:block; }
  .nav-links {
    display: flex; gap: 2.4rem; list-style: none;
    align-items: center;
    flex-wrap: nowrap;
  }
  .nav-links li { flex-shrink: 0; }
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mist);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--gold); }
  .cta-short { display: none; }
  .nav-cta {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pine);
    background: var(--gold);
    padding: 0.6rem 1.4rem;
    transition: background 0.3s, color 0.3s;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--snow); color: var(--pine); }
  .currency-toggle { position:relative; font-family:'Josefin Sans',sans-serif; font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; flex-shrink:0; }
  .currency-trigger { display:flex; align-items:center; gap:0.28rem; background:none; border:1px solid rgba(201,168,76,0.35); border-radius:20px; padding:0.28rem 0.7rem; cursor:pointer; color:var(--mist); font-family:inherit; font-size:inherit; letter-spacing:inherit; text-transform:inherit; font-weight:300; transition:border-color 0.2s, color 0.2s; }
  .currency-trigger:hover { border-color:rgba(201,168,76,0.65); }
  .currency-chevron { font-size:0.48rem; transition:transform 0.18s; display:inline-block; opacity:0.7; }
  .currency-toggle.open .currency-chevron { transform:rotate(180deg); }
  .currency-dropdown { display:none; position:absolute; top:calc(100% + 0.4rem); right:0; background:#1a2a1e; border:1px solid rgba(201,168,76,0.22); border-radius:6px; flex-direction:column; min-width:4.8rem; z-index:300; overflow:hidden; box-shadow:0 8px 24px rgba(0,0,0,0.35); }
  .currency-toggle.open .currency-dropdown { display:flex; }
  .currency-dropdown button { background:none; border:none; padding:0.5rem 0.9rem; cursor:pointer; color:rgba(244,241,236,0.45); font-family:'Josefin Sans',sans-serif; font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; font-weight:300; text-align:left; transition:color 0.15s, background 0.15s; }
  .currency-dropdown button:hover { background:rgba(201,168,76,0.08); color:rgba(244,241,236,0.85); }
  .currency-dropdown button.active { color:var(--gold); }
  .nav-toggle,
  .nav-backdrop,
  .nav-mobile-panel { display: none; }
  .nav-backdrop[hidden],
  .nav-mobile-panel[hidden] {
    display: none !important;
  }
  .nav-toggle {
    border: 1px solid rgba(200,216,204,0.32);
    background: rgba(26,42,30,0.42);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .nav-toggle span {
    width: 18px;
    height: 1.6px;
    background: var(--snow);
    transition: transform 0.22s ease, opacity 0.22s ease;
    transform-origin: center;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
  body.nav-open {
    overflow: hidden;
  }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    border: none;
    background: rgba(10, 20, 12, 0.48);
    z-index: 130;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.24s ease;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
  }
  .nav-mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    height: 100vh;
    z-index: 140;
    background: linear-gradient(160deg, rgba(16,31,23,0.98) 0%, rgba(34,59,44,0.98) 100%);
    border-left: 1px solid rgba(200,216,204,0.2);
    padding: 6.1rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    transform: translateX(100%);
    transition: transform 0.26s ease;
  }
  body.nav-open .nav-mobile-panel {
    transform: translateX(0);
  }
  .nav-mobile-link {
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mist);
    border-bottom: 1px solid rgba(122,158,126,0.26);
    padding: 0.8rem 0;
  }
  .nav-mobile-cta {
    margin-top: 0.6rem;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pine);
    background: var(--gold);
    text-align: center;
    padding: 0.9rem 0.95rem;
  }
  .nav-mobile-link:hover { color: var(--gold); }
  .nav-mobile-cta:hover { background: var(--snow); }

  @media (max-width: 1199px) and (min-width: 901px) {
    nav {
      padding: 1.15rem 1.6rem;
    }
    .logo svg { height:36px; }
    .nav-links {
      gap: 1.05rem;
    }
    .nav-links a {
      font-size: 0.62rem;
      letter-spacing: 0.14em;
    }
    .nav-cta {
      padding: 0.5rem 0.86rem;
      font-size: 0.58rem;
      letter-spacing: 0.14em;
    }
    .cta-full { display: none; }
    .cta-short { display: inline; }
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; align-items: center;
    overflow: hidden;
  }
  .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 7.5rem;
    background: linear-gradient(to bottom, rgba(18, 32, 23, 0) 0%, rgba(18, 32, 23, 0.42) 45%, rgba(250,247,242,0.96) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(10,20,12,0.25) 0%, rgba(10,20,12,0.6) 60%, rgba(10,20,12,0.85) 100%),
      url('./assets/hero.webp') center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
  }
  @keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.12); }
  }
  /* Mountain silhouette SVG overlay */
  .hero-mountain {
    position: absolute; bottom: 0; left: 0; right: 0;
    pointer-events: none;
    display: none;
  }
  .hero-shell {
    position: relative;
    z-index: 2;
    width: min(1380px, 100%);
    margin: 0 auto;
    padding: clamp(6.1rem, 6.4vw, 7rem) clamp(1.8rem, 4.6vw, 4rem) clamp(3.8rem, 4.5vw, 4.8rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 36vw);
    gap: clamp(1.6rem, 3.3vw, 4rem);
    align-items: center;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0;
    max-width: 700px;
    animation: fadeUp 1.2s ease both;
  }
  .hero-search-column {
    width: 100%;
    align-self: center;
    justify-self: end;
  }
  .hero-owner-inline {
    margin-top: 0.72rem;
    text-align: right;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    color: rgba(200,216,204,0.78);
  }
  .hero-owner-inline a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.55);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .hero-owner-inline a:hover {
    color: var(--snow);
    border-color: rgba(244,241,236,0.8);
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    animation: fadeUp 1.2s 0.2s ease both;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--snow);
    margin-bottom: 1.4rem;
    animation: fadeUp 1.2s 0.35s ease both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--glacier);
  }
  .hero-sub {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: var(--mist);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 470px;
    animation: fadeUp 1.2s 0.5s ease both;
  }
  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 1.2s 0.65s ease both;
  }
  .btn-primary {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    background: var(--ember);
    color: var(--snow);
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }
  .btn-primary:hover { background: #a8521f; transform: translateY(-2px); }
  .btn-outline {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: 1px solid rgba(244,241,236,0.5);
    color: var(--snow);
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }
  .btn-outline:hover { background: rgba(244,241,236,0.1); border-color: var(--snow); }

  /* scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 2rem; right: 4rem; z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    animation: fadeUp 1.2s 1s ease both;
  }
  .scroll-hint span {
    font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--mist); writing-mode: vertical-rl;
  }
  .scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: lineGrow 1.5s 1.5s ease both;
  }
  @keyframes lineGrow {
    from { height: 0; } to { height: 60px; }
  }

  /* ── SEARCH BAR ── */
  /* UI-EXPERIMENT START: hero-search smooth transition (reversible) */
  .search-bridge {
    position: relative;
    margin-top: 0;
    padding: 0;
    background: transparent;
  }
  .search-bridge::before {
    content: none;
  }
  .search-section {
    position: relative;
    z-index: 15;
    max-width: 590px;
    margin: 0 0 0 auto;
    background: linear-gradient(118deg, rgba(21,36,27,0.93) 0%, rgba(33,56,42,0.9) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200,216,204,0.2);
    border-radius: 22px;
    box-shadow: 0 26px 72px rgba(8,16,10,0.4);
    padding: 0.75rem 0.95rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    overflow: visible;
  }
  /* UI-EXPERIMENT START: stacked search layout (reversible by removing .search-section--stacked in HTML) */
  .search-section.search-section--stacked {
    max-width: clamp(360px, 35vw, 520px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.62rem 0.82rem 0.82rem;
  }

  @media (min-width: 1400px) {
    .hero-shell {
      width: min(1480px, 100%);
      padding: 6.9rem 3.4rem 4.6rem;
      grid-template-columns: minmax(0, 1fr) minmax(450px, 560px);
      gap: 3.2rem;
    }
    .hero-content {
      max-width: 760px;
    }
    .hero-title {
      font-size: clamp(4rem, 5.6vw, 6.1rem);
      line-height: 1.04;
    }
    .hero-sub {
      max-width: 31rem;
      font-size: 0.82rem;
    }
    .search-section.search-section--stacked {
      max-width: 560px;
      padding: 0.68rem 0.9rem 0.9rem;
    }
    .hero-owner-inline {
      width: 560px;
      margin-left: auto;
      text-align: center;
    }
  }
  .search-section.search-section--stacked .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(122,158,126,0.2);
    padding: 0.84rem 0.34rem 0.72rem;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .search-section.search-section--stacked .search-field:nth-child(n+3) {
    border-bottom: 1px solid rgba(122,158,126,0.2);
  }
  .search-section.search-section--stacked .search-field:last-of-type {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
  .search-section.search-section--stacked .search-btn {
    grid-column: auto;
    width: 100%;
    margin: 0.52rem 0 0;
    min-height: 3.18rem;
    border-radius: 10px;
  }
  .search-section.search-section--stacked .search-label {
    margin-bottom: 0.32rem;
  }
  .search-section.search-section--stacked .search-hint {
    margin-top: 0.22rem;
  }
  .search-section.search-section--stacked .search-guests {
    padding-top: 0.78rem;
    min-height: 84px;
  }
  .search-section.search-section--stacked .guest-display {
    min-width: 8.5ch;
  }
  .search-section.search-section--stacked .search-destino .search-date-btn,
  .search-section.search-section--stacked .search-date-range .search-date-btn,
  .search-section.search-section--stacked .search-guests .search-date-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    max-width: 100%;
    padding-right: 0;
  }
  .search-section.search-section--stacked .search-destino .search-date-btn::after,
  .search-section.search-section--stacked .search-date-range .search-date-btn::after,
  .search-section.search-section--stacked .search-guests .search-date-btn::after {
    position: static;
    transform: none;
    flex-shrink: 0;
    margin-left: 0.12rem;
  }
  .search-section.search-section--stacked .search-destino .search-date-btn:hover::after,
  .search-section.search-section--stacked .search-date-range .search-date-btn:hover::after,
  .search-section.search-section--stacked .search-guests .search-date-btn:hover::after,
  .search-section.search-section--stacked .search-destino:focus-within .search-date-btn::after,
  .search-section.search-section--stacked .search-date-range:focus-within .search-date-btn::after,
  .search-section.search-section--stacked .search-guests:focus-within .search-date-btn::after {
    transform: none;
  }
  .search-field.search-date-range {
    cursor: default;
  }
  .date-range-row {
    display: block;
    align-items: center;
  }
  .date-range-btn {
    padding-right: 1.45rem;
    font-size: 0.96rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-section.search-section--stacked #err-checkout {
    margin-top: 0.08rem;
  }
  .search-section.search-section--stacked .field-error {
    min-height: 0;
    margin-top: 0.16rem;
    line-height: 1.2;
  }
  .search-section.search-section--stacked .field-error:empty {
    display: none;
  }
  /* UI-EXPERIMENT END: stacked search layout */
  /* UI-EXPERIMENT END: hero-search smooth transition */
  .search-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(201,168,76,0.16) 0%, rgba(201,168,76,0) 36%);
    pointer-events: none;
  }
  .search-label {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(200,216,204,0.82); margin-bottom: 0.2rem; font-weight: 600;
  }
  .search-hint {
    margin-top: 0.28rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: rgba(200,216,204,0.44);
  }
  .search-field {
    min-width: 0;
    padding: 0.95rem 0.7rem 0.8rem;
    border-right: 1px solid rgba(122,158,126,0.2);
    border-bottom: 1px solid rgba(122,158,126,0.2);
    position: relative;
    z-index: 1;
    transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  }
  .search-field.picker-open {
    z-index: 36;
  }
  .search-field:nth-child(2n) { border-right: none; }
  .search-field:nth-child(n+3) { border-bottom: none; }
  .search-field.search-destino:not(.search-destino--fixed),
  .search-field.search-checkin,
  .search-field.search-checkout,
  .search-field.search-guests {
    cursor: pointer;
  }
  .search-destino--fixed { cursor: default; }
  .search-destino--fixed:hover { background: transparent; }
  .search-static-value {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    color: var(--snow);
    padding: 0.18rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }
  .search-static-value::after {
    content: '';
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8c5c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.75;
  }
  .search-field:hover {
    background: rgba(244, 241, 236, 0.06);
  }
  .search-field:focus-within {
    background: rgba(244, 241, 236, 0.09);
    box-shadow: inset 0 0 0 1px rgba(201,168,76,0.45);
    border-radius: 12px;
    border-right-color: transparent;
  }
  .search-field input, .search-field select, .search-date-btn {
    background: transparent; border: none; outline: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem; color: var(--snow);
    width: 100%;
  }
  .search-date-btn {
    text-align: left;
    cursor: pointer;
    padding: 0.18rem 1.7rem 0.18rem 0;
    padding-right: 1.7rem;
    position: relative;
    transition: color 0.2s ease;
  }
  .search-date-btn::after {
    content: '';
    width: 1rem;
    height: 1rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.75;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .search-field.search-checkin .search-date-btn::after,
  .search-field.search-checkout .search-date-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  }
  .search-field.search-date-range .search-date-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  }
  .search-field.search-destino .search-date-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8c5c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  }
  .search-field.search-guests .search-date-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  }
  .search-date-btn:hover::after,
  .search-field:focus-within .search-date-btn::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
  .search-field input::placeholder { color: var(--mist); opacity: 0.7; }
  .search-field select option { background: var(--pine); }
  .search-guests { min-width: 0; }
  .guest-display { color: var(--snow); display: block; }
  .search-guests-popover { position: absolute; width: min(320px, 92vw); background: var(--snow); border: 1px solid #dbe4dd; border-radius: 14px; box-shadow: 0 22px 45px rgba(18,32,22,0.24); padding: 1rem 1.2rem; z-index: 99; }
  .search-guests-popover[hidden] { display: none; }
  .sgp-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid #dde8de; }
  .sgp-row:last-of-type { border-bottom: none; }
  .sgp-name { font-size: 0.78rem; color: #48604f; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; }
  .sgp-sub { font-size: 0.68rem; color: #6a7f6f; margin-top: 0.15rem; letter-spacing: 0.04em; }
  .sgp-counter { display: flex; align-items: center; gap: 0.8rem; }
  .sgp-btn { width: 30px; height: 30px; border: 1px solid #b0c4b4; background: transparent; border-radius: 50%; cursor: pointer; font-size: 1.1rem; line-height: 1; color: var(--pine); display: flex; align-items: center; justify-content: center; padding: 0; transition: background 0.15s; }
  .sgp-btn:hover:not(:disabled) { background: #e6efe7; }
  .sgp-btn:disabled { opacity: 0.28; cursor: default; }
  .sgp-num { font-size: 0.9rem; color: #39503f; min-width: 1.4rem; text-align: center; font-weight: 600; }
  .sgp-done { width: 100%; margin-top: 0.8rem; padding: 0.55rem; background: var(--forest); color: var(--snow); border: none; border-radius: 6px; cursor: pointer; font-family: 'Josefin Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
  .sgp-done:hover { background: var(--pine); }
  .field-error {
    min-height: 0.82rem;
    margin-top: 0.26rem;
    font-size: 0.75rem;
    color: #ffb18c;
    letter-spacing: 0.04em;
  }
  .search-field.invalid {
    background: rgba(196, 98, 45, 0.14);
    border-radius: 10px;
  }
  .search-field.requires-attention {
    box-shadow: inset 0 0 0 1px rgba(201,168,76,0.55);
    background: rgba(201,168,76,0.08);
    animation: checkoutNudge 0.8s ease;
  }
  @keyframes checkoutNudge {
    0% { transform: translateX(0); }
    18% { transform: translateX(3px); }
    38% { transform: translateX(-2px); }
    58% { transform: translateX(2px); }
    100% { transform: translateX(0); }
  }
  .date-popover {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: -20px;
    width: min(720px, 92vw);
    background: var(--snow);
    border: 1px solid #dbe4dd;
    border-radius: 14px;
    box-shadow: 0 22px 45px rgba(18, 32, 22, 0.24);
    padding: 1rem;
    z-index: 120;
  }
  .date-popover[hidden] { display: none; }
  .date-popover-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pine);
    margin-bottom: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }
  .date-back-checkin {
    background: none;
    border: 1px solid rgba(74,96,79,0.35);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--sage);
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    font-weight: 400;
  }
  .date-back-checkin:hover {
    color: var(--forest);
    border-color: var(--sage);
    background: rgba(74,96,79,0.08);
  }
  .destino-popover {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: -20px;
    width: 300px;
    background: var(--snow);
    border: 1px solid #dbe4dd;
    border-radius: 14px;
    box-shadow: 0 22px 45px rgba(18, 32, 22, 0.24);
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
    z-index: 120;
  }
  .destino-popover[hidden] { display: none; }
  .destino-list button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.95rem 1.1rem;
    border: none;
    background: transparent;
    color: #39503f;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(122,158,126,0.1);
  }
  .destino-list button:last-child { border-bottom: none; }
  .destino-list button:hover {
    background: rgba(79, 122, 90, 0.15);
    color: var(--forest);
    font-weight: 600;
  }
  .destino-list button.selected {
    background: rgba(79, 122, 90, 0.25);
    color: var(--forest);
    font-weight: 600;
  }
  .date-popover-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
  }
  .date-nav {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: var(--pine);
    cursor: pointer;
    padding: 0 0.4rem;
  }
  .date-month {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pine);
    font-weight: 600;
  }
  .date-popover-months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }
  .date-load-more {
    grid-column: 1 / -1;
    background: none;
    border: 1px solid rgba(122,158,126,0.4);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .date-load-more:hover {
    background: var(--forest);
    color: var(--snow);
  }
  .date-month-col {
    border: 1px solid #e3ebe4;
    border-radius: 10px;
    padding: 0.6rem 0.55rem 0.55rem;
    background: #fcfdfa;
  }
  .date-month-col-title {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #48604f;
    font-weight: 600;
    margin-bottom: 0.42rem;
  }
  .date-weekdays, .date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.24rem;
  }
  .date-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #6a7f6f;
    text-transform: uppercase;
    font-weight: 600;
  }
  .date-day {
    border: none;
    background: transparent;
    border-radius: 8px;
    height: 42px;
    font-size: 0.9rem;
    color: #39503f;
    cursor: pointer;
  }
  .date-day:hover { background: #e6efe7; }
  .date-day.muted {
    color: #b7c4ba;
    cursor: not-allowed;
  }
  .date-day.selected {
    background: var(--forest);
    color: var(--snow);
  }
  .date-day.in-range {
    background: rgba(79, 122, 90, 0.25);
    color: #39503f;
  }
  .date-day.range-preview {
    background: rgba(79, 122, 90, 0.4);
    color: #39503f;
    text-decoration: underline;
    text-decoration-color: rgba(79, 122, 90, 0.6);
    text-underline-offset: 3px;
  }

  @media (max-width: 1200px) {
    .date-popover {
      width: min(620px, 90vw);
      padding: 0.88rem;
    }
    .date-month-col {
      padding: 0.52rem 0.46rem 0.46rem;
    }
    .date-day {
      height: 38px;
      font-size: 0.84rem;
    }
  }

  @media (max-width: 1024px) {
    .date-popover {
      width: min(520px, 92vw);
      left: 50%;
      transform: translateX(-50%);
    }
    .date-popover-months {
      grid-template-columns: 1fr;
      max-height: 52vh;
      overflow-y: auto;
      padding-right: 0.1rem;
    }
  }
  .search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    position: relative;
    padding: 1.08rem 2rem;
    background: linear-gradient(125deg, #cf6d37 0%, #b95827 100%);
    border: none; cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--snow);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    margin: 0.8rem 0 0;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(165, 73, 30, 0.34);
    grid-column: 1 / -1;
    width: 100%;
  }

  .search-btn::before {
    content: '';
    width: 0.95rem;
    height: 0.95rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23faf7f2' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
  }
  .search-btn:hover {
    background: linear-gradient(125deg, #d9773f 0%, #bd5f2d 100%);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(165, 73, 30, 0.42);
  }
  .search-btn:focus-visible {
    outline: 2px solid rgba(201,168,76,0.75);
    outline-offset: 2px;
  }

  .search-section .search-field,
  .search-section .search-btn {
    opacity: 0;
    transform: translateY(16px);
    animation: searchReveal 0.72s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
  }
  .search-section .search-field:nth-child(1) { animation-delay: 0.14s; }
  .search-section .search-field:nth-child(2) { animation-delay: 0.22s; }
  .search-section .search-field:nth-child(3) { animation-delay: 0.3s; }
  .search-section .search-field:nth-child(4) { animation-delay: 0.38s; }
  .search-section .search-btn { animation-delay: 0.46s; }

  @keyframes searchReveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── SECTION TEMPLATE ── */
  section { padding: 7rem 4rem; }
  .section-eyebrow {
    font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--ember); margin-bottom: 0.8rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.1;
    color: var(--pine); margin-bottom: 1.2rem;
  }
  .section-title em { font-style: italic; color: var(--forest); }
  .section-body {
    font-size: 0.82rem; letter-spacing: 0.05em; line-height: 1.9;
    color: #4a5c4e; max-width: 520px;
  }

  /* ── ALOJAMIENTOS ── */
  #alojamientos {
    background: var(--cream);
    padding-top: 3.4rem;
    scroll-margin-top: 85px;
  }
  #servicios, #adicionales, #nosotros, #propietarios, #testimonios {
    scroll-margin-top: 85px;
  }
  .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    gap: 2rem; margin-top: 3.5rem;
  }
  .property-card {
    background: white;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
  }
  .property-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,42,30,0.15); }
  .property-img {
    height: 240px; overflow: hidden; position: relative;
  }
  .property-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s;
  }
  .property-card:hover .property-img img { transform: scale(1.06); }
  .property-badge {
    position: absolute; top: 1rem; left: 1rem;
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    background: var(--pine); color: var(--gold);
    padding: 0.3rem 0.7rem;
  }
  .property-body { padding: clamp(1rem, 2.5vw, 1.6rem); }
  .property-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 4vw, 1.4rem); font-weight: 400;
    color: var(--pine); margin-bottom: 0.3rem;
  }
  .property-location {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); margin-bottom: 1rem;
  }
  .property-amenities {
    display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.2rem;
  }
  .amenity-tag {
    font-size: 0.65rem; letter-spacing: 0.08em;
    background: var(--pine); color: var(--mist);
    padding: 0.28rem 0.7rem;
  }
  .property-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--mist); padding-top: 1rem; gap: 0.8rem;
    flex-wrap: wrap;
  }
  .property-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
    color: var(--pine);
    min-width: 0;
    line-height: 1.2;
  }
  .property-price small {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.65rem;
    color: var(--sage);
    white-space: nowrap;
  }
  .property-btn {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ember); text-decoration: none;
    border-bottom: 1px solid var(--ember); padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
    margin-left: auto; flex-shrink: 0;
  }

  @media (max-width: 420px) {
    .property-btn {
      margin-left: 0;
    }
  }
  .property-btn:hover { color: var(--pine); border-color: var(--pine); }

  /* ── SERVICIOS ── */
  #servicios {
    background: var(--pine);
    position: relative; overflow: hidden;
  }
  #servicios::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(45,74,53,0.4) 0%, transparent 70%);
    pointer-events: none;
  }
  #servicios .section-title { color: var(--snow); }
  #servicios .section-body { color: var(--mist); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .service-card {
    border: 1px solid rgba(122,158,126,0.2);
    padding: 2rem;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
  }
  .service-card:hover {
    border-color: var(--gold);
    background: rgba(45,74,53,0.4);
  }
  .service-icon {
    font-size: 2rem; margin-bottom: 1rem;
    display: block;
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 400;
    color: var(--snow); margin-bottom: 0.5rem;
  }
  .service-desc {
    font-size: 0.75rem; letter-spacing: 0.04em; line-height: 1.8;
    color: var(--mist); opacity: 0.85;
  }
  .service-tag {
    display: inline-block; margin-top: 1rem;
    font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
    padding: 0.2rem 0.6rem;
  }
  .service-tag--conditional {
    color: rgba(180,196,182,0.75); border-color: rgba(180,196,182,0.2);
  }

  /* ── ADICIONALES ── */
  #adicionales { background: var(--cream); padding-bottom: 3rem; }
  .extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .extra-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid #e8e2d8;
  }
  .extra-img {
    height: 200px; overflow: hidden; position: relative;
  }
  .extra-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.82) saturate(0.55);
  }
  .extra-card:hover .extra-img img { transform: scale(1.04); filter: brightness(0.88) saturate(0.65); }
  .extra-soon-badge {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0.55rem 1rem;
    background: linear-gradient(to top, rgba(26,42,30,0.72) 0%, transparent 100%);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.82);
  }
  .extra-body { padding: 1.4rem 1.5rem 1.6rem; }
  .extra-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem; color: var(--pine); margin-bottom: 0.45rem; font-weight: 400;
  }
  .extra-desc {
    font-size: 0.72rem; color: #7a8a7e; line-height: 1.75;
  }

  /* ── NOSOTROS / STATS ── */
  #nosotros {
    background: var(--cream);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center;
  }
  .nosotros-image {
    position: relative;
  }
  .nosotros-image img {
    width: 100%; height: 520px; object-fit: cover;
    display: block;
  }
  .nosotros-accent {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 200px; height: 200px;
    border: 2px solid var(--gold);
    pointer-events: none;
  }
  .stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    margin-top: 2.5rem;
  }
  .stat-item { border-left: 2px solid var(--gold); padding-left: 1rem; }
  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300; color: var(--pine); line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); margin-top: 0.3rem;
  }

  /* ── PROPIETARIOS ── */
  #propietarios {
    background:
      linear-gradient(to right, rgba(26,42,30,0.95) 0%, rgba(26,42,30,0.8) 50%, rgba(26,42,30,0.5) 100%),
      url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat fixed;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  }
  #propietarios .section-title { color: var(--snow); }
  #propietarios .section-body { color: var(--mist); }
  .owner-benefits {
    list-style: none; margin-top: 2rem;
  }
  .owner-benefits li {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(122,158,126,0.2);
    font-size: 0.78rem; letter-spacing: 0.04em; line-height: 1.7;
    color: var(--mist);
  }
  .benefit-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
  .benefit-chevron { display: none; }
  .carousel-dots { display: none; }
  .benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--snow);
    display: block; margin-bottom: 0.2rem;
  }
  .owner-cta-box {
    background: rgba(200,216,204,0.08);
    border: 1px solid rgba(122,158,126,0.3);
    padding: 2.5rem;
    backdrop-filter: blur(8px);
  }
  .owner-cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 300; color: var(--snow);
    margin-bottom: 0.6rem;
  }
  .owner-cta-sub {
    font-size: 0.85rem; line-height: 1.8; color: var(--mist); margin-bottom: 1.8rem;
  }
  .owner-steps {
    list-style: none;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .owner-step {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1rem 0 1rem 0.5rem;
    border-bottom: 1px solid rgba(122,158,126,0.18);
    position: relative;
    border-left: 2px solid transparent;
    transition: border-left-color 0.25s ease, padding-left 0.25s ease;
  }
  .owner-step:last-child { border-bottom: none; }
  .owner-step:hover {
    border-left-color: var(--gold);
    padding-left: 1rem;
  }
  /* Línea conectora vertical entre pasos */
  .owner-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1.65rem;
    top: 3.1rem;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.22), transparent);
    pointer-events: none;
  }
  .owner-step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.7;
    line-height: 1;
    flex-shrink: 0;
    width: 2.4rem;
    text-align: right;
    transition: opacity 0.25s ease;
  }
  .owner-step:hover .owner-step-num { opacity: 1; }
  .owner-step-body { padding-top: 0.1rem; }
  .owner-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--snow);
    margin-bottom: 0.2rem;
    transition: color 0.25s ease;
  }
  .owner-step:hover .owner-step-title { color: var(--gold); }
  .owner-step-desc {
    font-size: 0.74rem;
    line-height: 1.7;
    color: var(--mist);
    opacity: 0.85;
  }

  .simulator {
    background: rgba(26,42,30,0.5);
    padding: 1.5rem; margin-bottom: 1.5rem;
  }
  .sim-title {
    font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .sim-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.8rem;
  }
  .sim-row label {
    font-size: 0.72rem; color: var(--mist);
  }
  .sim-row input[type=range] {
    width: 45%; accent-color: var(--gold);
  }
  .sim-row .sim-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--snow); min-width: 60px; text-align: right;
  }
  .sim-result {
    border-top: 1px solid rgba(122,158,126,0.3); padding-top: 1rem; margin-top: 1rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .sim-result-label {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mist);
  }
  .sim-result-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--gold);
  }
  .form-group { margin-bottom: 0.8rem; }
  .form-group input, .form-group select {
    width: 100%; padding: 0.75rem 1rem;
    background: rgba(244,241,236,0.06);
    border: 1px solid rgba(122,158,126,0.25); border-radius: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.78rem; color: var(--snow); outline: none;
    transition: border-color 0.3s;
  }
  .form-group input::placeholder { color: rgba(200,216,204,0.5); }
  .form-group input:focus, .form-group select:focus { border-color: var(--gold); }
  .form-group select option { background: var(--pine); }
  .form-submit {
    width: 100%; padding: 0.9rem;
    background: var(--ember); border: none; cursor: pointer;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--snow); transition: background 0.3s;
    line-height: 1.5;
  }
  .form-submit:hover { background: #a8521f; }

  /* ── TESTIMONIOS ── */
  #testimonios {
    background:
      radial-gradient(circle at 85% 18%, rgba(122,158,126,0.1) 0%, rgba(122,158,126,0) 40%),
      linear-gradient(180deg, #14241a 0%, #102016 100%);
  }
  #testimonios .section-title { color: var(--snow); }
  #testimonios .section-title em { color: var(--glacier); }
  .testimonios-head {
    text-align:center;
    max-width:540px;
    margin:0 auto;
  }
  .testimonios-manifesto {
    max-width:780px;
    margin:2.2rem auto 0;
    padding:1.35rem 1.6rem 1.45rem;
    border:1px solid rgba(122,158,126,0.24);
    background:linear-gradient(150deg, rgba(18,34,24,0.78) 0%, rgba(15,30,21,0.68) 100%);
    box-shadow:0 18px 34px rgba(6,12,9,0.22);
  }
  .manifesto-kicker {
    font-size:0.58rem;
    letter-spacing:0.24em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:0.9rem;
  }
  .manifesto-lines {
    max-width:690px;
  }
  .manifesto-lines p {
    margin:0;
    font-size:0.84rem;
    line-height:1.82;
    letter-spacing:0.035em;
    color:var(--mist);
  }
  .manifesto-lines p:first-child {
    font-family:'Cormorant Garamond', serif;
    font-size:1.2rem;
    font-style:italic;
    letter-spacing:0.01em;
    color:var(--snow);
    margin-bottom:0.42rem;
  }
  .manifesto-lines p + p {
    margin-top:0.74rem;
  }
  .testimonios-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .testimonio {
    border: 1px solid rgba(122,158,126,0.2);
    padding: 2rem; position: relative;
  }
  .testimonio::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; line-height: 1;
    color: var(--gold); opacity: 0.3;
    position: absolute; top: 0.5rem; left: 1.2rem;
  }
  .testimonio-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-style: italic; font-weight: 300;
    color: var(--mist); line-height: 1.7; margin-bottom: 1.2rem;
  }
  .testimonio-author {
    font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage);
  }
  .stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 0.6rem; }

  /* ── CONTACT / FOOTER ── */
  footer {
    background: #0f1a11;
    padding: 2.5rem 4rem 1.5rem;
  }
  .footer-grid {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(122,158,126,0.15);
    margin-bottom: 2rem;
  }
  .footer-brand { max-width: 280px; }
  .footer-col { min-width: 160px; }
  .footer-logo-link { display: block; margin-bottom: 1.2rem; }
  .footer-logo-svg { height: 42px; display: block; }
  .footer-desc {
    font-size: 0.75rem; line-height: 1.8; color: var(--sage); max-width: 260px;
  }
  .footer-social {
    display: flex; gap: 0.75rem; margin-top: 1.5rem;
  }
  .footer-social-link {
    color: rgba(122,158,126,0.55); text-decoration: none;
    transition: color 0.3s;
    display: flex; align-items: center;
  }
  .footer-social-link:hover { color: var(--gold); }
  .footer-col h4 {
    font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a {
    font-size: 0.75rem; color: var(--sage); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul a:hover { color: var(--snow); }
  .contact-item {
    font-size: 0.75rem; color: var(--sage); margin-bottom: 0.7rem;
    display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap;
  }
  .contact-item a {
    color: var(--sage); text-decoration: none; transition: color 0.3s;
  }
  .contact-item a:hover { color: var(--snow); }
  .contact-wa-tag {
    font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(122,158,126,0.45); margin-left: 0.4rem;
  }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy {
    font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(122,158,126,0.5);
  }
  .footer-legal {
    display: flex; gap: 2rem;
  }
  .footer-legal a {
    font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(122,158,126,0.5);
    text-decoration: none; transition: color 0.3s;
  }
  .footer-legal a:hover { color: var(--sage); }

  /* ── TOAST ── */
  .toast {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
    background: var(--forest); color: var(--snow);
    padding: 1rem 1.5rem; font-size: 0.78rem; letter-spacing: 0.05em;
    transform: translateY(6rem); opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    pointer-events: none;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
        .testimonios-manifesto {
          margin-top: 1.6rem;
          padding: 1rem 1rem 1.08rem;
          box-shadow: 0 12px 24px rgba(6,12,9,0.18);
        }
        .manifesto-kicker {
          font-size: 0.55rem;
          letter-spacing: 0.2em;
          margin-bottom: 0.75rem;
        }
        .manifesto-lines p {
          font-size: 0.77rem;
          line-height: 1.75;
        }
        .manifesto-lines p:first-child {
          font-size: 1.06rem;
          margin-bottom: 0.34rem;
        }
        .manifesto-lines p + p {
          margin-top: 0.58rem;
        }

    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled {
      background: rgba(25, 56, 40, 0.74);
      backdrop-filter: blur(10px);
    }
    .nav-links { display: none; }
    .nav-toggle {
      display: inline-flex;
    }
    .nav-backdrop {
      display: block;
    }
    section { padding: 4rem 1.5rem; }
    .hero {
      height: auto;
      min-height: 38rem;
      align-items: flex-end;
    }
    .hero::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 4rem;
      background: linear-gradient(to bottom, rgba(26,42,30,0) 0%, rgba(26,42,30,0.5) 70%, rgba(26,42,30,0.75) 100%);
      border-radius: 0;
      z-index: 1;
      pointer-events: none;
    }
    .hero-shell {
      width: 100%;
      padding: 0;
      display: block;
    }
    .hero-mountain {
      display: none;
    }
    .search-bridge {
      margin-top: 0;
      background: transparent;
      padding: 0 0 0.5rem;
    }
    .hero-owner-inline {
      width: min(82vw, 22rem);
      margin: 0.4rem auto 0;
      text-align: center;
      font-size: 0.64rem;
      letter-spacing: 0.06em;
    }
    .search-section {
      margin: 0 auto;
      width: min(82vw, 22rem);
      max-width: 100%;
      border-radius: 22px;
      border: 1px solid rgba(200,216,204,0.11);
      padding: 0.65rem 0.95rem 0.95rem;
      gap: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
      text-align: left;
      background: rgba(34, 56, 41, 0.84);
      box-shadow: 0 18px 34px rgba(8,16,10,0.18);
      backdrop-filter: blur(10px);
    }
    .search-section.search-section--stacked {
      display: flex;
      flex-direction: column;
      padding: 0.45rem 0.7rem 0.6rem;
      width: min(82vw, 22rem);
      max-width: 100%;
    }
    .search-section.search-section--stacked .search-guests {
      min-height: 0;
    }
    .search-section.search-section--stacked .search-field {
      border-right: none;
      border-bottom: 1px solid rgba(122,158,126,0.16);
      padding: 0.5rem 0.18rem 0.4rem;
      text-align: left;
      min-height: 72px;
    }
    .search-section.search-section--stacked .search-field:nth-child(n+3) {
      border-bottom: 1px solid rgba(122,158,126,0.16);
    }
    .search-section.search-section--stacked .search-field:last-of-type {
      border-bottom: none;
    }
    .search-section.search-section--stacked .search-btn {
      width: 100%;
      margin: 0.4rem 0 0;
    }
    .search-field {
      min-width: 0;
      border-right: 1px solid rgba(122,158,126,0.16);
      border-bottom: 1px solid rgba(122,158,126,0.16);
      padding: 0.95rem 0.55rem 0.8rem;
      text-align: left;
      background: transparent;
      border-left: none;
      border-top: none;
      border-radius: 0;
    }
    .search-field:nth-child(2n) { border-right: none; }
    .search-field:nth-child(n+3) { border-bottom: none; }
    .search-label {
      margin-bottom: 0.22rem;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
    }
    .search-hint {
      font-size: 0.64rem;
      margin-top: 0.12rem;
    }
    .search-date-btn {
      text-align: left;
      padding: 0;
      padding-right: 1.2rem;
    }
    .search-date-btn::after {
      right: 0;
    }
    .search-field input, .search-field select, .search-date-btn,
    .search-static-value {
      font-size: 0.86rem;
    }
    .search-btn {
      grid-column: 1 / -1;
      margin: 0.75rem 0.25rem 0;
      width: calc(100% - 0.5rem);
      align-self: center;
      border-radius: 14px;
      min-height: 2.6rem;
      font-size: 0.72rem;
    }
    body.date-picker-open {
      overflow: hidden;
    }
    .date-popover {
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      width: calc(100vw - 2rem);
      max-width: 420px;
      padding: 0.78rem;
      z-index: 220;
    }
    .date-popover-months {
      grid-template-columns: 1fr;
      gap: 0.45rem;
      max-height: 62vh;
      overflow-y: auto;
      overflow-x: hidden;
      padding-right: 0.08rem;
    }
    .date-month {
      font-size: 0.72rem;
      white-space: nowrap;
    }
    .date-day {
      height: 34px;
      font-size: 0.8rem;
    }
    .date-month-col-title {
      font-size: 0.72rem;
    }
    .destino-popover {
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      width: calc(100vw - 2rem);
      max-width: 300px;
      max-height: 56vh;
      z-index: 220;
    }
    #nosotros, #propietarios { grid-template-columns: 1fr; gap: 3rem; }
    .nosotros-accent { right: 1rem; bottom: 1rem; }
    #propietarios {
      background:
        linear-gradient(to right, rgba(26,42,30,0.95) 0%, rgba(26,42,30,0.8) 50%, rgba(26,42,30,0.5) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80') center/cover no-repeat scroll;
    }
    .owner-cta-box { padding: 1.5rem; }
    .owner-steps { padding-left: 0; margin-bottom: 1.4rem; }
    .owner-step {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0 0 1.8rem 0;
      border-bottom: none;
      border-left: none;
    }
    .owner-step:last-child { padding-bottom: 0; }
    .owner-step:hover {
      border-left-color: transparent;
      padding-left: 0;
    }
    .owner-step-num {
      width: 2.4rem;
      min-width: 2.4rem;
      height: 2.4rem;
      border-radius: 50%;
      border: 1px solid rgba(201,168,76,0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      color: var(--gold);
      opacity: 1;
      text-align: center;
      letter-spacing: 0.03em;
      background: transparent;
    }
    .owner-step:not(:last-child)::after {
      left: 1.2rem;
      top: 2.4rem;
      bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, rgba(201,168,76,0.3), transparent);
    }
    .owner-step-body { padding-top: 0.2rem; }
    .owner-step-title { font-size: 1.05rem; margin-bottom: 0.25rem; }
    .owner-step-desc { display: block; font-size: 0.72rem; line-height: 1.65; }
    .extras-grid { gap: 1rem; }
    .footer-grid { flex-wrap: wrap; gap: 2rem; }
    .footer-brand { max-width: none; flex: 0 0 100%; }
    .footer-desc { max-width: none; }
    .hero-content {
      padding: 5.2rem 1.5rem 1rem;
      max-width: 30rem;
      z-index: 2;
    }
    .hero-title {
      font-size: clamp(3.0rem, 6.5vw, 6.5rem);
    }
    .hero-sub {
      font-size: 0.75rem;
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }
    .scroll-hint {
      display: none;
    }
  }

  @media (max-width: 540px) {
    .extras-grid { grid-template-columns: 1fr; gap: 0.7rem; }
    footer { padding: 3rem 1.5rem 2rem; }
    .footer-grid { flex-direction: column; }
    .footer-brand { max-width: none; flex: 0 0 auto; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .footer-legal { flex-wrap: wrap; gap: 1rem; }
  }

  @media (max-width: 430px) {
    nav { padding: 0.6rem 1rem; }
    .logo svg { height: 30px; }
    .nav-toggle { width: 36px; height: 36px; border-radius: 10px; gap: 4px; }
    #alojamientos, #servicios, #adicionales, #nosotros, #propietarios, #testimonios {
      scroll-margin-top: 52px;
    }
    .hero-content {
      padding: 3.6rem 1.2rem 1rem;
    }
    .hero-eyebrow {
      font-size: 0.56rem;
      letter-spacing: 0.2em;
    }
    .hero-title {
      font-size: clamp(2.4rem, 8vw, 3rem);
      line-height: 1.08;
    }
    .hero-sub { display: none; }
    .hero-actions { gap: 0.6rem; }
  }

  /* ── MOBILE CAROUSELS + ACCORDION (max 768px) ── */
  @media (max-width: 768px) {

    /* 1. Servicios — carrusel horizontal */
    .services-grid {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0;
      margin-top: 2rem;
    }
    .services-grid::-webkit-scrollbar { display: none; }
    .service-card {
      flex: 0 0 100%;
      scroll-snap-align: center;
    }

    /* 2. Experiencias — carrusel horizontal */
    .extras-grid {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0;
      margin-top: 2rem;
      grid-template-columns: unset;
    }
    .extras-grid::-webkit-scrollbar { display: none; }
    .extra-card {
      flex: 0 0 100%;
      scroll-snap-align: center;
    }

    /* 3. Beneficios — acordeón */
    .owner-benefits li {
      cursor: pointer;
      user-select: none;
    }
    .owner-benefits li > div {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
    }
    .benefit-title {
      flex: 1;
      margin-bottom: 0;
    }
    .benefit-chevron {
      display: block;
      flex-shrink: 0;
      color: var(--sage);
      transition: transform 0.3s ease;
    }
    .benefit-desc {
      flex: 0 0 100%;
      display: none;
      padding-top: 0.5rem;
      font-size: 0.75rem;
      line-height: 1.7;
      color: var(--mist);
    }
    .benefit-item.open .benefit-desc { display: block; }
    .benefit-item.open .benefit-chevron { transform: rotate(180deg); }

    /* Dots para carruseles */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.75rem;
    }
    .carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(122,158,126,0.35);
      transition: background 0.3s, width 0.3s, border-radius 0.3s;
      cursor: pointer;
    }
    .carousel-dot.active {
      background: var(--gold);
      width: 18px;
      border-radius: 3px;
    }
  }

  @media (min-width: 901px) and (max-width: 1220px) {
    .hero {
      min-height: 730px;
    }
    .hero-shell {
      padding: clamp(5.8rem, 6.2vw, 6.5rem) clamp(1.2rem, 2.8vw, 2.2rem) clamp(3.3rem, 4vw, 3.9rem);
      grid-template-columns: minmax(0, 1fr) minmax(300px, 40vw);
      gap: clamp(1.2rem, 2.3vw, 2rem);
      align-items: center;
    }
    .hero-content {
      max-width: 100%;
    }
    .hero-title {
      font-size: clamp(3rem, 5.7vw, 4.8rem);
      line-height: 1.04;
    }
    .hero-sub {
      max-width: 30rem;
      font-size: 0.78rem;
      line-height: 1.74;
    }
    .search-section {
      max-width: min(40vw, 430px);
    }
    .search-section.search-section--stacked {
      max-width: clamp(300px, 40vw, 420px);
      padding: 0.56rem 0.72rem 0.72rem;
    }
    .search-section.search-section--stacked .search-field {
      min-height: 80px;
      padding: 0.72rem 0.24rem 0.62rem;
    }
    .search-section.search-section--stacked .search-label {
      font-size: 0.64rem;
      letter-spacing: 0.2em;
    }
    .search-section.search-section--stacked .search-hint {
      font-size: 0.64rem;
    }
    .search-section.search-section--stacked .search-date-btn {
      font-size: 0.9rem;
    }
    .search-section.search-section--stacked .search-btn {
      min-height: 2.95rem;
      font-size: 0.72rem;
    }
    .hero-owner-inline {
      width: clamp(300px, 40vw, 420px);
      margin-left: auto;
      font-size: 0.62rem;
      text-align: center;
    }
  }

  @media (max-width: 680px) {
    .search-section {
      width: min(90vw, 28rem);
      display: flex;
      flex-direction: column;
      text-align: center;
    }
    .search-field {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid rgba(122,158,126,0.16);
      padding: 0.9rem 0.2rem 0.8rem;
      text-align: center;
    }
    .search-field:nth-child(n+3) {
      border-bottom: 1px solid rgba(122,158,126,0.16);
    }
    .search-field:last-of-type {
      border-bottom: none;
    }
    .search-date-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.44rem;
      text-align: center;
      padding: 0;
      width: 100%;
      margin: 0 auto;
    }
    .search-date-btn::after {
      position: static;
      top: auto;
      right: auto;
      transform: none;
      flex-shrink: 0;
    }
    .search-date-btn:hover::after,
    .search-field:focus-within .search-date-btn::after {
      transform: none;
    }
    .search-btn {
      width: 100%;
      margin: 0.7rem 0 0;
    }
    .date-popover {
      top: 53%;
      max-width: 360px;
      padding: 0.7rem;
    }
    .date-popover-months {
      max-height: 52vh;
    }
    .date-day {
      height: 32px;
      font-size: 0.78rem;
    }
    .search-section.search-section--stacked {
      width: min(82vw, 22rem);
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .search-section.search-section--stacked .search-field {
      width: 100%;
      text-align: left;
      border-right: none;
      border-bottom: 1px solid rgba(122,158,126,0.16);
      padding: 0.5rem 0.12rem 0.4rem;
    }
    .search-section.search-section--stacked .search-field:last-of-type {
      border-bottom: none;
    }
    .search-section.search-section--stacked .search-date-btn {
      justify-content: flex-start;
      text-align: left;
      margin: 0;
    }
    .search-section.search-section--stacked .search-destino .search-date-btn,
    .search-section.search-section--stacked .search-date-range .search-date-btn {
      display: inline-flex;
      align-items: center;
      width: auto;
      max-width: 100%;
      gap: 0.45rem;
      padding-right: 0;
      margin: 0;
    }
    .search-section.search-section--stacked .search-destino .search-date-btn::after,
    .search-section.search-section--stacked .search-date-range .search-date-btn::after {
      position: static;
      top: auto;
      right: auto;
      transform: none;
      margin-left: 0.1rem;
    }
    .search-section.search-section--stacked .search-destino .search-date-btn:hover::after,
    .search-section.search-section--stacked .search-date-range .search-date-btn:hover::after,
    .search-section.search-section--stacked .search-destino:focus-within .search-date-btn::after,
    .search-section.search-section--stacked .search-date-range:focus-within .search-date-btn::after {
      transform: none;
    }
    .hero-owner-inline {
      width: min(90vw, 28rem);
      font-size: 0.62rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .search-section .search-field,
    .search-section .search-btn {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
