:root {
    /* Three colors only: black, white, one accent — everything else below
       is just an opacity variant of black or white, not a new hue. */
    --black: #14181A;
    --white: #F5F3EE;
    --accent: #8FAE86;

    --ink: var(--white);
    --ink-soft: rgba(245,243,238,0.65);
    --paper: var(--black);
    --panel: var(--black);
    --sage: var(--accent);
    --sage-deep: var(--accent);
    --sea: var(--accent);
    --sea-deep: var(--accent);
    --line: rgba(245,243,238,0.14);
    --shadow: rgba(0,0,0,0.45);
    --surface-dark: var(--black);
    --on-dark: var(--white);
    --on-dark-soft: rgba(245,243,238,0.7);
    --on-dark-soft2: rgba(245,243,238,0.55);
    --on-dark-soft3: rgba(245,243,238,0.6);
    --on-dark-line: rgba(245,243,238,0.12);
    --on-dark-icon-bg: rgba(245,243,238,0.14);
    --surface-light: var(--white);
    --on-light: var(--black);
    --on-light-soft: rgba(20,24,26,0.62);
    --on-light-soft2: rgba(20,24,26,0.5);
    --on-light-line: rgba(20,24,26,0.14);
    --on-light-panel: rgba(20,24,26,0.05);
    color-scheme: dark;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--paper); color: var(--ink);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6; -webkit-font-smoothing: antialiased; width: 100%; overflow-x: hidden;
  }
  h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
  a { color: inherit; }
  img, svg { max-width: 100%; display: block; }
  .copy-wrap { max-width: 1320px; margin: 0 auto; padding: 0 5vw; }
  .text-wrap { max-width: 620px; }
  section { padding: 110px 0; }
  @media (max-width: 900px) { section { padding: 64px 0; } }

  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; letter-spacing: 0.07em; color: var(--ink-soft); }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-deep); flex-shrink: 0; }

  /* NAV — floating glass pill, transparent -> solid on scroll */
  header.nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%); z-index: 100;
    width: min(1180px, 92vw);
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    color: #fff;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, top .3s ease, padding .3s ease;
  }
  header.nav.solid {
    top: 14px;
    background: color-mix(in srgb, var(--paper) 90%, transparent);
    border-color: var(--line);
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(20,24,26,0.14);
    padding: 12px 22px;
  }
  .brand { font-size: 1.08rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
  .brand-mark { width: 26px; height: 26px; transition: transform .4s ease; }
  .brand:hover .brand-mark { transform: rotate(18deg); }
  .nav-links { display: flex; gap: 32px; font-size: 0.9rem; }
  .nav-links a { text-decoration: none; opacity: 0.92; position: relative; padding-bottom: 3px; }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
    background: currentColor; transition: width .25s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    text-decoration: none; padding: 10px 20px; border-radius: 999px; font-size: 0.86rem; font-weight: 600;
    background: #fff; color: var(--surface-dark);
    transition: background .25s, color .25s, transform .2s, box-shadow .2s;
    display: inline-block;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
  header.nav.solid .nav-cta { background: var(--surface-dark); color: var(--on-dark); }

  .nav-toggle {
    display: none; width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.32); background: transparent; color: inherit;
    cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0;
  }
  header.nav.solid .nav-toggle { border-color: var(--line); }

  .nav-mobile-panel {
    position: fixed; top: 78px; left: 50%; transform: translateX(-50%);
    width: min(320px, 88vw); z-index: 99;
    background: var(--surface-light); color: var(--on-light);
    border-radius: 20px; border: 1px solid var(--on-light-line);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    padding: 18px; display: none; flex-direction: column; gap: 4px;
  }
  .nav-mobile-panel.open { display: flex; }
  .nav-mobile-panel a {
    text-decoration: none; color: var(--on-light); font-size: 0.98rem; font-weight: 500;
    padding: 12px 10px; border-radius: 10px;
  }
  .nav-mobile-panel a:hover { background: var(--on-light-panel); }
  .nav-mobile-panel .nav-cta {
    text-align: center; margin-top: 8px; background: var(--surface-dark); color: var(--on-dark);
  }

  @media (max-width: 860px) {
    header.nav { padding: 12px 18px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
  }

  /* HERO — true full-bleed */
  .hero { position: relative; width: 100vw; height: 100vh; min-height: 640px; overflow: hidden; background: #16232a; }
  .hero img.scene, .hero svg.scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .hero-scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: rgba(6,14,18,0.24);
  }
  .hero-fade-top, .hero-fade-bottom, .hero-text-scrim { position: absolute; left: 0; right: 0; z-index: 2; pointer-events: none; }
  .hero-fade-top { top: 0; height: 30%; background: linear-gradient(180deg, rgba(4,10,13,0.65), rgba(4,10,13,0)); }
  .hero-text-scrim {
    bottom: 0; height: 62%;
    background: linear-gradient(0deg, rgba(4,10,13,0.82) 0%, rgba(4,10,13,0.45) 55%, rgba(4,10,13,0) 100%);
  }
  .hero-fade-bottom { bottom: 0; height: 14%; background: linear-gradient(0deg, var(--paper) 0%, transparent 100%); }
  .hero-copy { position: absolute; left: 5vw; bottom: 14vh; z-index: 3; max-width: 780px; }
  .hero-copy .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 22px; }
  .hero-copy .eyebrow .dot { background: var(--sage); }
  .hero-copy h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; line-height: 1.04; }
  .hero-copy p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-top: 22px; max-width: 46ch; }
  .hero-ctas { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
  .btn-primary {
    background: #fff; color: var(--surface-dark); text-decoration: none; padding: 15px 30px;
    border-radius: 999px; font-size: 0.96rem; font-weight: 600; border: none; cursor: pointer;
  }
  .btn-ghost {
    color: #fff; text-decoration: none; padding: 15px 26px; border: 1px solid rgba(255,255,255,0.5);
    border-radius: 999px; font-size: 0.96rem;
  }
  .hero-bar {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
    display: flex; justify-content: space-between; align-items: center;
    padding: 26px 5vw; color: #fff; font-size: 0.84rem;
    border-top: 1px solid rgba(255,255,255,0.22);
  }
  .hero-bar .facts { display: flex; gap: 44px; }
  .hero-bar .facts .n { font-size: 1.3rem; font-weight: 600; display: block; }
  .hero-bar .facts .l { opacity: 0.75; font-size: 0.78rem; }
  .scroll-cue { display: flex; align-items: center; gap: 8px; opacity: 0.85; }
  @media (max-width: 720px) {
    .hero-bar .facts { gap: 28px; }
  }

  /* INTRO — full width band, centered readable copy */
  .intro { position: relative; background: var(--paper); overflow: hidden; }
  .intro-photo {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    transform: translate(calc(var(--px, 0) * 22px), calc(var(--py, 0) * 22px));
    transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
  }
  .intro-photo::before {
    content: ''; position: absolute; inset: -6%;
    background-image: url('images/intro.jpg');
    background-size: 112% auto; background-position: 50% 50%;
    opacity: 0.16; filter: grayscale(15%);
    animation: introPan 26s ease-in-out infinite alternate;
  }
  .intro-fade {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(180deg, var(--paper) 0%, transparent 35%, transparent 65%, var(--paper) 100%),
                linear-gradient(90deg, var(--paper) 0%, transparent 20%, transparent 80%, var(--paper) 100%);
  }
  .intro-grid { position: relative; z-index: 1; }
  @keyframes introPan {
    from { transform: scale(1) translate(0, 0); }
    to { transform: scale(1.09) translate(-1.5%, -1%); }
  }
  @media (prefers-reduced-motion: reduce) { .intro-photo { animation: none; } }
  .intro-inner { display: flex; justify-content: space-between; gap: 60px; align-items: flex-end; }
  @media (max-width: 900px) { .intro-inner { flex-direction: column; align-items: flex-start; gap: 24px; } }
  .intro h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.32; font-weight: 400; max-width: 22ch; }
  .intro h2 .muted { color: var(--ink-soft); }

  /* SERVICES band — full width, edge cards */
  .amenities { background: var(--panel); }
  .amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 860px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
  .amen-card {
    padding: 50px 5vw; border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 20px; min-height: 220px; justify-content: space-between;
  }
  .amen-grid .amen-card:last-child { border-right: none; }
  .amen-card.active { background: var(--surface-dark); color: var(--on-dark); }
  .amen-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--paper); display: flex; align-items: center; justify-content: center; color: var(--ink); }
  .amen-card.active .amen-icon { background: var(--on-dark-icon-bg); color: var(--on-dark); }
  .amen-icon svg { width: 20px; height: 20px; }
  .amen-card h3 { font-size: 1.05rem; font-weight: 500; }
  .amen-card.active h3 { color: var(--on-dark); }
  .amen-card p { font-size: 0.86rem; color: var(--ink-soft); margin: 6px 0 0; }
  .amen-card.active p { color: var(--on-dark-soft); }

  /* STATS — full width band */
  .stats { text-align: center; background: var(--paper); }
  .stats-head { max-width: 720px; margin: 0 auto; }
  .stats-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 400; margin-top: 18px; line-height: 1.25; }
  .stats-row { display: flex; justify-content: center; margin-top: 64px; flex-wrap: wrap; }
  .stat-item { padding: 0 52px; position: relative; }
  .stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
  .stat-item .num { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 300; }
  .stat-item .lbl { font-size: 0.85rem; color: var(--ink-soft); margin-top: 8px; }
  @media (max-width: 720px) { .stat-item { padding: 16px 26px; } .stat-item + .stat-item::before { display:none; } }

  /* ROOMS — full-bleed alternating rows */
  .rooms { background: var(--paper); }
  .rooms-head { padding: 0 5vw 60px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
  .rooms-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 400; max-width: 14ch; }
  .rooms-head p { color: var(--ink-soft); font-size: 0.95rem; max-width: 36ch; margin: 0; }
  .room-row { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 74vh; }
  .room-row:nth-child(even) { direction: rtl; }
  .room-row:nth-child(even) > * { direction: ltr; }
  @media (max-width: 900px) { .room-row { grid-template-columns: 1fr; min-height: auto; } .room-row:nth-child(even) { direction: ltr; } }
  .room-photo { position: relative; overflow: hidden; min-height: 420px; }
  .room-photo svg, .room-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .room-info { display: flex; flex-direction: column; justify-content: center; padding: 60px 6vw; }
  .room-info .idx { font-size: 0.82rem; color: var(--ink-soft); letter-spacing: 0.06em; margin-bottom: 18px; }
  .room-info h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 400; }
  .room-info .cap { font-size: 0.92rem; color: var(--sage-deep); font-weight: 600; margin-top: 12px; }
  .room-info p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 16px; max-width: 40ch; }

  /* GALLERY — real photo grid */
  .gallery { background: var(--paper); }
  .gallery-head { padding: 0 5vw 40px; }
  .gallery-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 400; }
  .gallery-head p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 12px; max-width: 46ch; }
  .gallery-grid { padding: 0 5vw; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  @media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
  .gallery-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
  .gallery-item:hover img { transform: scale(1.07); }
  .gallery-item .cap {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px;
    font-size: 0.76rem; color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  }

  /* LOCATION — full width split */
  .location { background: var(--panel); }
  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; }
  @media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
  .loc-text { padding: 80px 6vw; }
  .loc-text h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 400; margin-top: 16px; max-width: 16ch; }
  .dist-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
  .dist-item { display: flex; gap: 18px; align-items: flex-start; }
  .dist-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--sea-deep); }
  .dist-icon svg { width: 22px; height: 22px; }
  .dist-item .m { font-size: 1.08rem; font-weight: 600; }
  .dist-item .t { color: var(--ink-soft); font-size: 0.88rem; }
  .map-visual { position: relative; min-height: 460px; }
  .map-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .map-btn {
    position: absolute; bottom: 28px; left: 28px; right: 28px; background: var(--surface-dark);
    border-radius: 14px; padding: 16px 20px; text-decoration: none; color: var(--on-dark); font-size: 0.9rem;
    display: flex; justify-content: space-between; align-items: center; box-shadow: 0 14px 30px var(--shadow);
  }

  /* TESTIMONIAL — full width dark band, no photo, slider */
  .testimonial { background: var(--surface-dark); color: var(--on-dark); }
  .test-inner { max-width: 760px; margin: 0 auto; padding: 90px 5vw; text-align: center; }
  .stars { color: #E3A73C; font-size: 1rem; letter-spacing: 3px; margin-bottom: 30px; }
  .test-slider { position: relative; min-height: 200px; }
  .test-slide { display: none; }
  .test-slide.active { display: block; animation: testFadeIn .55s cubic-bezier(.16,.84,.24,1) both; }
  @keyframes testFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
  .test-slide blockquote {
    margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.5; font-weight: 400;
  }
  .test-person { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
  .test-person .av {
    width: 50px; height: 50px; border-radius: 50%; background: var(--sage); color: var(--ink);
    display: flex; align-items: center; justify-content: center; font-weight: 600; flex-shrink: 0;
  }
  .test-person .who { text-align: left; }
  .test-person .who div:first-child { font-size: 0.94rem; font-weight: 600; }
  .test-person .who div:last-child { font-size: 0.8rem; color: var(--on-dark-soft2); }
  .test-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 44px; }
  .test-arrow {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--on-dark-line);
    background: transparent; color: var(--on-dark); cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center; transition: background .2s;
  }
  .test-arrow:hover { background: var(--on-dark-icon-bg); }
  .test-dots { display: flex; gap: 9px; }
  .test-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--on-dark-line); border: none; cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
  .test-dot.active { background: var(--sage); transform: scale(1.3); }


  /* BOOKING */
  .booking { position: relative; background: var(--panel); overflow: hidden; }
  .booking::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(120,124,108,0.32) 1.4px, transparent 1.4px);
    background-size: 25px 25px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 40%, transparent 85%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 40%, transparent 85%);
  }
  .booking::after {
    content: ''; position: absolute; pointer-events: none;
    top: -18%; right: -8%; width: 560px; height: 560px; border-radius: 50%;
    background: radial-gradient(circle, rgba(169,191,160,0.30), transparent 70%);
    filter: blur(6px);
  }
  .booking-blob-2 {
    content: ''; position: absolute; pointer-events: none;
    bottom: -22%; left: -10%; width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(62,110,133,0.22), transparent 70%);
    filter: blur(6px);
  }
  .booking-head, .booking-panel-wrap { position: relative; z-index: 1; }
  .booking-head { padding: 0 5vw 50px; }
  .booking-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 400; }
  .booking-head p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 14px; max-width: 46ch; }
  .booking-panel-wrap { padding: 0 5vw; }

  /* Fixed light "booking widget" surface — always light, like a real hotel search box */
  .booking-panel {
    background: var(--surface-light); color: var(--on-light);
    border-radius: 26px; overflow: hidden; border: 1px solid var(--on-light-line);
    box-shadow: 0 30px 70px var(--shadow);
    display: grid; grid-template-columns: 1.55fr 1fr;
  }
  @media (max-width: 900px) { .booking-panel { grid-template-columns: 1fr; border-radius: 20px; } }

  .bk-main { padding: 48px; }
  @media (max-width: 720px) { .bk-main { padding: 26px 20px; } }

  .bk-search-row {
    display: flex; align-items: stretch; flex-wrap: wrap;
    border: 1px solid var(--on-light-line); border-radius: 16px; overflow: hidden; margin-bottom: 8px;
  }
  .bk-field { display: flex; align-items: center; gap: 12px; padding: 16px 18px; flex: 1 1 150px; min-width: 140px; }
  .bk-field-wide { flex: 1.7 1 220px; }
  .bk-icon { width: 20px; height: 20px; color: var(--sage-deep); flex-shrink: 0; }
  .bk-field-text { display: flex; flex-direction: column; gap: 4px; width: 100%; }
  .bk-field-text label { font-size: 0.7rem; color: var(--on-light-soft); text-transform: uppercase; letter-spacing: 0.05em; }
  .bk-field-text input, .bk-field-text select {
    border: none; padding: 0; background: transparent; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem; font-weight: 600; color: var(--on-light); width: 100%;
  }
  .bk-field-text input:focus, .bk-field-text select:focus { outline: none; }
  .bk-divider { width: 1px; background: var(--on-light-line); align-self: stretch; }
  @media (max-width: 720px) {
    .bk-divider { display: none; }
    .bk-field { border-bottom: 1px solid var(--on-light-line); }
    .bk-field:last-child { border-bottom: none; }
  }

  .guest-counter { font-size: 0.78rem; color: var(--on-light-soft); margin: 8px 2px 30px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  @media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-size: 0.83rem; color: var(--on-light-soft); margin-bottom: 8px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 13px 15px; border: 1px solid var(--on-light-line); border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; background: #fff; color: var(--on-light);
  }
  .field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--sage-deep); outline-offset: 1px; }
  .field textarea { resize: vertical; min-height: 90px; }
  .error-text { color: #B4384F; font-size: 0.85rem; margin-top: 6px; display: none; }
  .error-text.show { display: block; }

  .bk-side {
    background: var(--on-light-panel); border-left: 1px solid var(--on-light-line);
    padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  }
  @media (max-width: 900px) { .bk-side { border-left: none; border-top: 1px solid var(--on-light-line); } }
  @media (max-width: 720px) { .bk-side { padding: 28px 20px; } }
  .bk-side-title { font-size: 1.02rem; font-weight: 600; margin-bottom: 18px; color: var(--on-light); }
  .bk-side-row {
    display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--on-light-line);
    font-size: 0.9rem; color: var(--on-light-soft);
  }
  .bk-side-row strong { color: var(--on-light); font-weight: 600; }
  .bk-side-note { font-size: 0.78rem; color: var(--on-light-soft); margin-top: 16px; line-height: 1.55; }

  .btn-submit {
    width: 100%; background: var(--surface-dark); color: var(--on-dark); border: none;
    padding: 17px 24px; border-radius: 14px; font-size: 0.96rem; font-weight: 600; cursor: pointer;
    transition: background .2s;
  }
  .btn-submit:hover { background: #262b2d; }
  .form-note { font-size: 0.78rem; color: var(--on-light-soft); margin-top: 14px; }

  .summary-box { margin-top: 22px; padding: 18px 20px; border-radius: 14px; background: #fff; border: 1px solid var(--on-light-line); display: none; }
  .summary-box.show { display: block; }
  .summary-box p { margin: 0 0 12px; font-size: 0.86rem; color: var(--on-light-soft); }
  .summary-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .btn-sm { text-decoration: none; padding: 10px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; }
  .btn-wa { background: #25D366; color: #06210F; }
  .btn-mail { background: var(--surface-dark); color: var(--on-dark); }

  /* FOOTER */
  footer { position: relative; background: var(--surface-dark); color: var(--on-dark-soft); padding: 80px 0 0; }
  .footer-photo {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  }
  .footer-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
    opacity: 0.4;
    filter: brightness(0.8);
  }
  .footer-fade {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(180deg, var(--surface-dark) 0%, transparent 30%, transparent 55%, var(--surface-dark) 92%);
  }
  footer > .copy-wrap { position: relative; z-index: 1; }
  .footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid var(--on-dark-line); }
  .footer-links { display: flex; gap: 30px; font-size: 0.9rem; }
  .footer-links a { text-decoration: none; color: var(--on-dark-soft); }
  .footer-cta h3 { color: var(--on-dark); font-size: 1.5rem; font-weight: 400; max-width: 20ch; }
  .footer-mid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 40px 0; }
  .footer-mid a, .footer-mid span { font-size: 0.88rem; color: var(--on-dark-soft3); text-decoration: none; }
  .footer-social { display: flex; gap: 20px; }
  .watermark {
    font-size: clamp(4.5rem, 18vw, 13rem); font-weight: 700; color: transparent;
    -webkit-text-stroke: 1px rgba(253,252,250,0.16); line-height: 0.8; text-align: center;
    padding: 20px 0 0; letter-spacing: -0.02em; white-space: nowrap; overflow: hidden;
  }

  /* ===== Scroll reveal system (progressive enhancement: only active once JS confirms it can run) ===== */
  .js .reveal {
    transition-property: opacity, transform, clip-path, filter;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(.16,.84,.24,1);
    will-change: transform, opacity, filter;
  }
  .js .rv-clip-l { clip-path: inset(0 100% 0 0); }
  .js .rv-clip-l.in-view { clip-path: inset(0 0 0 0); }
  .js .rv-clip-r { clip-path: inset(0 0 0 100%); }
  .js .rv-clip-r.in-view { clip-path: inset(0 0 0 0); }
  .js .rv-rise { opacity: 0; transform: translateY(64px) rotate(-2.5deg) scale(.95); }
  .js .rv-rise.in-view { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  .js .rv-rise-r { opacity: 0; transform: translateY(64px) rotate(2.5deg) scale(.95); }
  .js .rv-rise-r.in-view { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  .js .rv-blur { opacity: 0; transform: scale(.86); filter: blur(10px); }
  .js .rv-blur.in-view { opacity: 1; transform: scale(1); filter: blur(0); }
  .js .rv-skew-l { opacity: 0; transform: translateX(-56px) skewX(-8deg); }
  .js .rv-skew-l.in-view { opacity: 1; transform: translateX(0) skewX(0deg); }
  .js .rv-skew-r { opacity: 0; transform: translateX(56px) skewX(8deg); }
  .js .rv-skew-r.in-view { opacity: 1; transform: translateX(0) skewX(0deg); }
  .js .rv-circle { clip-path: circle(0% at 50% 50%); transition-duration: 1.2s; }
  .js .rv-circle.in-view { clip-path: circle(75% at 50% 50%); }

  .hero-copy, .hero-bar { animation: heroIn 1s cubic-bezier(.16,.84,.24,1) both; }
  .hero-copy { animation-delay: .15s; }
  .hero-bar { animation-delay: .5s; }
  @keyframes heroIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

  @media (prefers-reduced-motion: reduce) {
    .js .reveal, .js .rv-clip-l, .js .rv-clip-r, .js .rv-rise, .js .rv-rise-r, .js .rv-blur, .js .rv-skew-l, .js .rv-skew-r, .js .rv-circle {
      transition: none !important; clip-path: none !important; transform: none !important;
      opacity: 1 !important; filter: none !important;
    }
    .hero-copy, .hero-bar { animation: none !important; }
  }

  .hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
  .hero-copy { position: absolute; left: 5vw; bottom: 27vh; z-index: 3; max-width: 780px; }
  .hero-quickform {
    position: absolute; left: 5vw; right: 5vw; bottom: 15vh; z-index: 4;
    background: var(--surface-light); border-radius: 18px;
    box-shadow: 0 22px 50px rgba(0,0,0,0.32); padding: 8px;
  }
  .hero-quick-inner { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; }
  .hero-bk-row { flex: 1 1 460px; margin-bottom: 0; border-radius: 12px; }
  .hero-bk-row .bk-field { padding: 12px 16px; }
  .hero-quick-btn {
    flex: 0 0 auto; align-self: center; white-space: nowrap; margin: 4px 4px 4px 0;
    background: var(--surface-dark); color: var(--on-dark); border: none;
    padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; cursor: pointer;
    transition: background .2s;
  }
  .hero-quick-btn:hover { background: #262b2d; }
  @media (max-width: 860px) {
    .hero-quick-btn { width: 100%; }
  }
  @media (max-width: 720px) {
    .hero-bk-row { flex-direction: column; }
    .hero-bk-row .bk-divider { display: none; }
    .hero-bk-row .bk-field { border-bottom: 1px solid var(--on-light-line); }
    .hero-bk-row .bk-field:last-child { border-bottom: none; }
  }
  /* Below ~720px, absolute vh-based stacking gets unreliable (real mobile
     viewport heights vary a lot with browser chrome), so switch the hero
     to a normal top-to-bottom flex flow instead — content just stacks in
     order and the section grows as tall as it needs to. */
  @media (max-width: 720px) {
    .hero {
      height: auto; min-height: 100vh; min-height: 100dvh;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 120px 0 0;
    }
    .hero-copy, .hero-quickform, .hero-bar {
      position: relative; left: auto; right: auto; top: auto; bottom: auto;
      transform: none; max-width: none; margin: 0 6vw 18px;
    }
    .hero-bar {
      margin: 18px 6vw 0; padding: 18px 0 22px; flex-direction: column; align-items: flex-start; gap: 16px;
    }
  }

  .room-specs { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; max-width: 40ch; }
  .room-specs li { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--ink); }
  .room-specs li svg { width: 18px; height: 18px; color: var(--sage-deep); flex-shrink: 0; }


  /* ===== Custom date-range calendar picker ===== */
  .bk-field-dates { position: relative; cursor: pointer; }
  .date-range-trigger {
    border: none; background: transparent; padding: 0; text-align: left; width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.98rem; font-weight: 600;
    color: var(--on-light); cursor: pointer;
  }
  .date-range-trigger:focus { outline: none; }
  .date-range-trigger.placeholder { color: var(--on-light-soft); font-weight: 500; }
  .calendar-popover {
    position: fixed; top: 0; left: 0; z-index: 200;
    background: #fff; border: 1px solid var(--on-light-line); border-radius: 16px;
    box-shadow: 0 24px 55px rgba(0,0,0,0.28); padding: 18px; width: 300px;
    display: none;
  }
  .calendar-popover.open { display: block; }
  @media (max-width: 480px) {
    .calendar-popover { width: min(320px, 92vw); }
  }
  .cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .cal-title { font-size: 0.9rem; font-weight: 600; color: var(--on-light); }
  .cal-nav-btn {
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--on-light-line);
    background: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--on-light); font-size: 1rem; line-height: 1; padding: 0;
  }
  .cal-nav-btn:hover { background: var(--on-light-panel); }
  .cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
  .cal-weekdays { margin-bottom: 6px; }
  .cal-weekdays span { font-size: 0.65rem; text-align: center; color: var(--on-light-soft); text-transform: uppercase; }
  .cal-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.84rem; color: var(--on-light); border-radius: 8px; cursor: pointer;
    border: none; background: transparent; font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .cal-day.empty { visibility: hidden; cursor: default; }
  .cal-day.disabled { color: var(--on-light-line); cursor: not-allowed; }
  .cal-day.today { font-weight: 700; box-shadow: inset 0 0 0 1px var(--on-light-line); }
  .cal-day.in-range { background: rgba(169,191,160,0.30); border-radius: 0; }
  .cal-day:not(.disabled):not(.empty):hover { background: var(--on-light-panel); }
  .cal-day.range-start, .cal-day.range-end {
    background: var(--surface-dark) !important; color: var(--on-dark) !important; border-radius: 8px;
  }
  .cal-footer {
    margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--on-light-line);
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    font-size: 0.78rem; color: var(--on-light-soft);
  }
  .cal-clear {
    background: none; border: none; color: var(--sage-deep); font-size: 0.8rem;
    cursor: pointer; text-decoration: underline; padding: 0; font-family: 'Plus Jakarta Sans', sans-serif;
  }

  /* GALLERY LIGHTBOX */
  .gallery-item { cursor: pointer; }
  .lightbox {
    position: fixed; inset: 0; z-index: 300; display: none;
    align-items: center; justify-content: center;
    background: rgba(6,10,12,0.92); padding: 5vh 4vw;
  }
  .lightbox.open { display: flex; }
  .lightbox-inner { position: relative; max-width: 1100px; width: 100%; }
  .lightbox-inner img {
    display: block; width: 100%; max-height: 84vh; object-fit: contain; border-radius: 10px;
  }
  .lightbox-cap {
    text-align: center; color: rgba(253,252,250,0.85); font-size: 0.9rem; margin-top: 14px;
  }
  .lightbox-close, .lightbox-prev, .lightbox-next {
    position: fixed; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
    color: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
  .lightbox-close { top: 22px; right: 22px; width: 42px; height: 42px; font-size: 1.3rem; }
  .lightbox-prev, .lightbox-next {
    top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 1.4rem;
  }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
  @media (max-width: 720px) {
    .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
    .lightbox-close { top: 14px; right: 14px; }
  }

  /* ===== Page preloader ===== */
  .preloader { display: none; }
  .js .preloader {
    display: flex; align-items: center; justify-content: center;
    position: fixed; inset: 0; z-index: 9999; background: var(--paper);
    transition: opacity .5s ease, visibility .5s ease;
  }
  .js .preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
  .preloader-mark { width: 60px; height: 60px; }
  .preloader-ring {
    stroke-dasharray: 176; stroke-dashoffset: 176; transform-origin: center;
    animation: preloaderSpin 1.5s ease-in-out infinite;
  }
  .preloader-wave { animation: preloaderWave 1.7s ease-in-out infinite; transform-origin: center; }
  @keyframes preloaderSpin {
    0% { stroke-dashoffset: 176; transform: rotate(0deg); }
    50% { stroke-dashoffset: 40; transform: rotate(190deg); }
    100% { stroke-dashoffset: 176; transform: rotate(360deg); }
  }
  @keyframes preloaderWave { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
  @media (prefers-reduced-motion: reduce) {
    .preloader-ring, .preloader-wave { animation: none; }
  }
