:root {
  --paper: #f2f0eb;
  --ink: #151515;
  --accent: #ff5a36;
  --white: #fffdf8;
  --grey: #77746e;
  --line: rgba(21, 21, 21, .2);
  --light-line: rgba(255, 253, 248, .25);
  --pad: clamp(22px, 4vw, 64px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --photo-hero: url("./assets/remote/photo-hero.webp");
  --photo-hotel: url("./assets/remote/photo-hotel.webp");
  --photo-one: url("./assets/remote/photo-one.webp");
  --photo-two: url("./assets/remote/photo-two.webp");
  --photo-three: url("./assets/remote/photo-three.webp");
  --photo-four: url("./assets/remote/photo-four.webp");
  --photo-five: url("./assets/villa-gesell/faro-querandi.webp");
  --photo-statement: url("./assets/villa-gesell/hotel-room.webp");
  --gallery-one: url("./assets/villa-gesell/playa-2023.webp");
  --gallery-two: url("./assets/villa-gesell/avenida-3.webp");
  --gallery-three: url("./assets/villa-gesell/casa-gesell-bosque.webp");
  --gallery-four: url("./assets/villa-gesell/playa-paseo-121.webp");
  --gallery-five: url("./assets/villa-gesell/playa-muelle.webp");
  --gallery-six: url("./assets/villa-gesell/vista-aerea.webp");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); overflow-x: hidden; }
body.is-menu-open { overflow: hidden; }
a { color: inherit; }
button { color: inherit; font: inherit; }
main { position: relative; }
body.is-menu-open main { visibility: hidden; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.intro { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; color: var(--white); background: var(--ink); pointer-events: none; transition: transform 1.4s var(--ease) .45s; }
.intro__line { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,.18); transform: scaleX(0); animation: loadLine 1.05s var(--ease) forwards; }
.intro__mark { position: relative; display: flex; align-items: center; gap: 14px; padding: 16px; background: var(--ink); opacity: 0; animation: loadMark .65s ease .2s forwards; }
.intro__mark b { font: 700 2.2rem/1 var(--serif); letter-spacing: -.1em; }
.intro__mark small { text-transform: uppercase; letter-spacing: .13em; font-size: .5rem; line-height: 1.45; }
body.is-ready .intro { transform: translateY(-100%); }
@keyframes loadLine { to { transform: scaleX(1); } }
@keyframes loadMark { to { opacity: 1; } }

.progress { position: fixed; z-index: 110; top: 0; left: 0; width: 100%; height: 3px; pointer-events: none; }
.progress i { display: block; width: 100%; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }

.header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; min-height: 76px; display: flex; justify-content: space-between; align-items: center; padding: 16px var(--pad); color: var(--ink); background: rgba(242, 240, 235, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: color .35s ease, background .35s ease, border-color .35s ease; }
.logo, .menu-button { position: relative; z-index: 3; }
body.is-menu-open .header { color: var(--white); background: var(--ink); border-color: var(--light-line); }
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo > span { font: 700 1.9rem/.8 var(--serif); letter-spacing: -.12em; }
.logo small { padding-left: 12px; border-left: 1px solid currentColor; text-transform: uppercase; letter-spacing: .12em; font-size: .47rem; line-height: 1.45; }
.menu-button { display: flex; align-items: center; gap: 12px; padding: 10px 0; border: 0; background: none; cursor: pointer; text-transform: uppercase; letter-spacing: .16em; font-size: .58rem; }
.menu-button i, .menu-button i::after { display: block; width: 30px; height: 2px; background: currentColor; transition: transform .4s var(--ease); }
.menu-button i { position: relative; }
.menu-button i::after { content: ""; position: absolute; top: 7px; left: 0; }
.menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] i::after { top: 0; transform: rotate(90deg); }

.menu { position: fixed; z-index: 95; inset: 0; display: flex; flex-direction: column; justify-content: flex-start; padding: clamp(106px, 15vh, 145px) var(--pad) 38px; color: var(--white); background: var(--ink); opacity: 0; overflow-y: auto; overscroll-behavior: contain; pointer-events: none; clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease), opacity .14s linear .86s; }
.menu.is-open { opacity: 1; pointer-events: auto; clip-path: inset(0); transition: clip-path 1s var(--ease), opacity .14s linear; }
.menu > a { display: flex; align-items: baseline; gap: 22px; flex: 0 0 auto; width: min(820px, 100%); padding: clamp(9px, 1.5vh, 15px) 0; border-bottom: 1px solid var(--light-line); text-decoration: none; font: 400 clamp(2.45rem, 5.8vw, 5.7rem)/.92 var(--serif); letter-spacing: -.055em; transition: color .25s ease, padding-left .35s var(--ease); }
.menu > a:hover { color: var(--accent); padding-left: 16px; }
.menu > a span { min-width: 20px; font: 700 .54rem/1 var(--sans); letter-spacing: .14em; }
.menu .menu__book { width: fit-content; margin: clamp(24px, 4vh, 46px) 0 0 auto; padding: 16px 22px; border: 1px solid var(--white); font: 700 .7rem/1 var(--sans); text-transform: uppercase; letter-spacing: .13em; }
.floating-book { position: fixed; z-index: 105; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 20px; padding: 16px 18px; color: var(--white); background: var(--accent); border: 1px solid rgba(21,21,21,.18); box-shadow: 0 10px 30px rgba(21,21,21,.18); text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; font-weight: 800; transition: color .3s ease, background .3s ease, transform .35s var(--ease), opacity .25s ease; }
.floating-book i { font-style: normal; font-size: .9rem; }
.floating-book:hover { color: var(--white); background: var(--ink); transform: translateY(-4px); }
body.is-at-booking:not(.is-menu-open) .floating-book { opacity: 0; pointer-events: none; transform: translateY(10px); }
body.is-menu-open .floating-book { opacity: 1; pointer-events: auto; transform: none; }

.title-line { display: block; overflow: hidden; }
.title-line i { display: block; font-style: normal; transform: none; }
.title-line.is-visible i { animation: wordIn 1.4s var(--ease) both; }
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].is-visible { animation: revealIn 1.15s var(--ease) both; }
@keyframes wordIn { from { opacity: 0; transform: translateY(105%) rotate(2deg); } to { opacity: 1; transform: none; } }
@keyframes revealIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.write-word { display: inline-block; white-space: nowrap; }
.write-char { display: inline-block; }
[data-write].is-writing .write-char { animation: writeChar .5s var(--ease) both; animation-delay: calc(var(--char-index) * 32ms); }
@keyframes writeChar { from { opacity: 0; transform: translateY(.42em) scale(.94); filter: blur(3px); } to { opacity: 1; transform: none; filter: none; } }

.hero { position: relative; min-height: 100svh; padding: 118px var(--pad) 70px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: center; gap: clamp(38px, 6vw, 90px); overflow: hidden; background: var(--paper); }
.hero__copy { position: relative; z-index: 2; max-width: 690px; }
.hero__overline { margin: 0 0 clamp(28px, 5vh, 52px); text-transform: uppercase; letter-spacing: .18em; font-size: .56rem; }
.hero h1 { margin: 0; font: 400 clamp(5rem, 9.6vw, 9.5rem)/.8 var(--serif); letter-spacing: -.08em; }
.hero h1 .title-line--accent { color: var(--accent); }
.hero h1 .title-line--accent i { font-style: italic; }
.hero__lede { max-width: 335px; margin: clamp(30px, 5vh, 52px) 0 0; color: var(--grey); font-size: .94rem; line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.hero__primary, .hero__secondary { display: flex; justify-content: space-between; gap: 28px; padding: 14px 0; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .53rem; font-weight: 800; }
.hero__primary { min-width: 230px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.hero__primary span { color: var(--accent); }
.hero__secondary { color: var(--grey); }
.hero__visual { position: relative; z-index: 1; width: 100%; height: min(70vh, 670px); margin: 0; transform: translateY(var(--parallax, 0)); will-change: transform; }
.hero__image { position: absolute; inset: 0 0 112px; background: linear-gradient(rgba(21,21,21,.05),rgba(21,21,21,.08)), var(--photo-hotel) center 44%/cover; clip-path: polygon(0 0, 100% 5%, 96% 100%, 0 94%); filter: saturate(.8) contrast(1.02); }
.hero__distance { position: absolute; z-index: 3; right: -18px; top: 12%; margin: 0; width: 90px; height: 90px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--white); background: var(--accent); font: 400 1.05rem/1 var(--serif); transform: rotate(7deg); }
.hero__distance small { display: block; margin-top: 5px; font: 700 .42rem/1.2 var(--sans); text-transform: uppercase; letter-spacing: .08em; }
.hero__visual figcaption { position: absolute; left: 0; right: 4%; bottom: 78px; display: flex; justify-content: space-between; padding-top: 10px; text-transform: uppercase; letter-spacing: .12em; font-size: .48rem; }
.hero__visual figcaption small { color: var(--grey); font-size: inherit; }
.hero__ratings { position: absolute; left: 0; right: 4%; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.hero__ratings a { min-width: 0; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 4px 15px; padding: 13px 14px 12px 0; text-decoration: none; }
.hero__ratings a + a { padding-left: 16px; border-left: 1px solid var(--line); }
.hero__ratings span, .hero__ratings small { text-transform: uppercase; letter-spacing: .12em; font-size: .46rem; }
.hero__ratings small { color: var(--grey); }
.hero__ratings strong { grid-column: 2; grid-row: 1 / 3; align-self: center; display: inline-flex; align-items: baseline; gap: 5px; font: 400 2rem/1 var(--serif); }
.hero__ratings strong svg { align-self: center; width: 15px; height: 15px; color: var(--accent); fill: currentColor; stroke: none; }
.hero__ratings strong small { color: var(--grey); font: 700 .42rem/1 var(--sans); letter-spacing: .06em; }
.hero__meta { position: absolute; left: var(--pad); bottom: 22px; display: flex; gap: 22px; color: var(--grey); text-transform: uppercase; letter-spacing: .14em; font-size: .46rem; }

.site .home-intro { min-height: 100svh; display: grid; grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr); grid-template-rows: 1fr auto; align-items: stretch; gap: 24px clamp(42px, 6vw, 92px); padding: 108px var(--pad) 34px; overflow: hidden; background: var(--paper); }
.site .home-intro__photo { position: relative; grid-column: 2; grid-row: 1 / 3; min-height: calc(100svh - 142px); background: linear-gradient(180deg, rgba(21,21,21,.02) 45%, rgba(21,21,21,.3) 100%), var(--photo-hotel) center 43%/cover; transform: translateY(var(--parallax, 0)); will-change: transform; }
.site .home-intro__identity { position: relative; z-index: 2; grid-column: 1; grid-row: 1; align-self: center; }
.site .home-intro__eyebrow { margin: 0 0 clamp(28px, 5vh, 48px); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; }
.site .home-intro h1 { margin: 0; font: 400 clamp(4.8rem, 7.7vw, 8rem)/.78 var(--serif); letter-spacing: -.075em; }
.site .home-intro h1 .title-line--accent { color: var(--accent); }
.site .home-intro h1 .title-line--accent i { font-style: italic; }
.site .home-intro__lede { max-width: 370px; margin: clamp(28px, 4vh, 42px) 0 0; color: var(--grey); font-size: 1rem; line-height: 1.65; }
.site .home-intro__actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.site .home-intro__primary, .site .home-intro__secondary { display: flex; justify-content: space-between; gap: 28px; padding: 14px 0; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 800; }
.site .home-intro__primary { min-width: 230px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.site .home-intro__primary span { color: var(--accent); }
.site .home-intro__secondary { color: var(--grey); }
.site .home-intro__distance { position: absolute; z-index: 3; right: 22px; top: 22px; width: 94px; height: 94px; display: grid; place-content: center; margin: 0; border-radius: 50%; color: var(--white); background: var(--accent); text-align: center; font: 400 1.1rem/1 var(--serif); transform: rotate(7deg); }
.site .home-intro__distance small { display: block; margin-top: 6px; font: 700 .58rem/1.2 var(--sans); text-transform: uppercase; letter-spacing: .08em; }
.site .home-intro__ratings { position: absolute; z-index: 2; right: 18px; bottom: 18px; left: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); color: var(--ink); background: rgba(242,240,235,.96); box-shadow: 0 12px 35px rgba(21,21,21,.16); }
.site .home-intro__ratings a { min-width: 0; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 5px 14px; padding: 16px 18px; text-decoration: none; }
.site .home-intro__ratings a + a { border-left: 1px solid var(--line); }
.site .home-intro__ratings span, .site .home-intro__ratings small { text-transform: uppercase; letter-spacing: .11em; font-size: .72rem; }
.site .home-intro__ratings small { color: var(--grey); }
.site .home-intro__ratings strong { grid-column: 2; grid-row: 1 / 3; align-self: center; display: inline-flex; align-items: baseline; gap: 5px; font: 400 2.1rem/1 var(--serif); }
.site .home-intro__ratings strong svg { align-self: center; width: 15px; height: 15px; color: var(--accent); fill: currentColor; stroke: none; }
.site .home-intro__ratings strong small { font: 700 .62rem/1 var(--sans); }
.site .home-intro__meta { grid-column: 1; grid-row: 2; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; color: var(--grey); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }

.chapter { display: flex; align-items: center; gap: 13px; color: var(--white); }
.chapter span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-size: .52rem; }
.chapter p { margin: 0; text-transform: uppercase; letter-spacing: .17em; font-size: .53rem; font-weight: 700; }
.chapter--dark { color: var(--ink); }

.statement { position: relative; padding: 110px var(--pad) 90px; color: var(--white); background: var(--ink); }
.statement .chapter { margin-bottom: clamp(55px, 10vh, 100px); }
.statement__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.statement__copy .kicker { max-width: 230px; margin: 0 0 45px; color: #d7d3cc; font-size: .82rem; line-height: 1.55; }
.statement h2 { margin: 0; font: 400 clamp(4rem, 6.6vw, 7rem)/.84 var(--serif); letter-spacing: -.07em; }
.statement h2 em { color: var(--accent); font-weight: 400; }
.statement__description { max-width: 410px; margin: 34px 0; color: #aaa7a2; font-size: .92rem; line-height: 1.7; }
.text-link { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .57rem; font-weight: 700; }
.text-link span { color: var(--accent); }
.statement__media { position: relative; height: min(68vh, 650px); background: linear-gradient(rgba(0,0,0,.04),rgba(0,0,0,.14)), var(--photo-statement) center/cover; filter: saturate(.88) contrast(1.03); transform: translateY(var(--parallax, 0)); }
.statement__media > span { position: absolute; right: 22px; top: 22px; width: 105px; height: 105px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--ink); background: var(--accent); }
.statement__media b { font: 400 1.5rem/1 var(--serif); }
.statement__media small { margin-top: 5px; text-transform: uppercase; letter-spacing: .09em; font-size: .42rem; line-height: 1.3; }
.statement__facts { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.statement__facts > div { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 15px; padding: 25px 24px 26px 0; }
.statement__facts > div + div { padding-left: 24px; border-left: 1px solid var(--light-line); }
.statement__facts svg { width: 31px; height: 31px; color: var(--accent); fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.statement__facts p { min-width: 0; margin: 0; }
.statement__facts strong, .statement__facts span { display: block; }
.statement__facts strong { margin-bottom: 7px; font: 400 clamp(1.05rem, 1.65vw, 1.4rem)/1.12 var(--serif); }
.statement__facts span { color: #9e9b95; text-transform: uppercase; letter-spacing: .1em; font-size: .44rem; line-height: 1.45; }
.site .statement__services { display: grid; grid-template-columns: minmax(150px, .55fr) minmax(0, 2.45fr); align-items: start; gap: clamp(30px, 5vw, 80px); padding: 32px 0 30px; border-bottom: 1px solid var(--light-line); }
.site .statement__services > p { margin: 2px 0 0; color: #aaa7a2; text-transform: uppercase; letter-spacing: .14em; font-size: .55rem; font-weight: 700; }
.site .statement__services ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px clamp(22px, 3vw, 48px); margin: 0; padding: 0; list-style: none; }
.site .statement__services li { display: flex; align-items: baseline; gap: 11px; font: 400 clamp(1rem, 1.45vw, 1.28rem)/1.25 var(--serif); }
.site .statement__services li::before { content: "+"; flex: 0 0 auto; color: var(--accent); font: 700 .8rem/1 var(--sans); }

.journey { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; padding: 0 var(--pad); background: var(--paper); }
.journey__sticky { position: sticky; top: 0; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding: 110px 8vw 70px 0; }
.journey__sticky .chapter { position: absolute; top: 105px; }
.journey__sticky h2 { margin: 0; font: 400 clamp(4.5rem, 8vw, 8rem)/.8 var(--serif); letter-spacing: -.075em; }
.journey__sticky h2 em { color: var(--accent); font-weight: 400; }
.journey__sticky > p { max-width: 270px; margin: 40px 0 0; color: var(--grey); line-height: 1.6; }
.journey__counter { position: absolute; right: 2vw; bottom: 6vh; display: flex; align-items: baseline; gap: 7px; }
.journey__counter b { font: 400 3rem/1 var(--serif); }
.journey__counter span { color: var(--grey); font-size: .62rem; }
.journey__scenes { padding: 120px 0; border-left: 1px solid var(--line); }
.scene { min-height: 93svh; display: grid; grid-template-columns: 1fr .62fr; align-items: center; gap: clamp(20px, 4vw, 65px); padding: 9vh 0 9vh clamp(24px, 5vw, 80px); }
.scene--reverse { grid-template-columns: .62fr 1fr; }
.scene--reverse .scene__media { order: 2; }
.scene--reverse .scene__copy { order: 1; }
.scene__media { height: min(64vh, 650px); background-size: cover; background-position: center; filter: saturate(1.08) contrast(1.03); transform: translateY(var(--parallax, 0)); will-change: transform; }
.scene__media--sea { background-image: var(--photo-three); }
.scene__media--sunset { background-image: var(--photo-two); background-position: center 58%; }
.scene__media--forest { background-image: var(--photo-one); }
.scene__media--lighthouse { background-image: var(--photo-five); background-position: center 42%; }
.scene__copy { align-self: end; padding-bottom: 8vh; }
.scene__copy > span { text-transform: uppercase; letter-spacing: .14em; font-size: .48rem; }
.scene__copy h3 { margin: 13px 0 15px; font: 400 clamp(2.8rem, 5vw, 5rem)/.9 var(--serif); letter-spacing: -.06em; }
.scene__copy p { max-width: 210px; margin: 0; color: var(--grey); font-size: .82rem; line-height: 1.6; }
.scene__credit { display: inline-block; margin-top: 16px; color: var(--grey); text-decoration: none; text-transform: uppercase; letter-spacing: .11em; font-size: .43rem; }

.ribbon { position: relative; padding: 28px 0 24px; overflow: hidden; color: var(--ink); background: var(--accent); }
.ribbon::before, .ribbon::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: clamp(28px, 7vw, 110px); pointer-events: none; }
.ribbon::before { left: 0; background: linear-gradient(90deg, var(--accent), rgba(255,90,54,0)); }
.ribbon::after { right: 0; background: linear-gradient(-90deg, var(--accent), rgba(255,90,54,0)); }
.ribbon__track { display: flex; align-items: center; gap: 36px; width: max-content; transform: translateX(var(--marquee-x, 0)); will-change: transform; }
.ribbon span { font: 400 clamp(2rem, 4vw, 4rem)/1 var(--serif); white-space: nowrap; letter-spacing: -.04em; }
.ribbon i { font-style: normal; font-size: 1.4rem; }

.gallery { position: relative; display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; padding: 130px var(--pad) 180px; color: var(--white); background: var(--ink); }
.gallery__head { position: sticky; top: 0; align-self: start; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
.gallery__head .chapter { position: absolute; top: 105px; }
.gallery__head h2 { margin: 0 0 35px; font: 400 clamp(4.4rem, 7vw, 7rem)/.8 var(--serif); letter-spacing: -.075em; }
.gallery__head h2 em { color: var(--accent); font-weight: 400; }
.gallery__head > p { max-width: 275px; margin: 0; color: #aaa7a2; font-size: .9rem; line-height: 1.65; }
.gallery__stack { padding-top: 14vh; }
.gallery-card { position: sticky; top: 11vh; margin: 0 0 18vh; padding: 12px; color: var(--ink); background: var(--paper); box-shadow: 0 35px 70px rgba(0,0,0,.32); }
.gallery-card:nth-child(2) { top: 14vh; transform: rotate(1.8deg); }
.gallery-card:nth-child(3) { top: 17vh; transform: rotate(-1.2deg); }
.gallery-card:nth-child(4) { top: 20vh; transform: rotate(.8deg); }
.gallery-card:nth-child(5) { top: 23vh; transform: rotate(-1.4deg); }
.gallery-card:nth-child(6) { top: 26vh; transform: rotate(.6deg); }
.gallery-card > div { height: 68vh; min-height: 430px; background-position: center; background-size: cover; filter: saturate(1.08) contrast(1.03); }
.gallery-card--one > div { background-image: var(--gallery-one); background-position: center 54%; }
.gallery-card--two > div { background-image: var(--gallery-two); background-position: center 58%; }
.gallery-card--three > div { background-image: var(--gallery-three); }
.gallery-card--four > div { background-image: var(--gallery-four); background-position: center 62%; }
.gallery-card--five > div { background-image: var(--gallery-five); background-position: center 48%; }
.gallery-card--six > div { background-image: var(--gallery-six); background-position: 46% center; }
.gallery-card--lighthouse > div { background-image: var(--photo-five); background-position: center 42%; }
.gallery-card figcaption { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 10px; padding: 17px 4px 5px; }
.gallery-card figcaption span, .gallery-card figcaption small { text-transform: uppercase; letter-spacing: .13em; font-size: .46rem; }
.gallery-card figcaption p { margin: 0; font: 400 1.25rem/1 var(--serif); }
.gallery-card figcaption small a { color: inherit; text-decoration: none; }
.site .gallery { color: var(--ink); background: var(--paper); }
.site .gallery .gallery__head > p { color: var(--grey); font-size: 1rem; }
.site .gallery .gallery-card { color: var(--white); background: var(--ink); box-shadow: 0 32px 70px rgba(21,21,21,.24); }
.site .gallery .gallery-card figcaption { grid-template-columns: 35px minmax(0, 1fr) minmax(150px, auto); align-items: start; padding: 18px 6px 8px; }
.site .gallery .gallery-card figcaption > div { min-width: 0; }
.site .gallery .gallery-card figcaption em { display: block; max-width: 390px; margin-top: 7px; color: #aaa7a2; font: 400 .78rem/1.45 var(--sans); }
.site .gallery .gallery-card figcaption small { align-self: end; color: #aaa7a2; text-align: right; }

.location { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--paper); }
.location__map { position: relative; min-height: 760px; overflow: hidden; border-right: 1px solid var(--line); background: #dedbd5; }
.location__map iframe { display: block; width: 100%; height: 100%; min-height: 760px; border: 0; filter: saturate(.78) contrast(.92) brightness(1.03); }
.location__map-label { position: absolute; z-index: 2; left: 22px; bottom: 22px; display: flex; align-items: center; gap: 13px; padding: 12px 15px; color: var(--ink); background: rgba(242,240,235,.95); border: 1px solid var(--line); box-shadow: 0 8px 28px rgba(21,21,21,.14); }
.location__map-label > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--white); background: var(--accent); font: 700 .95rem/1 var(--serif); }
.location__map-label p, .location__map-label b, .location__map-label small { display: block; margin: 0; }
.location__map-label b { font-size: .7rem; }
.location__map-label small { margin-top: 3px; color: var(--grey); font-size: .52rem; }
.location__content { display: flex; flex-direction: column; justify-content: center; padding: 120px var(--pad); }
.location__content .chapter { margin-bottom: 16vh; }
.location__content h2 { margin: 0 0 34px; font: 400 clamp(4.2rem, 7vw, 7.5rem)/.81 var(--serif); letter-spacing: -.075em; }
.location__content h2 em { color: var(--accent); font-weight: 400; }
.location__content > p { margin: 0 0 40px; color: var(--grey); line-height: 1.65; }
.site .location--dark { min-height: auto; grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr); align-items: center; gap: clamp(50px, 8vw, 120px); padding: 130px var(--pad); color: var(--white); background: var(--ink); }
.site .location--dark .location__map { order: 2; min-height: min(72vh, 680px); border: 1px solid var(--light-line); }
.site .location--dark .location__map iframe { min-height: min(72vh, 680px); filter: saturate(.88) contrast(.94) brightness(.96); }
.site .location--dark .location__content { order: 1; padding: 0; }
.site .location--dark .location__content .chapter { margin-bottom: clamp(70px, 12vh, 120px); color: var(--white); }
.site .location--dark .location__content > p { color: #aaa7a2; }
.site .location--dark .button { color: var(--white); border-color: var(--light-line); }
.button { align-self: flex-start; display: flex; justify-content: space-between; min-width: 230px; padding: 16px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .55rem; font-weight: 700; }
.button span { color: var(--accent); }

.contact { min-height: 100svh; padding: 115px var(--pad) 110px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: clamp(55px, 7vw, 105px); color: var(--ink); background: var(--accent); }
.contact__intro .chapter { margin-bottom: clamp(65px, 11vh, 110px); }
.contact__eyebrow { margin: 0 0 24px; text-transform: uppercase; letter-spacing: .17em; font-size: .55rem; }
.contact h2 { margin: 0; font: 400 clamp(4.2rem, 7vw, 7.5rem)/.82 var(--serif); letter-spacing: -.075em; }
.contact h2 em { font-weight: 400; color: var(--white); }
.contact__intro > p:nth-of-type(2) { max-width: 340px; margin: 34px 0 0; line-height: 1.65; }
.contact__direct { max-width: 410px; margin-top: 48px; border-top: 1px solid rgba(21,21,21,.45); }
.contact__direct a { display: grid; grid-template-columns: 21px 68px minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 14px 0; border-bottom: 1px solid rgba(21,21,21,.45); text-decoration: none; transition: padding .35s var(--ease), color .25s ease; }
.contact__direct a:hover { padding-left: 10px; color: var(--white); }
.contact__direct span { text-transform: uppercase; letter-spacing: .13em; font-size: .46rem; }
.contact__direct b { min-width: 0; overflow-wrap: anywhere; font: 400 clamp(.88rem, 1.25vw, 1.1rem)/1.2 var(--serif); }
.contact__direct i { font-style: normal; }
.contact-icon, .button-icon { display: block; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-icon .icon-fill { fill: currentColor; stroke: none; }
.contact-form { align-self: start; padding-top: calc(34px + clamp(65px, 11vh, 110px)); }
.contact-form__fields > label, .contact-form__fields .form-row label { display: block; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .12em; font-size: .52rem; font-weight: 800; }
.contact-form label > span { color: var(--white); }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: 9px; padding: 14px 15px; color: var(--ink); background: rgba(255,253,248,.13); border: 1px solid rgba(21,21,21,.38); border-radius: 0; outline: 0; font: 400 1rem/1.4 var(--sans); text-transform: none; letter-spacing: 0; resize: vertical; transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.contact-form textarea { min-height: 150px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(21,21,21,.54); opacity: 1; }
.contact-form input:focus, .contact-form textarea:focus { background: rgba(255,253,248,.24); border-color: var(--ink); box-shadow: 0 0 0 2px rgba(255,253,248,.3); }
.contact-form input[type="date"] { cursor: pointer; color-scheme: light; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-submit { display: block; margin-top: 28px; }
.form-submit button { width: 100%; min-width: 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 15px 0; color: var(--ink); background: transparent; border: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); cursor: pointer; text-transform: uppercase; letter-spacing: .13em; font-size: .55rem; font-weight: 800; transition: padding .35s var(--ease), color .25s ease; }
.form-submit button:hover, .form-submit button:focus-visible { padding-left: 12px; color: var(--white); outline: 0; }
.button-label { display: inline-flex; align-items: center; gap: 9px; }
.button-icon { width: 18px; height: 18px; }
.form-submit .button-arrow { color: var(--white); }
.form-submit small { display: block; max-width: none; margin-top: 13px; font-size: .58rem; line-height: 1.5; }
.form-status { min-height: 20px; margin: 14px 0 0; font-size: .68rem; }

.booking { min-height: 64svh; display: flex; flex-direction: column; align-items: stretch; padding: 95px var(--pad) 30px; color: var(--white); background: var(--ink); }
.booking__content { margin: auto; text-align: center; }
.booking__content > p { margin: 0 0 30px; text-transform: uppercase; letter-spacing: .17em; font-size: .53rem; }
.booking h2 { margin: 0 0 36px; font: 400 clamp(5rem, 10vw, 10rem)/.78 var(--serif); letter-spacing: -.075em; }
.booking h2 em { color: var(--accent); font-weight: 400; }
.booking__content > a { display: inline-flex; justify-content: space-between; gap: 55px; min-width: 250px; padding: 15px 0; border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .56rem; font-weight: 800; }
.booking__content > a span { color: var(--accent); }
.booking__foot { width: 100%; display: flex; justify-content: space-between; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--light-line); color: #9f9c96; text-transform: uppercase; letter-spacing: .12em; font-size: .47rem; }
.booking__foot a { color: var(--white); text-decoration: none; }

@media (max-width: 900px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 126px; padding-bottom: 55px; }
  .hero h1 { max-width: 720px; font-size: clamp(5rem, 15vw, 8.5rem); }
  .hero__copy { max-width: none; }
  .hero__visual { width: 100%; height: min(68vh, 620px); }
  .hero__distance { right: 18px; }
  .hero__meta { position: static; grid-column: 1; margin-top: -16px; }
  .statement__grid { grid-template-columns: 1fr; }
  .statement__copy { max-width: 650px; }
  .statement__media { height: min(65vh, 620px); }
  .journey { display: block; padding: 0; }
  .journey__sticky { position: relative; min-height: auto; padding: 110px var(--pad) 60px; }
  .journey__sticky .chapter, .gallery__head .chapter { position: static; margin-bottom: 12vh; }
  .journey__counter { display: none; }
  .journey__scenes { padding: 0 var(--pad) 90px; border: 0; }
  .scene { min-height: auto; padding: 45px 0; }
  .gallery { display: block; }
  .gallery__head { position: relative; min-height: auto; padding-bottom: 80px; }
  .location { grid-template-columns: 1fr; }
  .location__map { min-height: 65vh; border-right: 0; border-bottom: 1px solid var(--line); }
  .location__map iframe { min-height: 65vh; }
  .location__content .chapter { margin-bottom: 10vh; }
  .contact { grid-template-columns: 1fr; align-items: start; }
  .contact__intro { max-width: 680px; }
  .contact-form { width: 100%; padding-top: 0; }
  .site .home-intro { min-height: auto; display: flex; flex-direction: column; gap: 0; padding-top: 94px; padding-bottom: 54px; }
  .site .home-intro__photo { width: 100%; min-height: min(66svh, 620px); }
  .site .home-intro__identity { margin-top: 42px; }
  .site .home-intro h1 { max-width: 760px; font-size: clamp(5rem, 15vw, 8.5rem); }
  .site .home-intro__meta { margin-top: 38px; }
  .site .statement__services { grid-template-columns: 1fr; gap: 20px; }
  .site .statement__services ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site .gallery { padding-top: 110px; padding-bottom: 130px; }
  .site .location--dark { grid-template-columns: 1fr; gap: 64px; padding: 110px var(--pad); }
  .site .location--dark .location__map { order: 2; min-height: min(64svh, 600px); border-color: var(--light-line); }
  .site .location--dark .location__map iframe { min-height: min(64svh, 600px); }
  .site .location--dark .location__content { order: 1; }
}

@media (max-width: 600px) {
  .header { padding-top: 18px; }
  .logo small, .menu-button span { display: none; }
  .menu { padding-top: 96px; }
  .menu > a { gap: 14px; padding: 10px 0; font-size: clamp(2.15rem, 12vw, 3rem); }
  .menu > a span { min-width: 16px; }
  .menu .menu__book { margin: 24px 0 0; font-size: .62rem; }
  .floating-book { z-index: 105; top: 14px; right: 68px; bottom: auto; padding: 12px 14px; box-shadow: none; }
  .hero { padding-top: 110px; gap: 45px; }
  .hero__overline { margin-bottom: 30px; }
  .hero h1 { font-size: clamp(4.1rem, 20vw, 6.5rem); line-height: .81; }
  .hero__lede { margin-top: 27px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 5px; }
  .hero__primary { width: 100%; min-width: 0; }
  .hero__visual { height: 58vh; min-height: 430px; }
  .hero__distance { left: 12px; right: auto; top: 10%; width: 76px; height: 76px; }
  .hero__visual figcaption, .hero__ratings { right: 0; }
  .hero__ratings a { gap: 3px 8px; padding-right: 9px; }
  .hero__ratings a + a { padding-left: 9px; }
  .hero__ratings strong { font-size: 1.55rem; }
  .hero__meta { flex-wrap: wrap; row-gap: 8px; }
  .statement { padding-top: 90px; }
  .statement .chapter { margin-bottom: 55px; }
  .statement h2 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  .statement__media { height: 58vh; min-height: 430px; }
  .statement__facts { grid-template-columns: 1fr; }
  .statement__facts > div { padding: 22px 0; }
  .statement__facts > div + div { padding-left: 0; border-top: 1px solid var(--light-line); border-left: 0; }
  .scene, .scene--reverse { display: block; }
  .scene--reverse .scene__media, .scene--reverse .scene__copy { order: initial; }
  .scene__media { height: 60vh; min-height: 420px; }
  .scene__copy { padding: 24px 0 0; }
  .gallery { padding-top: 100px; }
  .gallery__head h2, .location__content h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .gallery-card { top: 9vh; margin-bottom: 12vh; padding: 8px; }
  .gallery-card:nth-child(2), .gallery-card:nth-child(3), .gallery-card:nth-child(4), .gallery-card:nth-child(5), .gallery-card:nth-child(6) { top: 11vh; }
  .gallery-card > div { height: 60vh; min-height: 400px; }
  .gallery-card figcaption { grid-template-columns: 28px 1fr; }
  .gallery-card figcaption small { grid-column: 2; }
  .location__content { padding-top: 95px; }
  .location__map, .location__map iframe { min-height: 520px; }
  .location__map-label { left: 12px; right: 12px; bottom: 12px; }
  .contact { padding-top: 95px; gap: 60px; }
  .contact__intro .chapter { margin-bottom: 60px; }
  .contact h2 { font-size: clamp(3.8rem, 18vw, 5.8rem); line-height: .84; }
  .contact__direct { margin-top: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking { min-height: 560px; padding-top: 80px; }
  .booking h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .site .home-intro { padding-top: 88px; }
  .site .home-intro__photo { min-height: 430px; }
  .site .home-intro__distance { top: 14px; right: 14px; width: 78px; height: 78px; }
  .site .home-intro__identity { margin-top: 32px; }
  .site .home-intro h1 { font-size: clamp(4.4rem, 21vw, 6.4rem); }
  .site .home-intro__lede { margin-top: 24px; }
  .site .home-intro__actions { align-items: flex-start; flex-direction: column; gap: 5px; }
  .site .home-intro__primary { width: 100%; min-width: 0; }
  .site .home-intro__ratings { right: 10px; bottom: 10px; left: 10px; }
  .site .home-intro__ratings a { gap: 3px 7px; padding: 12px 10px; }
  .site .home-intro__ratings span, .site .home-intro__ratings small { font-size: .62rem; }
  .site .home-intro__ratings strong { font-size: 1.55rem; }
  .site .home-intro__ratings strong svg { width: 12px; height: 12px; }
  .site .statement__services ul { grid-template-columns: 1fr; gap: 15px; }
  .site .gallery .gallery-card figcaption { grid-template-columns: 28px minmax(0, 1fr); }
  .site .gallery .gallery-card figcaption small { grid-column: 2; margin-top: 8px; text-align: left; }
  .site .location--dark { gap: 50px; padding: 92px var(--pad); }
  .site .location--dark .location__content .chapter { margin-bottom: 58px; }
  .site .location--dark .location__map, .site .location--dark .location__map iframe { min-height: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], [data-reveal].is-visible, .title-line i, .title-line.is-visible i { opacity: 1; transform: none; animation: none !important; }
  [data-write].is-writing .write-char { opacity: 1; transform: none; filter: none; animation: none !important; }
  .intro { display: none; }
}


/* Site refinements are kept after the base styles to preserve the existing cascade. */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/fonts/manrope-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.site {
  --sans: "Manrope", sans-serif;
  --grey: #625f59;
  --pad: clamp(20px, 4.4vw, 76px);
  --section-space: clamp(72px, 8vw, 128px);
  font-size: 1rem;
  line-height: 1.5;
}
.site ::selection { color: var(--paper); background: var(--ink); }
.site :focus-visible { outline: 2px solid currentColor; outline-offset: 6px; }
.site main:focus { outline: none; }
.site section[id] { scroll-margin-top: 100px; }
.site img { display: block; width: 100%; height: 100%; object-fit: cover; }
.site .skip-link { position: fixed; z-index: 120; top: 12px; left: var(--pad); padding: 12px 20px; color: var(--white); background: var(--ink); transform: translateY(-160%); }
.site .skip-link:focus { transform: none; }

/* A quiet, legible header and one consistent reservation action. */
.site .header { min-height: 84px; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); padding-block: 17px; }
.site .logo { gap: 17px; justify-self: start; }
.site .logo > span { font-size: 2.3rem; }
.site .logo small { font-size: .75rem; letter-spacing: .09em; line-height: 1.4; }
.site .menu-button { display: flex; min-width: 44px; min-height: 44px; justify-self: end; justify-content: center; font-size: .875rem; }
.site .menu { visibility: hidden; transition: opacity .25s, visibility .25s; clip-path: none; padding-top: 120px; }
.site .menu.is-open { visibility: visible; }
.site .menu > a { font-size: clamp(2.25rem, 6vw, 5rem); line-height: 1.1; padding-block: 18px; }
.site .menu > a span { font-size: .75rem; }
.site .floating-book { right: var(--pad); bottom: 24px; top: auto; max-width: calc(100% - 40px); min-height: 44px; padding: 11px 15px; gap: 12px; font-size: .875rem; font-weight: 600; line-height: 1.4; letter-spacing: 0; text-transform: none; color: var(--white); background: #cc3e20; border: 1px solid #ffffff38; box-shadow: 0 4px 18px #15151518; }
.site .floating-book:hover { color: var(--white); background: #b9361b; transform: translateY(-2px); }
.site .floating-book[hidden] { display: none; }

/* Generous display type, balanced with a single clear first action. */
.site .home-intro { min-height: min(900px, 100svh); grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 28px clamp(32px, 5vw, 80px); padding-top: 116px; padding-bottom: 32px; }
.site .home-intro__identity { min-width: 0; padding-block: 36px; }
.site .home-intro__eyebrow { margin-bottom: 28px; font-size: .75rem; letter-spacing: .16em; }
.site .home-intro h1 { font-size: clamp(5rem, 8.6vw, 9.25rem); line-height: .94; letter-spacing: -.065em; }
.site .home-intro h1 .title-line--accent { color: var(--accent); }
.site .title-line { overflow: visible; }
.site .title-line i { animation: none; }
.site .home-intro__lede { max-width: 32ch; margin-top: 28px; font-size: 1.0625rem; line-height: 1.7; }
.site .home-intro__actions { flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 32px; }
.site .home-intro__primary { min-height: 52px; font-size: .875rem; letter-spacing: .01em; text-transform: none; font-weight: 600; }
.site .home-intro__primary { min-width: 216px; padding: 15px 20px; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); transition: background .2s, color .2s; }
.site .home-intro__primary:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.site .home-intro__primary:hover span { color: var(--ink); }
.site .home-intro__photo { min-height: 580px; background: #d8d5ce; transform: none; will-change: auto; }
.site .home-intro__image { position: absolute; inset: 0; object-position: center 43%; }
.site .home-intro__distance { width: 96px; height: 96px; color: var(--white); font-size: 1.75rem; transform: none; }
.site .home-intro__distance small { color: var(--ink); font-size: .75rem; letter-spacing: .07em; }
.site .home-intro__ratings { inset: auto 18px 18px; grid-template-columns: 1fr; box-shadow: 0 4px 20px #15151514; background: var(--paper); }
.site .home-intro__ratings a { grid-template-columns: minmax(0, 1fr) auto; grid-template-rows: auto auto; gap: 2px 8px; padding: 12px; }
.site .home-intro__ratings a + a { border-left: 0; border-top: 1px solid var(--line); }
.site .home-intro__ratings a:hover { background: var(--white); }
.site .home-intro__ratings span { grid-column: 1; font-size: .875rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.site .home-intro__ratings small { font-size: .75rem; letter-spacing: .02em; text-transform: none; }
.site .home-intro__ratings a > small { grid-column: 1; grid-row: 2; }
.site .home-intro__ratings strong { grid-column: 2; grid-row: 1 / 3; gap: 4px; font-size: 1.75rem; }
.site .home-intro__ratings strong small { font-size: .75rem; }
.site .home-intro__ratings strong svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); }
.site .home-intro__meta { justify-content: flex-start; align-content: end; font-size: .75rem; letter-spacing: .04em; }

/* Shared chapter rhythm; long headings can wrap without clipping. */
.site .chapter { gap: 12px; }
.site .chapter span { width: 36px; height: 36px; font-size: .75rem; }
.site .chapter p { font-size: .875rem; letter-spacing: .1em; }
.site .statement,
.site .gallery,
.site .location--dark,
.site .contact { padding-block: var(--section-space); }
.site .statement h2,
.site .gallery__head h2,
.site .location__content h2,
.site .contact h2 { font-size: clamp(2.75rem, 4.7vw, 5.5rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
.site .statement .chapter { margin-bottom: 52px; }
.site .statement__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 90px); }
.site .statement__description { max-width: 40ch; font-size: 1rem; color: #c6c2bb; }
.site .button,
.site .booking__content > a { min-height: 52px; font-size: .875rem; text-transform: none; letter-spacing: .02em; }
.site .button:hover,
.site .booking__content > a:hover { border-color: var(--accent); }
.site .statement__media { height: auto; min-height: 0; aspect-ratio: 1 / 1.08; background: #302f2d; transform: none; filter: none; }
.site .statement__facts { margin-top: 56px; }
.site .statement__facts > div { grid-template-columns: 30px minmax(0, 1fr); gap: 12px; }
.site .statement__facts strong { font-size: 1.25rem; line-height: 1.3; }
.site .statement__facts span { color: #c6c2bb; font-size: .875rem; line-height: 1.5; letter-spacing: 0; text-transform: none; }
.site .statement__services { grid-template-columns: minmax(160px, .6fr) minmax(0, 2fr); gap: 24px; }
.site .statement__services > p { color: #c6c2bb; font-size: .875rem; letter-spacing: .03em; }
.site .statement__services li { font: 400 1rem/1.5 var(--sans); }

/* Light photographic prints collect into a gently staggered stack on scroll. */
.site .gallery { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(32px, 6vw, 90px); }
.site .gallery__head { top: 120px; min-height: 0; justify-content: start; padding: 0; }
.site .gallery__head .chapter { position: static; margin-bottom: 48px; }
.site .gallery__head h2 { margin-bottom: 28px; }
.site .gallery__head h2 em { color: var(--accent); }
.site .gallery .gallery__head > p { max-width: 31ch; line-height: 1.7; }
.site .gallery__stack { min-width: 0; padding: 0 0 48px; }
.site .gallery .gallery-card { --card-offset: 0px; --card-angle: -1deg; position: sticky; top: calc(112px + var(--card-offset)); margin: 0 0 clamp(140px, 26svh, 260px); padding: 12px 12px 20px; color: var(--ink); background: var(--white); border: 1px solid #15151510; box-shadow: 0 3px 6px #1515150a, 0 18px 44px #1515151f; transform: rotate(var(--card-angle)); transform-origin: center 25%; }
.site .gallery .gallery-card:nth-child(2) { --card-offset: 10px; --card-angle: 1.4deg; }
.site .gallery .gallery-card:nth-child(3) { --card-offset: 20px; --card-angle: -.8deg; }
.site .gallery .gallery-card:nth-child(4) { --card-offset: 30px; --card-angle: 1deg; }
.site .gallery .gallery-card:nth-child(5) { --card-offset: 40px; --card-angle: -.5deg; }
.site .gallery .gallery-card:focus-within { z-index: 6; }
.site .gallery .gallery-card:last-child { margin-bottom: 0; }
.site .gallery-card > div { height: clamp(180px, 40svh, 480px); min-height: 0; aspect-ratio: auto; background: #d8d5ce; filter: none; overflow: hidden; }
.site .gallery-card img { transition: transform .7s var(--ease); }
.site .gallery-card--four img { object-position: center 62%; }
.site .gallery-card--two img { object-position: center 58%; }
.site .gallery-card--lighthouse img { object-position: center 42%; }
.site .gallery-card--five img { object-position: center 48%; }
@media (hover: hover) {
  .site .gallery-card:hover img { transform: scale(1.025); }
}
.site .gallery .gallery-card figcaption { grid-template-columns: 30px minmax(0, 1fr); gap: 8px 12px; padding: 18px 6px 0; }
.site .gallery-card figcaption > span { padding-top: 6px; color: var(--grey); font-size: .75rem; letter-spacing: .04em; }
.site .gallery-card figcaption p { font-size: 1.75rem; line-height: 1.15; letter-spacing: -.03em; }
.site .gallery .gallery-card figcaption em { max-width: 44ch; margin-top: 10px; color: var(--grey); font: 400 1rem/1.6 var(--sans); }
.site .gallery .gallery-card figcaption small { grid-column: 2; margin: 0; color: var(--grey); font-size: .75rem; line-height: 1.5; text-transform: none; letter-spacing: 0; text-align: left; }
.site .gallery-card figcaption small a { text-decoration: underline; text-underline-offset: 3px; }

.site .location--dark { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 90px); }
.site .location--dark .location__content .chapter { margin-bottom: 48px; }
.site .location--dark .location__content > p { color: #c6c2bb; font-size: 1.0625rem; }
.site .location--dark .location__map { min-height: 0; height: 520px; }
.site .location--dark .location__map iframe { min-height: 0; height: 100%; filter: none; }
.site .location__map-label { pointer-events: none; }
.site .location__map-label > span { color: var(--ink); }
.site .location__map-label b { font-size: .875rem; }
.site .location__map-label small { font-size: .75rem; }

/* A paper form gives the coral contact chapter a calm, readable working area. */
.site .contact { min-height: 0; gap: clamp(32px, 6vw, 90px); }
.site .contact__intro .chapter { margin-bottom: 48px; }
.site .contact__eyebrow { margin-bottom: 22px; font-size: .875rem; letter-spacing: .07em; }
.site .contact h2 em { color: var(--white); }
.site .contact__intro > p:nth-of-type(2) { max-width: 39ch; margin-top: 26px; }
.site .contact__direct { max-width: none; margin-top: 32px; }
.site .contact__direct a { grid-template-columns: 22px minmax(0, 1fr) 20px; gap: 4px 14px; min-height: 70px; padding-block: 13px; }
.site .contact__direct .contact-icon { grid-row: 1 / 3; }
.site .contact__direct span { grid-column: 2; font-size: .75rem; text-transform: none; letter-spacing: .02em; }
.site .contact__direct b { grid-column: 2; font: 400 1rem/1.5 var(--sans); }
.site .contact__direct i { grid-column: 3; grid-row: 1 / 3; }
.site .contact__direct a:hover { color: var(--ink); padding-left: 6px; background: #ffffff12; }
.site .contact-form { padding: clamp(24px, 3vw, 44px); background: var(--paper); border: 1px solid #15151520; }
.site .contact-form h3 { margin: 0 0 12px; font: 400 2rem/1.1 var(--serif); letter-spacing: -.035em; }
.site .contact-form__note { margin: 0 0 28px; color: var(--grey); font-size: .875rem; line-height: 1.6; }
.site .contact-form__fields > label,
.site .contact-form__fields .form-row label { min-width: 0; margin-bottom: 20px; font-size: .875rem; text-transform: none; letter-spacing: 0; font-weight: 600; }
.site .contact-form label > span { color: var(--ink); }
.site .contact-form input,
.site .contact-form textarea { min-width: 0; min-height: 50px; margin-top: 8px; padding: 12px 14px; border-color: #8c8982; background: var(--white); }
.site .contact-form input::placeholder,
.site .contact-form textarea::placeholder { color: var(--grey); }
.site .contact-form input:focus,
.site .contact-form textarea:focus { border-color: var(--ink); background: var(--white); outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: none; }
.site .contact-form textarea { min-height: 124px; }
.site .form-row { gap: 16px; }
.site .form-submit { margin-top: 24px; }
.site .form-submit button { min-height: 54px; padding: 15px 18px; color: var(--white); background: var(--ink); font-size: .875rem; letter-spacing: 0; text-transform: none; border: 1px solid var(--ink); }
.site .form-submit button:hover { padding: 15px 18px; color: var(--ink); background: var(--accent); border-color: var(--accent); }
.site .form-submit button:focus-visible { padding: 15px 18px; outline: 2px solid var(--ink); outline-offset: 4px; }
.site .form-submit .button-arrow { color: inherit; }
.site .form-submit small,
.site .form-status { font-size: .875rem; line-height: 1.5; }
.site .form-submit small { color: var(--grey); }
.site .form-status:empty { display: none; }
.site .booking { min-height: 520px; padding-top: 80px; gap: 64px; }
.site .booking__content > p { font-size: .75rem; }
.site .booking h2 { font-size: clamp(3.5rem, 8vw, 8rem); line-height: .98; letter-spacing: -.055em; }
.site .booking__foot { gap: 20px; flex-wrap: wrap; font-size: .75rem; line-height: 1.6; letter-spacing: .03em; }
.site .booking__foot a { padding-bottom: 12px; }
.site [data-reveal].is-visible { animation: contentReveal .65s var(--ease) both; }
@keyframes contentReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .site .home-intro__actions { align-items: stretch; flex-direction: column; max-width: 300px; }
  .site .statement__services ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 900px) {
  .site .home-intro { display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: auto; gap: 28px; min-height: 0; padding-top: 132px; padding-bottom: 40px; }
  .site .home-intro__identity { grid-column: 1; grid-row: 1; width: 100%; margin: 0; padding: 0; }
  .site .home-intro h1 { font-size: clamp(4.5rem, 12vw, 7rem); }
  .site .home-intro__lede { max-width: 42ch; }
  .site .home-intro__actions { flex-direction: row; flex-wrap: wrap; align-items: center; max-width: none; }
  .site .home-intro__photo { grid-column: 1; grid-row: 2; min-height: 0; height: clamp(400px, 66vw, 580px); }
  .site .home-intro__meta { grid-column: 1; grid-row: 3; margin: 0; }
  .site .statement__grid { grid-template-columns: 1fr; }
  .site .statement__copy { max-width: 650px; }
  .site .statement__media { max-height: 560px; aspect-ratio: 4 / 3; }
  .site .statement__services { grid-template-columns: 1fr; }
  .site .statement__facts { grid-template-columns: 1fr; }
  .site .statement__facts > div { padding: 22px 0; }
  .site .statement__facts > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--light-line); }
  .site .gallery { display: block; }
  .site .gallery__head { position: static; padding-bottom: 40px; }
  .site .gallery__head h2 br { display: none; }
  .site .gallery__head h2 { max-width: 14ch; }
  .site .gallery .gallery__head > p { max-width: 46ch; }
  .site .location--dark { grid-template-columns: 1fr; gap: 40px; }
  .site .location--dark .location__map { height: 440px; }
  .site .contact { grid-template-columns: 1fr; gap: 40px; }
  .site .contact__intro { max-width: none; }
  .site .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 600px) {
  .site section[id] { scroll-margin-top: 88px; }
  .site .header { min-height: 76px; padding-block: 12px; }
  .site .logo small { display: block; font-size: .75rem; }
  .site .menu-button span { display: none; }
  .site .floating-book { right: 20px; bottom: max(16px, env(safe-area-inset-bottom)); }
  .site .home-intro { padding-top: 116px; gap: 24px; }
  .site .home-intro__eyebrow { margin-bottom: 20px; }
  .site .home-intro h1 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .site .home-intro__lede { margin-top: 22px; font-size: 1rem; }
  .site .home-intro__actions { margin-top: 24px; gap: 4px; }
  .site .home-intro__primary { width: 100%; }
  .site .home-intro__photo { height: 420px; }
  .site .home-intro__distance { top: 14px; right: 14px; width: 82px; height: 82px; font-size: 1.5rem; }
  .site .home-intro__ratings { inset: auto 12px 12px; }
  .site .home-intro__ratings a { padding: 10px 12px; gap: 2px 12px; }
  .site .home-intro__ratings strong { font-size: 1.75rem; }
  .site .home-intro__meta { gap: 6px 20px; }
  .site .statement .chapter,
  .site .gallery__head .chapter,
  .site .location--dark .location__content .chapter,
  .site .contact__intro .chapter { margin-bottom: 32px; }
  .site .statement h2,
  .site .gallery__head h2,
  .site .location__content h2,
  .site .contact h2 { font-size: clamp(2.5rem, 10vw, 3.75rem); line-height: 1.05; }
  .site .statement__media { min-height: 0; aspect-ratio: 1 / 1.05; }
  .site .statement__services ul { grid-template-columns: 1fr; gap: 14px; }
  .site .gallery .gallery-card { top: calc(96px + var(--card-offset)); margin-bottom: 24svh; padding: 8px 8px 16px; }
  .site .gallery-card > div { height: min(60vw, 36svh); }
  .site .gallery .gallery-card figcaption { gap: 10px; }
  .site .gallery-card figcaption p { font-size: 1.5rem; }
  .site .location--dark .location__map { height: 380px; }
  .site .contact-form { padding: 24px 20px; }
  .site .form-row { grid-template-columns: 1fr; gap: 0; }
  .site .form-submit button { gap: 8px; padding-inline: 12px; }
  .site .booking { min-height: 460px; padding-bottom: 26px; }
}
/* Wider photos have room for both compact review summaries on a single strip. */
@media (min-width: 601px) {
  .site .home-intro__ratings { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site .home-intro__ratings a + a { border-top: 0; border-left: 1px solid var(--line); }
}
/* Short viewports and reduced motion retain the print treatment in normal flow. */
@media (max-height: 640px), (prefers-reduced-motion: reduce) {
  .site .gallery .gallery-card { position: relative; top: auto; margin-bottom: 40px; transform: none; }
  .site .gallery-card > div { height: auto; aspect-ratio: 4 / 3; }
}
@media (prefers-reduced-motion: reduce) {
  .site [data-reveal].is-visible { animation: none; }
  .site .gallery-card img { transform: none; }
}

/* Bilingual navigation and hotel photographs. */
.site .floating-book { border-radius: 999px; padding: 14px 21px; gap: 20px; }
.site .language-switch { display: flex; gap: 3px; margin: 0; position: relative; z-index: 3; justify-self: center; flex-shrink: 0; }
.site .language-switch a { display: grid; place-items: center; min-width: 34px; min-height: 44px; font-size: .8125rem; font-weight: 700; border-bottom: 2px solid transparent; text-decoration: none; }
.site .language-switch a[aria-current="page"] { border-color: currentColor; }
.site .language-switch a:hover { background: #8882; }

/* A compact preview opens into the complete hotel gallery. */
.site .statement-gallery { position: relative; min-width: 0; min-height: 480px; display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(135px, .78fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 30px; }
.site .statement-gallery__photo { position: relative; min-width: 0; min-height: 0; display: block; padding: 0; overflow: hidden; color: var(--white); background: #302f2d; border: 0; cursor: zoom-in; text-align: left; }
.site .statement-gallery__photo--main { grid-row: 1 / 3; }
.site .statement-gallery__photo img { transition: transform .6s var(--ease); }
.site .statement-gallery__photo--main img { object-position: 52% center; }
.site .statement-gallery__photo:nth-child(2) img { object-position: center 60%; }
.site .statement-gallery__photo::after { content: ""; position: absolute; inset: 54% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.64)); pointer-events: none; }
.site .statement-gallery__photo > span { position: absolute; z-index: 2; left: 15px; bottom: 13px; font-size: .875rem; font-weight: 600; }
.site .statement-gallery__open { position: absolute; z-index: 3; top: 13px; right: 13px; min-height: 46px; display: inline-flex; align-items: center; gap: 11px; padding: 11px 16px; color: var(--ink); background: rgba(242,240,235,.96); border: 0; border-radius: 999px; box-shadow: 0 4px 18px rgba(21,21,21,.18); cursor: pointer; font-size: .875rem; font-weight: 700; }
.site .statement-gallery__open span { color: var(--accent); }
.site .statement-gallery__hint { position: absolute; left: 0; bottom: -30px; margin: 0; color: #aaa7a2; font-size: .75rem; }
@media (hover: hover) {
  .site .statement-gallery__photo:hover img { transform: scale(1.025); }
  .site .statement-gallery__open:hover { background: var(--accent); }
}

.site.is-gallery-open { overflow: hidden; }
.site .hotel-gallery { width: 100%; max-width: none; height: 100dvh; max-height: none; margin: 0; padding: 0; color: var(--white); background: rgba(15,15,15,.985); border: 0; }
.site .hotel-gallery::backdrop { background: rgba(15,15,15,.86); }
.site .hotel-gallery__shell { min-height: 100%; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; padding: 22px clamp(18px, 4vw, 58px) 20px; }
.site .hotel-gallery__header { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 12px; }
.site .hotel-gallery__header p { margin: 0; font-size: .875rem; letter-spacing: .03em; }
.site .hotel-gallery__close,
.site .hotel-gallery__arrow { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; color: var(--white); background: transparent; border: 1px solid var(--light-line); border-radius: 50%; cursor: pointer; }
.site .hotel-gallery__close { font-size: 1.25rem; }
.site .hotel-gallery__stage { min-height: 0; display: grid; grid-template-columns: 50px minmax(0, 1fr) 50px; align-items: center; gap: clamp(8px, 2vw, 28px); }
.site .hotel-gallery__stage figure { min-width: 0; min-height: 0; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; gap: 10px; margin: 0; }
.site .hotel-gallery__image { width: auto; max-width: 100%; height: auto; max-height: calc(100dvh - 170px); object-fit: contain; }
.site .hotel-gallery__stage figcaption { min-height: 20px; color: #c6c2bb; font-size: .875rem; }
.site .hotel-gallery__thumbs { display: flex; gap: 7px; padding-top: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; }
.site .hotel-gallery__thumb { flex: 0 0 58px; width: 58px; height: 44px; padding: 0; overflow: hidden; background: #302f2d; border: 2px solid transparent; opacity: .5; cursor: pointer; }
.site .hotel-gallery__thumb[aria-current="true"] { border-color: var(--accent); opacity: 1; }
.site .hotel-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .site .statement-gallery { min-height: 520px; } }
@media (max-width: 600px) {
  .site .hotel-gallery__shell { padding: 14px 10px 12px; }
  .site .hotel-gallery__stage { grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 5px; }
  .site .hotel-gallery__close, .site .hotel-gallery__arrow { width: 44px; height: 44px; }
  .site .hotel-gallery__image { max-height: calc(100dvh - 160px); }
  .site .hotel-gallery__thumb { flex-basis: 52px; width: 52px; height: 40px; }
}
@media (max-width: 480px) {
  .site .header { gap: 8px; }
  .site .statement-gallery { min-height: 390px; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 265px 115px; }
  .site .statement-gallery__photo--main { grid-column: 1 / 3; grid-row: 1; }
  .site .statement-gallery__photo > span { left: 11px; bottom: 10px; font-size: .75rem; }
  .site .statement-gallery__open { top: 10px; right: 10px; padding-inline: 14px; font-size: .8125rem; }
  .site .statement-gallery__hint { bottom: -28px; }
  .site .hotel-gallery__stage { position: relative; display: block; }
  .site .hotel-gallery__stage figure { height: 100%; padding: 0 3px; }
  .site .hotel-gallery__arrow { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); background: rgba(15,15,15,.72); }
  .site .hotel-gallery__arrow:first-child { left: 7px; }
  .site .hotel-gallery__arrow:last-child { right: 7px; }
}
html[lang="en"] .home-intro__distance small {
  width: 72px;
  margin-inline: auto;
  font-size: .625rem;
  line-height: 1.15;
  letter-spacing: .04em;
}
