@font-face { font-family: "Open Sauce Sans"; src: url("../fonts/OpenSauceSans-Light.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
    @font-face { font-family: "Open Sauce Sans"; src: url("../fonts/OpenSauceSans-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
    @font-face { font-family: "Open Sauce Sans"; src: url("../fonts/OpenSauceSans-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
    @font-face { font-family: "Open Sauce Sans"; src: url("../fonts/OpenSauceSans-SemiBold.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
    @font-face { font-family: "Open Sauce Sans"; src: url("../fonts/OpenSauceSans-Bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
    :root {
      --charcoal: rgb(26, 26, 26);
      --cream: rgb(250, 247, 242);
      --clay: rgb(183, 113, 78);
      --clay-soft: rgb(232, 213, 196);
      --clay-tint: rgb(242, 229, 216);
      --muted: rgb(107, 107, 107);
      --line: rgba(26, 26, 26, .14);
      --light-line: rgba(250, 247, 242, .16);
      --display: "Libre Baskerville", Georgia, serif;
      --body: "Open Sauce Sans", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    section[id] { scroll-margin-top: 96px; }
    body { margin: 0; background: var(--cream); color: var(--charcoal); font-family: var(--body); font-size: 15px; line-height: 1.65; }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; font: inherit; }
    img { display: block; max-width: 100%; }
    h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
    ul { list-style: none; margin: 0; padding: 0; }
    ::selection { background: var(--clay-soft); color: var(--charcoal); }
    :focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }

    .shell { width: min(1232px, calc(100% - 48px)); margin-inline: auto; }
    .eyebrow { display: flex; align-items: center; gap: 15px; color: var(--clay-soft); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
    .eyebrow--dark { color: var(--clay); }
    .display { font-family: var(--display); font-weight: 400; letter-spacing: .005em; line-height: .98; }
    .display em { color: var(--clay-soft); font-style: italic; font-weight: 400; }
    .muted { color: var(--muted); }
    .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 24px; border-radius: 3.35544e+07px; font-weight: 700; transition: color .2s ease, background-color .2s ease, border-color .2s ease, outline-color .2s ease, transform .2s ease, box-shadow .2s ease; }
    .button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(26,26,26,.12); }
    .button--clay { background: var(--clay); color: white; }
    .button--clay:hover { background: var(--clay); }
    .button--outline { border: 1px solid rgba(250,247,242,.32); color: var(--cream); }
    .button--outline:hover { border-color: var(--cream); background: rgba(250,247,242,.1); }
    .button--paper { background: var(--cream); color: var(--charcoal); }

    html.motion-ready [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); }
    html.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }
    html.motion-ready [data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1); }
    html.motion-ready [data-reveal-stagger].is-visible > * { opacity: 1; transform: none; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: .08s; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: .16s; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: .24s; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: .32s; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: .40s; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: .48s; }
    html.motion-ready [data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: .56s; }

    .site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--cream); transition: background-color .3s ease, box-shadow .3s ease; }
    .site-header.is-scrolled { background: rgba(26,26,26,.96); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
    .site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; }
    .brand { display: block; width: 136px; transition: opacity .3s ease; }
    .brand:hover { opacity: .75; }
    .brand img { width: 100%; height: auto; }
    .nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; }
    .nav a:not(.button) { position: relative; padding-block: 8px; }
    .nav a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; width: 0; background: var(--clay-soft); transition: width .3s ease; }
    .nav a:not(.button):hover::after { width: 100%; }
    .menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
    .menu-toggle span { display: block; width: 22px; height: 1px; margin: 5px 0; background: currentColor; transition: transform .3s ease; }
    .mobile-menu { position: fixed; inset: 0; z-index: 40; background: rgba(26,26,26,.5); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
    .mobile-menu__panel { position: absolute; inset: 0 0 auto; padding: 112px 24px 32px; background: var(--charcoal); transform: translateY(-16px); transition: transform .3s ease; }
    .mobile-menu a { display: block; padding: 12px 0; color: var(--cream); font-family: var(--display); font-size: 28px; }
    .mobile-menu .button { width: 100%; margin-top: 24px; font-family: var(--body); font-size: 14px; }
    body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
    body.menu-open .mobile-menu__panel { transform: translateY(0); }

    .hero { position: relative; min-height: 860px; display: flex; align-items: end; overflow: hidden; background: var(--charcoal); color: var(--cream); }
    .hero__media { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,26,26,.94) 0%, rgba(26,26,26,.76) 48%, rgba(26,26,26,.36) 100%), url("../img/photo1.jpg") center 44% / cover no-repeat; }
    .hero__inner { position: relative; z-index: 1; width: min(1232px, calc(100% - 48px)); padding-bottom: 112px; }
    .hero__copy { max-width: 690px; }
    .hero h1 { margin-top: 32px; font-size: clamp(48px, 5vw, 72px); }
    .hero h1 em { display: block; }
    .hero__lede { max-width: 560px; margin-top: 28px; color: rgba(250,247,242,.76); font-size: 17px; }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
    .hero__badges { display: flex; flex-wrap: wrap; gap: 0; margin-top: 48px; color: rgba(250,247,242,.74); font-size: 13px; }
    .hero__badges span { padding: 0 18px; border-right: 1px solid rgba(250,247,242,.32); }
    .hero__badges span:first-child { padding-left: 0; }
    .hero__badges span:last-child { border-right: 0; }

    .stats { background: var(--charcoal); color: var(--cream); border-top: 1px solid var(--light-line); }
    .stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 32px; }
    .stat { display: flex; align-items: center; gap: 16px; padding-inline: 28px; border-right: 1px solid var(--light-line); }
    .stat:first-child { padding-left: 0; }
    .stat:last-child { border-right: 0; }
    .stat__icon { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; background: rgba(183,113,78,.2); color: var(--clay-soft); font-size: 20px; }
    .stat dt { color: rgba(250,247,242,.56); font-size: 12px; }
    .stat dd { font-family: var(--display); font-size: 17px; font-weight: 500; }
    .stat--available dd { color: #1ed686; }
    .status-dot { width: 9px; height: 9px; border-radius: 50%; background: #1ed686; box-shadow: 0 0 0 7px rgba(30,214,134,.12); }

    .section { padding-block: 128px; }
    .section--cream { background: var(--cream); }
    .section--dark { background: var(--charcoal); color: var(--cream); }
    .section--tint { background: var(--clay-tint); }
    .section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: end; margin-bottom: 72px; }
    .section-heading h2 { max-width: 620px; margin-top: 22px; font-size: clamp(40px, 4vw, 60px); }
    .section-heading p { max-width: 510px; color: rgba(250,247,242,.65); font-size: 16px; }
    .section--cream .section-heading p { color: var(--muted); }

    .reasons { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
    .reason { position: relative; min-height: 290px; overflow: hidden; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background-color .5s cubic-bezier(.4, 0, .2, 1); }
    .reason:hover { background: var(--clay-tint); }
    .reason__number { color: rgba(183,113,78,.52); font-family: var(--display); font-size: 48px; line-height: 1; }
    .reason__illustration { position: absolute; top: 24px; right: 22px; width: 78px; height: 78px; color: var(--clay-soft); opacity: .65; transition: color .5s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1); pointer-events: none; }
    .reason__illustration svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.35; }
    .reason:hover .reason__illustration { color: var(--clay); opacity: .95; transform: translateY(-3px); }
    .reason h3 { margin-top: 44px; font-family: var(--display); font-size: 21px; font-weight: 500; }
    .reason p { margin-top: 14px; color: var(--muted); font-size: 14px; }

    .detail { position: relative; overflow: hidden; }
    .detail::before, .cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05; background-image: radial-gradient(rgba(255,255,255,.8) .7px, transparent .7px); background-size: 5px 5px; }
    .detail__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .photo-card { position: relative; min-height: 440px; overflow: hidden; background: #333; }
    .photo-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; transition: transform .7s cubic-bezier(0, 0, .2, 1); }
    .photo-card:hover img { transform: scale(1.05); }
    .photo-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.8)); }
    .photo-card__caption { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; }
    .photo-card h3 { font-family: var(--display); font-size: 20px; }
    .photo-card p { margin-top: 4px; color: rgba(250,247,242,.7); font-size: 13px; }

    .facilities__heading { max-width: 700px; margin-bottom: 64px; }
    .facilities__heading h2 { margin-top: 22px; font-size: clamp(42px, 4vw, 60px); }
    .facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
    .facility { min-height: 220px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background-color .5s cubic-bezier(.4, 0, .2, 1); }
    .facility:hover { background: var(--clay-tint); }
    .facility__icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 30px; border-radius: 50%; background: var(--clay-soft); color: var(--charcoal); transition: background-color .5s cubic-bezier(.4, 0, .2, 1), color .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1); }
    .facility__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
    .facility:hover .facility__icon { background: var(--clay); color: white; transform: translateY(-2px); }
    .facility h3 { font-family: var(--display); font-size: 19px; font-weight: 500; }
    .facility p { margin-top: 8px; color: var(--muted); font-size: 13px; }
    .fine-print { margin-top: 22px; color: var(--muted); font-size: 12px; }

    .gallery { padding-bottom: 112px; }
    .gallery__heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 56px; }
    .gallery__heading h2 { margin-top: 22px; font-size: clamp(44px, 4vw, 60px); }
    .gallery__heading .button { border-color: rgba(250,247,242,.25); }
    .gallery-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); grid-template-rows: 340px 220px 220px; gap: 12px; }
    .gallery-card { position: relative; min-height: 220px; overflow: hidden; background: #333; }
    .gallery-card:first-child { grid-row: 1 / span 3; }
    .gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(0, 0, .2, 1); }
    .gallery-card:hover img { transform: scale(1.06); }
    .gallery-card::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); }
    .gallery-card__label { position: absolute; right: 30px; bottom: 24px; left: 30px; z-index: 1; color: white; font-family: var(--display); font-size: 20px; }
    .gallery-card__number { position: absolute; top: 20px; left: 24px; z-index: 1; color: rgba(250,247,242,.65); font-family: var(--display); font-size: 48px; }
    .gallery__footer { display: flex; justify-content: space-between; gap: 24px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--light-line); color: rgba(250,247,242,.55); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
    .gallery__footer a { color: var(--clay-soft); letter-spacing: 0; text-transform: none; }

    .room-gallery { overflow: hidden; }
    .room-gallery__heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: 72px; align-items: end; margin-bottom: 72px; }
    .room-gallery__heading h2 { max-width: 680px; margin-top: 22px; font-size: clamp(26px, 2.64vw, 41px); }
    .room-gallery__heading p { max-width: 440px; color: var(--muted); font-size: 15px; line-height: 1.8; }
    .room-gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 92px 52px; }
    .room-gallery-card { margin: 0; }
    .room-gallery-card:nth-child(even) { transform: translateY(72px); }
    .room-gallery-card__media { overflow: hidden; background: #e9e3db; }
    .room-gallery-card__media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s cubic-bezier(0, 0, .2, 1); }
    .room-gallery-card:hover .room-gallery-card__media img { transform: scale(1.045); }
    .room-gallery-card__caption { padding: 22px 8px 0; }
    .room-gallery-card__caption span { color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .room-gallery-card__caption h3 { margin-top: 10px; font-family: var(--display); font-size: clamp(25px, 2.3vw, 36px); font-weight: 500; line-height: 1.08; }
    .room-gallery-card__caption p { max-width: 420px; margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.7; }
    .room-gallery__footer { display: flex; justify-content: space-between; gap: 24px; margin-top: 118px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
    .room-gallery__footer a { color: var(--clay); font-weight: 700; }

    .video-section { padding-top: 112px; }
    .video__heading { max-width: 720px; margin: 0 auto 80px; text-align: center; }
    .video__heading h2 { margin-top: 22px; font-size: clamp(42px, 4vw, 60px); }
    .video__heading p { max-width: 540px; margin: 24px auto 0; color: var(--muted); font-size: 16px; }
    .video-story-list { border-top: 1px solid var(--line); }
    .video-story-row { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 72px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
    .video-story-row:nth-child(even) { grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); }
    .video-story-row:nth-child(even) .video-story__copy { order: 1; }
    .video-story-row:nth-child(even) .video-story__visual { order: 2; }
    .video-story__visual { position: relative; overflow: hidden; background: var(--charcoal); }
    .video-story__visual video { display: block; width: 100%; aspect-ratio: 16 / 9; background: #111; object-fit: cover; }
    .video-story__index { position: absolute; top: 18px; left: 20px; z-index: 1; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(250,247,242,.75); border-radius: 50%; color: var(--cream); font-size: 12px; }
    .video-story__copy { max-width: 360px; }
    .video-story__copy h3 { margin-top: 20px; font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 500; line-height: 1.05; }
    .video-story__copy p { margin-top: 20px; color: var(--muted); font-size: 14px; line-height: 1.75; }
    .video-story__meta { display: block; margin-top: 28px; color: var(--clay); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

    .location__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 96px; align-items: start; }
    .location h2, .testimonials h2, .faq h2 { margin-top: 22px; font-size: clamp(42px, 4vw, 60px); }
    .nearby { margin-top: 50px; border-top: 1px solid var(--line); }
    .nearby li { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
    .nearby strong { font-weight: 500; }
    .nearby strong::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 12px; border-radius: 50%; background: var(--clay); vertical-align: 1px; }
    .nearby span { color: var(--muted); font-size: 13px; }
    .address { margin-top: 32px; padding: 20px; border-radius: 8px; background: var(--clay-tint); color: var(--muted); }
    .location__map { position: relative; min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #f6f0e9; }
    .location__map iframe { display: block; width: 100%; height: 520px; border: 0; filter: saturate(.82) contrast(.96); }
    .location__map-fallback { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid rgba(26,26,26,.08); border-radius: 8px; background: rgba(250,247,242,.94); box-shadow: 0 12px 28px rgba(26,26,26,.12); backdrop-filter: blur(8px); }
    .location__map-fallback span { color: var(--muted); font-size: 12px; line-height: 1.5; }
    .location__map-fallback strong { color: var(--charcoal); font-family: var(--display); font-size: 16px; font-weight: 500; }
    .location__map-fallback a { flex: 0 0 auto; color: var(--clay); font-size: 12px; font-weight: 700; white-space: nowrap; }
    /* The query embed is paired with a visible external-link fallback for file:// and blocked iframe contexts. */

    .testimonials h2 { max-width: 560px; }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
    .testimonial { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; border-radius: 12px; background: var(--cream); }
    .testimonial__mark { color: var(--clay-soft); font-family: var(--display); font-size: 52px; line-height: .7; }
    .testimonial blockquote { margin-top: 28px; font-size: 14px; }
    .testimonial__person { display: flex; align-items: center; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
    .testimonial__avatar { width: 44px; height: 44px; flex: 0 0 44px; border: 2px solid var(--clay-soft); border-radius: 50%; object-fit: cover; }
    .testimonial__identity { min-width: 0; }
    .testimonial__person strong { font-family: var(--display); font-size: 17px; font-weight: 500; }
    .testimonial__person span { display: block; color: var(--muted); font-size: 12px; }

    .faq__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 96px; }
    .faq-list { border-top: 1px solid var(--line); }
    .faq-list details { border-bottom: 1px solid var(--line); }
    .faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; font-family: var(--display); font-size: 20px; list-style: none; }
    .faq-list summary::-webkit-details-marker { display: none; }
    .faq-list summary::after { content: "+"; display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border: 1px solid var(--line); border-radius: 50%; color: var(--clay); font-family: var(--body); font-size: 19px; line-height: 1; }
    .faq-list details[open] summary::after { content: "−"; }
    .faq-list details p { max-width: 680px; padding: 0 52px 24px 0; color: var(--muted); font-size: 14px; }

    .cta { position: relative; overflow: hidden; text-align: center; }
    .cta__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
    .cta h2 { margin-top: 24px; font-size: clamp(44px, 5vw, 72px); }
    .cta p { max-width: 480px; margin: 26px auto 0; color: rgba(250,247,242,.68); font-size: 16px; }
    .cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

    .site-footer { padding: 56px 0 28px; background: var(--charcoal); color: var(--cream); }
    .footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
    .footer__brand { width: 136px; }
    .footer__brand img { width: 100%; }
    .footer__lead { max-width: 280px; margin-top: 20px; color: rgba(250,247,242,.6); font-size: 13px; }
    .footer__label { color: var(--clay-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .footer__details { margin-top: 14px; color: rgba(250,247,242,.68); font-size: 13px; }
    .footer__details a { display: block; margin-top: 5px; }
    .footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--light-line); color: rgba(250,247,242,.45); font-size: 12px; }
    .whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 30; display: flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 999px; background: #25d366; color: white; box-shadow: 0 10px 24px rgba(0,0,0,.2); font-weight: 700; }
    .status-dot { position: relative; }
    .status-dot::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; background: #34d399; opacity: .75; animation: ping 1s cubic-bezier(.4, 0, .2, 1) infinite; }
    @keyframes ping { 75%, 100% { opacity: 0; transform: scale(2); } }
    @keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.045); } }
    @media (prefers-reduced-motion: no-preference) {
      .hero__media { animation: heroDrift 18s ease-in-out alternate infinite; }
      .gallery-card img, .photo-card img, .room-gallery-card__media img { will-change: transform; }
    }
    @media (prefers-reduced-motion: reduce) {
      html.motion-ready [data-reveal], html.motion-ready [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
      .hero__media, .status-dot::after { animation: none; }
      *, *::before, *::after { scroll-behavior: auto !important; }
    }

    @media (max-width: 64rem) {
      .section-heading, .location__grid, .faq__grid { gap: 48px; }
      .reasons { grid-template-columns: repeat(2, 1fr); }
      .facility-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-rows: 320px 220px 220px; }
    }

    @media (max-width: 40rem) {
      .shell { width: min(100% - 48px, 506px); }
      section[id] { scroll-margin-top: 84px; }
      .site-header__inner { min-height: 80px; }
      .brand { width: 127px; }
      .nav { display: none; }
      .menu-toggle { display: block; }
      .hero { min-height: 860px; align-items: end; }
      .hero__media { inset: 0 0 auto; height: 250px; background: linear-gradient(rgba(26,26,26,.04), rgba(26,26,26,.22)), url("../img/photo1.jpg") center 18% / cover no-repeat; }
      .hero::after { content: ""; position: absolute; inset: 154px 0 0; background: linear-gradient(transparent 0, var(--charcoal) 13%); }
      .hero__inner { z-index: 1; padding-bottom: 80px; }
      .hero__copy { max-width: none; }
      .hero h1 { margin-top: 26px; font-size: 42px; }
      .hero__lede { margin-top: 24px; font-size: 15px; }
      .hero__actions { display: grid; margin-top: 28px; }
      .hero__actions .button { width: 100%; }
      .hero__badges { margin-top: 34px; gap: 10px 0; font-size: 12px; }
      .hero__badges span { padding-inline: 10px; }
      .hero__badges span:first-child { padding-left: 0; }
      .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 0; padding-block: 24px; }
      .stat { padding-inline: 14px; border-right: 0; }
      .stat:nth-child(odd) { padding-left: 0; }
      .stat__icon { flex-basis: 44px; width: 44px; height: 44px; }
      .stat dd { font-size: 16px; line-height: 1.25; }
      .section { padding-block: 80px; }
      .section-heading, .location__grid, .faq__grid { display: block; }
      .video__heading { display: block; }
      .section-heading { margin-bottom: 48px; }
      .section-heading p { margin-top: 28px; }
      .reasons, .facility-grid { grid-template-columns: 1fr; }
      .reason { min-height: 0; padding: 32px; }
      .reason h3 { margin-top: 32px; }
      .detail__grid { grid-template-columns: 1fr; gap: 24px; }
      .photo-card, .photo-card img { min-height: 320px; height: 320px; }
      .facilities__heading { margin-bottom: 34px; }
      .facilities__heading h2 { font-size: 38px; line-height: 1.08; }
      .facility { min-height: 0; display: grid; grid-template-columns: 56px minmax(0, 1fr); column-gap: 18px; row-gap: 4px; align-items: center; padding: 22px 24px; }
      .facility__icon { grid-row: 1 / span 2; margin-bottom: 0; }
      .facility h3 { font-size: 18px; line-height: 1.15; }
      .facility p { margin-top: 0; line-height: 1.4; }
      .gallery { padding-bottom: 80px; }
      .gallery__heading { display: block; margin-bottom: 42px; }
      .gallery__heading .button { margin-top: 28px; }
      .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, auto); gap: 10px; }
      .gallery-card, .gallery-card:first-child { grid-row: auto; min-height: 340px; height: 340px; }
      .gallery-card:nth-child(3), .gallery-card:nth-child(4) { height: 513px; }
      .gallery__footer { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
      .room-gallery__heading { display: block; margin-bottom: 48px; }
      .room-gallery__heading p { margin-top: 28px; }
      .room-gallery__grid { grid-template-columns: 1fr; gap: 28px; }
      .room-gallery-card:nth-child(even) { transform: none; }
      .room-gallery-card__media img { aspect-ratio: 4 / 3; }
      .room-gallery-card__caption { padding: 14px 4px 0; }
      .room-gallery-card__caption span, .room-gallery-card__caption p { display: none; }
      .room-gallery-card__caption h3 { margin-top: 0; font-size: 18px; line-height: 1.25; }
      .room-gallery__footer { display: grid; gap: 12px; margin-top: 64px; }
      .video-section { padding-top: 80px; }
      .video__heading { margin-bottom: 48px; text-align: left; }
      .video__heading p { margin-top: 28px; }
      .video-story-row, .video-story-row:nth-child(even) { display: block; padding: 32px 0; }
      .video-story-row:nth-child(even) .video-story__copy, .video-story-row:nth-child(even) .video-story__visual { order: initial; }
      .video-story__visual video { aspect-ratio: 16 / 9; }
      .video-story__copy { max-width: none; margin-top: 28px; }
      .location__grid > * + * { margin-top: 48px; }
      .nearby { margin-top: 36px; }
      .nearby li { grid-template-columns: 1fr auto; font-size: 14px; }
      .location__map { min-height: 320px; }
      .location__map iframe { height: 320px; }
      .location__map-fallback { display: block; right: 12px; bottom: 12px; left: 12px; }
      .location__map-fallback a { display: inline-block; margin-top: 10px; }
      .testimonial-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
      .testimonial { min-height: 314px; padding: 32px; }
      .faq__grid > * + * { margin-top: 48px; }
      .faq-list summary { font-size: 18px; }
      .cta h2 { font-size: 46px; }
      .footer__grid { grid-template-columns: 1fr; gap: 32px; }
      .footer__bottom { display: grid; gap: 8px; }
      .whatsapp { right: 24px; bottom: 24px; width: 48px; height: 48px; justify-content: center; padding: 0; }
      .whatsapp span { display: none; }
    }
