/* ============================================================
   Plumbing only. Nothing here is a design decision — no colour,
   no typeface, no layout. Each site writes its own visual system
   on top; this file only carries the things that must be right
   on every site and are invisible when they are.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A sideways-scrollable page drags position:fixed elements out of view on
     phones. Clip rather than scroll. (clip, not hidden: hidden would make html
     a scroll container and break scroll-padding and sticky.) */
  overflow-x: clip;
}

body { margin: 0; }
/* Lock scrolling on the ROOT, not on body. html already has overflow-x:clip,
   so overflow:hidden on body turns body into its own scroll container — a
   position:sticky header then sticks to body and is thrown off-screen (with
   its close button) when the menu opens after scrolling. site.js puts
   .is-locked on <html> directly; a :has() selector was tried first and its
   style invalidation visibly lagged behind the menu opening. */
html.is-locked { overflow: hidden; }
/* [hidden] must win. A rule like `.gallery-more { display:flex }` outranks the
   browser's own `[hidden] { display:none }`, which left an empty "Show 0 more"
   button on screen whenever a gallery had nothing further to reveal. */
[hidden] { display: none !important; }

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; }
/* A <button> inherits the user agent's grey `buttonface` unless something says
   otherwise. An outline/ghost button that sets only border-color and color then
   renders as light-grey with (often white) text on it — invisible. Reset here;
   any variant that wants a fill sets one and wins on specificity. */
button { background: transparent; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal-on-scroll. The JS failsafe shows everything if the observer
   never runs, so content can never be stranded invisible. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease, ease), transform .7s var(--ease, ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media print {
  .site-header, .lightbox, .skip-link, .gallery-more, .filters, .map-consent, .callbar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #555; }
}

@font-face{font-family:Manrope;src:url(../fonts/Manrope-800-latin.woff2) format('woff2');font-style:normal;font-weight:800;font-display:swap;unicode-range:U+0000-024F,U+1E00-1EFF,U+2000-206F,U+20A0-20CF,U+2190-21FF}
@font-face{font-family:Manrope;src:url(../fonts/Manrope-800-greek.woff2) format('woff2');font-style:normal;font-weight:800;font-display:swap;unicode-range:U+0370-03FF,U+1F00-1FFF}
@font-face{font-family:Inter;src:url(../fonts/Inter-400-latin.woff2) format('woff2');font-style:normal;font-weight:400;font-display:swap;unicode-range:U+0000-024F,U+1E00-1EFF,U+2000-206F,U+20A0-20CF,U+2190-21FF}
@font-face{font-family:Inter;src:url(../fonts/Inter-400-greek.woff2) format('woff2');font-style:normal;font-weight:400;font-display:swap;unicode-range:U+0370-03FF,U+1F00-1FFF}
@font-face{font-family:Inter;src:url(../fonts/Inter-500-latin.woff2) format('woff2');font-style:normal;font-weight:500;font-display:swap;unicode-range:U+0000-024F,U+1E00-1EFF,U+2000-206F,U+20A0-20CF,U+2190-21FF}
@font-face{font-family:Inter;src:url(../fonts/Inter-500-greek.woff2) format('woff2');font-style:normal;font-weight:500;font-display:swap;unicode-range:U+0370-03FF,U+1F00-1FFF}
:root{--paper:#f7f4eb;--ink:#173e33;--muted:#53635a;--line:#cbd0c2;--sand:#eae6d9;--lime:#e3edac;--ease:cubic-bezier(.2,.65,.3,1)}
body{font-family:Inter,Arial,sans-serif;color:var(--ink);background:var(--paper);font-size:16px;line-height:1.65}a{color:inherit;text-decoration:none}button,a{-webkit-tap-highlight-color:transparent}a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid #a96422;outline-offset:5px}button{cursor:pointer}::selection{background:var(--ink);color:var(--paper)}.wrap{width:min(1360px,calc(100% - 112px));margin-inline:auto}.section{padding-block:110px}h1,h2,h3{font-family:Manrope,Arial,sans-serif;font-weight:800;line-height:1.06;letter-spacing:-.055em}h2{font-size:clamp(38px,4.8vw,72px)}h3{font-size:28px;letter-spacing:-.035em}p{max-width:65ch}.eyebrow{font-size:11px;letter-spacing:.16em;text-transform:uppercase;font-weight:500;line-height:1.55;margin-bottom:24px}.small{font-size:13px;color:var(--muted)}.skip{position:fixed;z-index:200;top:-90px;left:16px;padding:12px 20px;background:var(--ink);color:#fff}.skip:focus{top:12px}.button{display:inline-flex;align-items:center;justify-content:space-between;gap:42px;min-height:58px;padding:16px 24px;background:var(--ink);color:var(--paper);font-size:14px;font-weight:500;transition:background .2s;white-space:normal}.button:hover{background:#295845}.button span{font-size:25px;font-weight:400;line-height:1}.button.light{background:var(--paper);color:var(--ink)}.button.light:hover{background:var(--lime)}.text-link{display:inline-flex;gap:28px;align-items:center;border-bottom:1px solid var(--ink);padding:8px 0;font-size:14px;font-weight:500}.text-link:hover{border-bottom-width:2px;padding-bottom:7px}.text-link span{font-size:24px;line-height:1}.site-header{position:sticky;top:0;z-index:40;background:var(--paper);border-bottom:1px solid transparent}.site-header.is-stuck{border-color:var(--line)}.header-inner{height:106px;width:calc(100% - 80px);margin:auto;display:flex;align-items:center;gap:28px}.brand{width:122px;flex-shrink:0}.brand img{width:100%;height:auto}.header-place{border-left:1px solid var(--line);padding-left:25px;font-size:9px;letter-spacing:.2em;line-height:1.8}#primary-nav{margin-left:auto;display:flex;align-items:center;gap:36px;font-size:13px;font-weight:500}#primary-nav a:not(.language){position:relative;padding:10px 0}#primary-nav a:not(.language)::after{content:'';position:absolute;bottom:3px;height:1px;left:0;right:100%;background:var(--ink);transition:right .2s}#primary-nav a:hover::after,#primary-nav a[aria-current]::after{right:0}#primary-nav a:nth-child(4){background:var(--ink);padding:13px 24px;color:var(--paper)}#primary-nav a:nth-child(4)::after{display:none}.language{border:1px solid var(--line);width:38px;height:38px;display:inline-grid;place-items:center;font-size:11px}.nav-toggle{display:none}.hero{position:relative;height:520px;color:var(--paper);isolation:isolate;overflow:hidden}.hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-3}.hero-shade{position:absolute;inset:0;z-index:-2;background:linear-gradient(90deg,rgba(5,24,18,.64),rgba(5,24,18,.12)),linear-gradient(0deg,rgba(5,24,18,.38),transparent 65%)}.hero-copy{height:100%;display:flex;flex-direction:column;justify-content:center;padding-top:24px;padding-bottom:36px;position:relative}.hero h1{font-size:clamp(55px,7vw,110px);max-width:1020px}.hero .eyebrow{color:#fff}.hero-bottom{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-top:30px}.hero-bottom p{font-size:17px;line-height:1.6;margin:0;max-width:630px}.hero-coordinate{position:absolute;right:40px;top:36px;font-size:9px;letter-spacing:.15em;writing-mode:vertical-rl}.home-hero{height:min(750px,calc(100svh - 106px));min-height:580px}.home-hero h1{font-size:clamp(75px,8.8vw,140px);line-height:1.02;letter-spacing:-.055em}.home-hero .hero-copy{justify-content:flex-end;padding-bottom:66px}.home-hero>img{object-position:center 56%}.welcome-strip{background:var(--ink);color:var(--paper);padding:24px 56px;display:flex;gap:20px;justify-content:space-between;align-items:center;font-size:9px;letter-spacing:.13em}.intro{display:grid;grid-template-columns:1fr 2.4fr;gap:50px}.intro>.eyebrow{padding-top:12px}.intro h2{max-width:1000px}.intro-bottom{display:flex;justify-content:space-between;gap:60px;align-items:flex-end;margin-top:36px}.intro-bottom p{font-size:16px;max-width:510px;margin:0;color:var(--muted)}.intro-bottom .text-link{flex-shrink:0}.stays{background:var(--sand);scroll-margin-top:105px}.section-heading{display:flex;justify-content:space-between;gap:55px;align-items:flex-end;margin-bottom:55px}.section-heading h2{font-size:clamp(35px,4.1vw,60px);max-width:740px}.section-heading>p{max-width:345px;margin:0;color:var(--muted);font-size:14px}.stay-grid{display:grid;grid-template-columns:1fr 1fr;column-gap:36px;row-gap:66px}.stay-photo{display:block;position:relative;overflow:hidden}.stay-photo img{width:100%;aspect-ratio:1.48;object-fit:cover;transition:transform .6s var(--ease)}.stay-photo:hover img{transform:scale(1.035)}.photo-link{position:absolute;right:20px;bottom:20px;width:48px;height:48px;background:var(--paper);display:grid;place-items:center;font-size:26px}.stay-title{display:flex;gap:16px;align-items:baseline;margin:24px 0 14px}.number{font-size:11px}.stay-card h3{font-size:27px}.stay-card>p{color:var(--muted);font-size:14px;max-width:460px}.stay-card .text-link{font-size:12px}.amenities{margin-top:70px;padding-top:35px;border-top:1px solid #bfc3b5;display:flex;gap:48px;align-items:baseline}.amenities .eyebrow{flex-shrink:0}.amenities ul{list-style:none;display:flex;flex-wrap:wrap;gap:18px 32px;font-size:13px}.amenities li::before{content:'+';margin-right:12px}.pool-story{display:grid;grid-template-columns:2.2fr 1fr;background:var(--ink);color:var(--paper)}.pool-visual{position:relative;min-height:660px;isolation:isolate}.pool-visual>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}.pool-visual::after{content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,18,12,.7),transparent 85%);z-index:-1}.pool-overlay{position:absolute;bottom:50px;left:56px}.pool-overlay h2{font-size:clamp(65px,7vw,105px)}.pool-copy{padding:50px 45px;display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-start}.pool-copy h3{font-size:34px;line-height:1.16;margin-bottom:25px}.pool-copy p{color:#d6dfd4;font-size:14px}.pool-copy .text-link{border-color:#e0e5db;font-size:13px;margin-top:15px}.tiny-mark{font-size:50px;line-height:1;margin-bottom:auto;color:var(--lime)}.island{display:grid;grid-template-columns:1fr 1.15fr;gap:90px;align-items:center}.island-copy p:not(.eyebrow){margin-top:30px;max-width:400px;color:var(--muted)}.island-copy .text-link{margin-top:10px}.island-photo{position:relative}.tile{border:0;padding:0;position:relative;overflow:hidden;display:block;width:100%;background:var(--sand)}.tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease)}.tile:hover img{transform:scale(1.025)}.island-photo .tile{aspect-ratio:1}.zoom{position:absolute;right:12px;bottom:12px;background:var(--paper);color:var(--ink);width:35px;height:35px;display:grid;place-items:center;font-size:21px;opacity:0;transition:opacity .2s}.tile:hover .zoom,.tile:focus-visible .zoom{opacity:1}.photo-note{display:block;margin-top:14px;font-size:9px;letter-spacing:.15em}.invite{border-top:1px solid var(--line);padding-block:70px;display:flex;justify-content:space-between;align-items:center;gap:45px}.invite .eyebrow{margin-bottom:18px}.invite h2{font-size:clamp(34px,4vw,62px)}.invite .button{flex-shrink:0}.footer{background:var(--ink);color:var(--paper);overflow:hidden;padding-top:70px}.footer-top{display:grid;grid-template-columns:1.6fr 1.3fr .8fr;gap:50px}.footer .eyebrow{color:#c5d4c7;font-size:9px}.footer p,.footer a{font-size:13px}.footer a{display:block;width:fit-content;margin-bottom:7px}.footer a:hover{text-decoration:underline}.footer-nav .language{display:inline-grid;font-size:10px;margin-top:8px;border-color:#718a79}.footer-wordmark{font-family:Manrope,Arial,sans-serif;font-weight:800;font-size:25vw;letter-spacing:-.07em;line-height:.87;text-align:center;margin:70px 0 40px;transform:translateX(-.03em);color:var(--lime)}.footer-bottom{display:flex;justify-content:space-between;padding:25px 0;border-top:1px solid #456351;font-size:10px;gap:25px;color:#c5d4c7}.categories{display:flex;flex-wrap:wrap;gap:10px;margin:35px 0 24px}.category{border:1px solid #a5b2a7;border-radius:0;padding:11px 16px;font-size:12px;min-height:44px}.category:hover{background:var(--sand)}.category[aria-pressed=true]{background:var(--ink);border-color:var(--ink);color:var(--paper)}.gallery-status{font-size:11px;letter-spacing:.06em;color:var(--muted);margin-bottom:22px;min-height:18px}#gallery-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px}#gallery-grid .tile{grid-column:span 2;aspect-ratio:1.35}#gallery-grid .tile.row-two{grid-column:span 3;aspect-ratio:1.75}#gallery-grid .tile.row-one{grid-column:span 6;aspect-ratio:2}.gallery-section{padding-top:75px}.arrival{display:grid;grid-template-columns:1fr 1fr;background:var(--sand);gap:65px}.arrival-image .tile{height:100%;min-height:620px}.arrival-copy{padding:65px 55px 65px 0}.arrival-copy h2{font-size:50px;margin-bottom:28px}address{font-style:normal}.arrival-rule{display:flex;align-items:center;gap:25px;border-block:1px solid #bdc6b8;padding:22px 0;margin:30px 0}.arrival-rule>span{font:800 74px/1 Manrope,sans-serif;letter-spacing:-.07em}.arrival-rule h3{font-family:Inter,sans-serif;font-size:14px;font-weight:500;letter-spacing:0;margin-bottom:8px}.arrival-rule p{font-size:13px;color:var(--muted)}.arrival-copy .small{margin-top:16px}.practical{display:grid;grid-template-columns:1fr 1fr;gap:80px}.practical h2{font-size:45px}.faq details{border-top:1px solid var(--line);padding:23px 0}.faq details:last-child{border-bottom:1px solid var(--line)}summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;gap:25px;font-weight:500;font-size:16px}summary::-webkit-details-marker{display:none}summary::after{content:'+';font-size:24px;line-height:1}details[open] summary::after{content:'−'}.faq p{font-size:14px;color:var(--muted);margin-top:22px;max-width:530px}.contact-section{display:grid;grid-template-columns:1fr 1.2fr;gap:100px}.contact-section h2{margin-bottom:35px}.contact-section>div>p:not(.eyebrow){max-width:415px}.contact-section .small{margin-top:25px}.contact-list>a,.contact-list>div{display:grid;grid-template-columns:1fr auto;gap:7px 25px;border-top:1px solid var(--line);padding:24px 0}.contact-list>a:hover strong{text-decoration:underline;text-underline-offset:5px}.contact-list span{grid-column:1;font-size:10px;letter-spacing:.12em;text-transform:uppercase}.contact-list strong{grid-column:1;font-family:Manrope,sans-serif;font-size:clamp(18px,2.2vw,32px);letter-spacing:-.04em;overflow-wrap:anywhere}.contact-list b{grid-column:2;grid-row:1/3;align-self:center;font-size:28px;font-weight:400}.contact-list address{grid-column:1/-1;font-size:17px;margin-top:8px}.contact-photo{position:relative;height:420px;isolation:isolate;margin-bottom:90px}.contact-photo>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}.contact-photo::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,24,18,.75),rgba(5,24,18,.15));z-index:-1}.contact-photo>div{padding:60px;color:var(--paper)}.contact-photo h2{margin-bottom:30px}.lightbox{position:fixed;inset:0;z-index:100;background:#071711f5;color:#fff;display:none;opacity:0;transition:opacity .25s}.lightbox.is-open{display:block}.lightbox.is-visible{opacity:1}.lb-stage{height:100%;padding:65px 85px 35px;display:grid;place-items:center}.lb-figure{margin:0;max-width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.lb-img{width:auto;max-width:100%;max-height:calc(100svh - 150px);object-fit:contain;min-height:0}.lb-caption{font-size:12px;padding-top:18px;text-align:center}.lb-close,.lb-prev,.lb-next{position:absolute;border:1px solid #80958a;width:48px;height:48px;display:grid;place-items:center;color:#fff;font-size:27px;line-height:1;background:#173e33}.lb-close{top:18px;right:22px}.lb-counter{position:absolute;top:32px;left:25px;font-size:12px}.lb-prev{left:20px;top:50%}.lb-next{right:20px;top:50%}.lb-prev:disabled,.lb-next:disabled{visibility:hidden}.lightbox button:hover{background:#35624e}html[lang=el] h1{font-size:clamp(52px,6.7vw,108px)}html[lang=el] .home-hero h1{font-size:clamp(62px,7.8vw,122px)}html[lang=el] .intro-bottom{flex-wrap:wrap;gap:25px}
@media(min-width:1700px){.home-hero{height:850px;max-height:calc(100svh - 106px)}}
@media(max-width:1100px){.wrap{width:calc(100% - 72px)}.header-inner{width:calc(100% - 60px)}#primary-nav{gap:24px}.intro{grid-template-columns:1fr 3fr;gap:30px}.intro-bottom{flex-wrap:wrap;gap:24px}.pool-copy{padding:35px 28px}.pool-visual{min-height:570px}.pool-copy h3{font-size:29px}.island{gap:50px}.arrival{gap:40px}.arrival-copy{padding:40px 30px 40px 0}.arrival-copy h2{font-size:40px}.arrival-image .tile{min-height:580px}.contact-section{gap:55px}.section-heading{gap:30px}.section-heading>p{max-width:290px}}
@media(max-width:900px){.section{padding-block:75px}.header-inner{height:88px}.brand{width:100px}.header-place{font-size:8px}.nav-toggle{display:flex;align-items:center;gap:15px;margin-left:auto;border:0;padding:12px 0;font-size:13px}.nav-toggle span{font-size:21px}#primary-nav{display:none;position:absolute;left:0;right:0;top:87px;margin:0;padding:30px 36px 45px;background:var(--paper);border-bottom:1px solid var(--line);flex-direction:column;align-items:stretch;gap:12px;max-height:calc(100svh - 88px);overflow:auto;font-size:22px}.site-header.is-open #primary-nav{display:flex}#primary-nav a:nth-child(4){margin:10px 0;width:fit-content;font-size:16px}.home-hero{min-height:560px;height:calc(90svh - 88px);max-height:760px}.home-hero h1{font-size:clamp(66px,9.6vw,105px)}.hero{height:470px}.home-hero .hero-copy{padding-bottom:45px}.hero-coordinate{right:18px}.hero-bottom{align-items:flex-start;gap:25px}.hero-bottom p{font-size:15px}.hero-bottom .button{padding:14px 20px;gap:25px}.welcome-strip{padding:20px 36px;flex-wrap:wrap}.welcome-strip span:nth-child(2){display:none}.intro{grid-template-columns:1fr}.intro>.eyebrow{margin-bottom:0}.intro-bottom{max-width:650px}.section-heading{display:block}.section-heading>p{max-width:550px;margin-top:25px}.stay-grid{column-gap:24px;row-gap:45px}.stay-title h3{font-size:23px}.amenities{display:block;margin-top:45px}.amenities ul{gap:15px 25px}.pool-story{grid-template-columns:1.65fr 1fr}.pool-visual{min-height:540px}.pool-overlay{left:36px;bottom:40px}.pool-overlay h2{font-size:70px}.pool-copy h3{font-size:27px}.pool-copy p{font-size:13px}.island{gap:35px}.island h2{font-size:42px}.invite{padding-block:55px}.invite .button{gap:25px}.footer-top{grid-template-columns:1fr 1fr;gap:35px}.footer-nav{grid-column:1/-1;display:flex;gap:15px;flex-wrap:wrap;align-items:center}.footer-nav .eyebrow{width:100%;margin-bottom:0}.footer-nav .language{margin:0}.footer-wordmark{margin-top:50px}.arrival{gap:30px}.arrival-image .tile{min-height:610px}.arrival-copy{padding:35px 25px 35px 0}.arrival-copy h2{font-size:34px}.practical{gap:40px}.practical h2{font-size:35px}.contact-section{gap:40px}.contact-section h2{font-size:46px}.contact-photo>div{padding:45px}.contact-photo{height:380px}.stays{scroll-margin-top:88px}html[lang=el] .home-hero h1{font-size:clamp(57px,8vw,90px)}}
@media(max-width:600px){.wrap{width:calc(100% - 40px)}.section{padding-block:58px}.header-inner{width:calc(100% - 40px);height:80px;gap:17px}.brand{width:91px}.header-place{padding-left:16px;letter-spacing:.12em}#primary-nav{top:79px;padding:22px 20px 35px;max-height:calc(100svh - 80px)}.home-hero{height:calc(100svh - 80px);min-height:550px;max-height:730px}.home-hero h1{font-size:clamp(56px,12.7vw,76px);line-height:1.02}.home-hero .hero-copy{padding-top:55px;padding-bottom:37px;justify-content:flex-end}.home-hero>img{object-position:58% center}.hero-shade{background:linear-gradient(0deg,rgba(5,24,18,.83),rgba(5,24,18,.13) 100%)}.hero .eyebrow{font-size:9px;letter-spacing:.12em;max-width:270px;margin-bottom:24px}.hero-bottom{flex-direction:column;margin-top:25px;gap:26px}.hero-bottom p{font-size:14px}.hero-bottom .button{font-size:12px;min-height:51px;padding:13px 18px;gap:45px}.hero-coordinate{top:20px;right:15px;font-size:8px}.hero{height:450px}.hero h1{font-size:clamp(46px,11.2vw,66px);line-height:1.05}.hero-copy{justify-content:flex-end;padding-bottom:35px}.welcome-strip{padding:20px;gap:12px;align-items:flex-start;font-size:8px;letter-spacing:.07em}.welcome-strip a{margin-left:auto}.eyebrow{font-size:9px;margin-bottom:21px}h2{font-size:39px;letter-spacing:-.05em}.intro{gap:25px}.intro-bottom{margin-top:25px;gap:21px}.intro-bottom p{font-size:14px;line-height:1.75}.text-link{font-size:12px}.section-heading{margin-bottom:30px}.section-heading h2{font-size:37px}.section-heading>p{font-size:13px;margin-top:23px}.stay-grid{grid-template-columns:1fr;gap:39px}.stay-photo img{aspect-ratio:1.3}.photo-link{width:42px;height:42px;right:13px;bottom:13px}.stay-title{margin-top:19px;gap:13px}.stay-title h3{font-size:24px}.stay-card>p{font-size:13px}.amenities{margin-top:39px;padding-top:26px}.amenities ul{display:grid;grid-template-columns:1fr 1fr;gap:15px 12px;font-size:11px}.amenities li::before{margin-right:7px}.pool-story{grid-template-columns:1fr}.pool-visual{min-height:475px}.pool-overlay{left:20px;bottom:35px}.pool-overlay h2{font-size:76px}.pool-copy{padding:35px 20px 42px;display:grid;grid-template-columns:1fr 45px;gap:20px}.tiny-mark{grid-row:1;grid-column:2;font-size:39px}.pool-copy h3{grid-column:1;grid-row:1;font-size:29px;margin:0;max-width:300px}.pool-copy p,.pool-copy .text-link{grid-column:1/-1;margin:0}.pool-copy .text-link{justify-self:start}.island{grid-template-columns:1fr;gap:34px}.island h2{font-size:43px}.island-copy p:not(.eyebrow){font-size:14px;margin-top:25px}.island-photo .tile{aspect-ratio:1.12}.photo-note{font-size:8px}.zoom{opacity:1;width:30px;height:30px;font-size:18px}.invite{display:block;padding-block:42px}.invite h2{font-size:36px}.invite .button{margin-top:27px;font-size:12px;min-height:52px}.footer{padding-top:43px}.footer-top{grid-template-columns:1fr;gap:32px}.footer .eyebrow{margin-bottom:13px}.footer p,.footer a{font-size:12px}.footer-nav{grid-column:1;gap:13px}.footer-nav .eyebrow{margin:0}.footer-nav a{margin:0}.footer-wordmark{margin:45px 0 25px}.footer-bottom{flex-direction:column;gap:9px;padding:20px 0;font-size:9px}.categories{gap:8px;margin-top:27px}.category{font-size:11px;padding:9px 12px}.gallery-status{font-size:10px}#gallery-grid{gap:12px;grid-template-columns:1fr}#gallery-grid .tile,#gallery-grid .tile.row-two,#gallery-grid .tile.row-one{grid-column:1;aspect-ratio:1.4}.arrival{grid-template-columns:1fr;gap:0}.arrival-image .tile{min-height:0;aspect-ratio:1.2}.arrival-copy{padding:30px 23px 35px}.arrival-copy h2{font-size:37px}.arrival-rule{margin:25px 0}.arrival-copy .button{font-size:12px;min-height:52px}.practical{grid-template-columns:1fr;gap:30px}.practical h2{font-size:37px}.faq summary{font-size:14px}.faq p{font-size:13px}.contact-section{grid-template-columns:1fr;gap:35px}.contact-section h2{font-size:45px;margin-bottom:25px}.contact-section>div>p:not(.eyebrow){font-size:14px}.contact-section .small{font-size:12px!important}.contact-list strong{font-size:24px}.contact-list>a,.contact-list>div{padding:20px 0}.contact-list address{font-size:15px}.contact-photo{height:365px;margin-bottom:50px}.contact-photo>div{padding:35px 23px}.contact-photo h2{font-size:44px}.contact-photo .button{font-size:12px}.lb-stage{padding:75px 12px 90px}.lb-img{max-height:calc(100svh - 200px)}.lb-prev,.lb-next{top:auto;bottom:22px}.lb-prev{left:calc(50% - 58px)}.lb-next{right:calc(50% - 58px)}.lb-close{right:16px;top:15px}.lb-caption{font-size:11px}.stays{scroll-margin-top:80px}html[lang=el] h1{font-size:clamp(44px,10.6vw,64px)}html[lang=el] .home-hero h1{font-size:clamp(40px,12vw,60px)}html[lang=el] .hero-bottom p{font-size:13px}html[lang=el] .invite h2{font-size:33px}}

.footer-nav .language{width:38px}
/* Cabana / second direction — editorial resort, interactive rooms. */
:root{--paper:#f5f5f1;--ink:#20211f;--muted:#62645e;--line:#d5d6cf;--sand:#e9eae3;--lime:#ff6841}
body{background:var(--paper)}h1,h2,h3{letter-spacing:-.065em}a:focus-visible,button:focus-visible,summary:focus-visible{outline-color:#eb4823}.site-header{position:absolute;top:24px;left:28px;right:28px;width:auto;border:0;background:transparent}.header-inner{height:88px;width:100%;background:#f5f5f1;border-radius:100px;padding:12px 32px;gap:22px}.brand{width:96px}.header-place{font-size:8px;line-height:1.7;border-color:#c8c9c1;padding-left:22px}#primary-nav{gap:30px;font-size:12px}#primary-nav a:nth-child(4){background:var(--ink);border-radius:30px;padding:14px 25px}.language{border:0;border-left:1px solid var(--line);width:35px}.site-header.is-stuck{position:fixed;top:12px;filter:drop-shadow(0 5px 15px #0000000d)}.site-header.is-stuck .header-inner{height:72px}.site-header.is-stuck .brand{width:76px}.button{border-radius:40px;min-height:52px;font-size:13px;background:var(--ink)}.button:hover{background:#41433c}.text-link{font-size:13px}.escape-hero{position:relative;height:100svh;min-height:780px;max-height:1100px;background:#1a403e;color:#fff;isolation:isolate;padding:145px 55px 30px}.escape-hero>img{position:absolute;inset:0;z-index:-3;width:100%;height:100%;object-fit:cover;object-position:center 46%}.escape-shade{position:absolute;inset:0;background:linear-gradient(180deg,#07151430,#07151408 35%,#0715149c);z-index:-2}.escape-top{display:flex;justify-content:space-between;font-size:9px;letter-spacing:.12em}.escape-title{position:absolute;left:50%;top:48%;transform:translate(-50%,-50%);width:90%;text-align:center}.escape-title .eyebrow{font-size:11px;letter-spacing:.2em;margin-bottom:22px}.escape-title h1{font-size:clamp(100px,14.6vw,225px);line-height:.79;letter-spacing:-.085em;color:#fff;font-weight:800;text-shadow:0 2px 30px #00151525}.escape-bottom{position:absolute;bottom:30px;left:55px;right:55px;display:grid;grid-template-columns:1fr 1fr 1fr;align-items:end}.escape-bottom p{font-size:13px;line-height:1.5;margin:0}.escape-bottom>span{font-size:9px;letter-spacing:.1em;text-align:right}.round-link{width:64px;height:64px;border:1px solid #ffffff80;border-radius:100%;display:grid;place-items:center;justify-self:center;font-size:30px;background:#ffffff12;backdrop-filter:blur(7px)}.round-link:hover{background:#fff;color:#222}.manifesto{padding:140px 6vw 100px;text-align:center}.manifesto>.eyebrow{margin-bottom:45px}.manifesto h2{font-size:clamp(43px,6.1vw,94px);line-height:1.25;letter-spacing:-.065em;font-weight:800}.inline-photo{display:inline-block;width:1.65em;height:.8em;border-radius:80px;overflow:hidden;vertical-align:baseline;transform:translateY(.08em);margin-left:.1em}.inline-photo img{width:100%;height:100%;object-fit:cover}.inline-photo.beach{width:1.15em}.manifesto-foot{border-top:1px solid var(--line);padding-top:35px;margin-top:65px;display:flex;justify-content:space-between;text-align:left;align-items:start;gap:45px}.manifesto-foot>span{font-size:9px;letter-spacing:.1em}.manifesto-foot>p{max-width:515px;font-size:14px;line-height:1.75}.room-editor{padding:85px 5vw 60px;background:#e9eae3;scroll-margin-top:100px}.editor-heading{display:grid;grid-template-columns:1fr 2fr 1fr;align-items:end;gap:35px;margin-bottom:45px}.editor-heading h2{font-size:clamp(46px,6.5vw,100px);line-height:.96}.editor-heading>.eyebrow{align-self:start;margin-top:12px}.editor-heading>p:last-child{font-size:13px;max-width:195px}.room-console{display:grid;grid-template-columns:1.2fr 1fr;gap:6vw;align-items:center}.room-views{min-width:0}.room-view{position:relative;aspect-ratio:1.12;border-radius:14px;overflow:hidden}.room-view .tile{height:100%;width:100%}.room-view .tile img{object-fit:cover}.room-image-label{position:absolute;top:20px;left:20px;border-radius:20px;background:#f5f5f1;padding:7px 12px;font-size:9px;letter-spacing:.08em;pointer-events:none}.room-option{border-top:1px solid #babdb2;padding:0}.room-option:last-child{border-bottom:1px solid #babdb2}.room-select{display:grid;grid-template-columns:25px 1fr 26px;gap:15px;align-items:baseline;text-align:left;width:100%;border:0;padding:26px 0;font-family:Manrope,Arial,sans-serif;font-size:clamp(20px,2.1vw,32px);letter-spacing:-.055em;line-height:1.12}.room-number{font:10px Inter,Arial,sans-serif;letter-spacing:0}.room-symbol{font:28px Inter,Arial,sans-serif;justify-self:end}.room-option.active .room-select{padding-bottom:18px}.room-detail{padding:0 40px 28px}.room-detail p{font-size:14px;max-width:340px;color:#53564e}.room-detail .text-link{font-size:12px;gap:35px}.comfort-strip{display:flex;justify-content:space-between;border-top:1px solid #bfc1b6;gap:30px;margin-top:45px;padding-top:25px;font-size:11px}.comfort-strip>span{font-size:9px;letter-spacing:.08em}.pool-journal{padding:115px 5vw 90px}.journal-title{display:grid;grid-template-columns:1fr 2fr 1fr;gap:30px;align-items:end;margin-bottom:65px}.journal-title>span{align-self:start;font-size:10px;margin-top:10px;text-transform:uppercase;letter-spacing:.1em}.journal-title h2{font-size:clamp(42px,6.5vw,100px);line-height:.96}.journal-title .text-link{justify-self:end}.journal-photos{display:grid;grid-template-columns:1.8fr 1fr .65fr;gap:28px;align-items:start}.journal-photos figure{margin:0}.journal-wide{padding-top:80px}.journal-wide .tile{aspect-ratio:1.23;border-radius:12px}.journal-tall .tile{aspect-ratio:.66;border-radius:12px}.journal-photos figcaption{font-size:8px;letter-spacing:.07em;margin-top:15px}.journal-note{padding:15px 0 0 10px}.sun-symbol{font-size:86px;line-height:1;color:#ed542d}.journal-note p{font-family:Manrope,sans-serif;font-size:clamp(23px,2.8vw,42px);line-height:1.08;margin:50px 0 30px;letter-spacing:-.05em}.journal-note>span:last-child{font-size:8px;letter-spacing:.08em}.island-ticket{margin:0 5vw 95px;border-block:1px solid #bfc2b7;padding:28px 0;display:grid;grid-template-columns:.65fr 2fr 1fr 70px;gap:35px;align-items:center}.ticket-number{font:800 110px/.9 Manrope,sans-serif;letter-spacing:-.09em}.island-ticket .eyebrow{font-size:9px;display:block;margin-bottom:12px}.island-ticket h2{font-size:clamp(25px,3.6vw,55px);line-height:1}.island-ticket p{font-size:12px;margin:0}.ticket-arrow{font-size:58px;text-align:right}.island-ticket:hover .ticket-arrow{transform:translate(4px,-4px)}.footer{padding:70px 5vw 0;background:#ff6841;color:#21211d;border-radius:25px 25px 0 0}.footer-invite .eyebrow{color:#21211d;font-size:10px;margin-bottom:25px}.footer-call{display:flex!important;justify-content:space-between;align-items:center!important;font:800 clamp(60px,10vw,150px)/.9 Manrope,Arial,sans-serif!important;letter-spacing:-.08em;width:100%!important;text-decoration:none!important}.footer-call>span{font-weight:400;font-size:1.3em;align-self:center}.footer-base{display:grid;grid-template-columns:1fr 1.4fr 1fr;align-items:center;gap:55px;padding:65px 0 40px;margin-top:50px;border-top:1px solid #21211d55}.footer .footer-logo{width:110px!important}.footer-base a{font-size:13px;line-height:1.7}.footer-nav{display:grid;grid-template-columns:1fr 1fr;gap:5px 20px}.footer-nav .language{border:0;padding:0;margin:0;display:block}.footer-bottom{border-top:1px solid #21211d55;color:#21211d;padding:22px 0;font-size:9px;width:100%;margin:0;display:flex;justify-content:space-between}.hero{height:610px;padding-top:115px;border-radius:0 0 22px 22px;background:#24403e}.hero-copy{justify-content:flex-end;padding-bottom:50px}.hero h1{font-size:clamp(60px,7vw,105px);max-width:1100px;text-transform:uppercase;line-height:.95}.hero .eyebrow{font-size:10px}.hero-bottom{margin-top:22px}.hero-bottom p{font-size:14px}.hero-coordinate{top:160px}.hero-shade{background:linear-gradient(0deg,#061b1ab8,#061b1a0a)}.intro{display:block;text-align:center;max-width:960px;padding-block:85px}.intro-bottom{display:block;margin:28px auto 0;max-width:600px}.intro-bottom p{max-width:none}.arrival{border-radius:18px;overflow:hidden;background:var(--sand)}.arrival-rule{border-color:#b8bcb0}.invite{padding-block:45px}.invite h2{font-size:38px}.invite .eyebrow{margin-bottom:12px}.gallery-section{display:grid;grid-template-columns:220px 1fr;column-gap:45px;align-items:start;padding-top:65px}.gallery-section .section-heading{grid-column:1/-1;margin-bottom:45px}.gallery-section .categories{grid-column:1;grid-row:2/4;display:flex;flex-direction:column;position:sticky;top:115px;margin:0;gap:0;align-items:stretch}.category{text-align:left;border:0;border-bottom:1px solid #d2d5c8;padding:16px 12px;font-size:12px;background:transparent}.category[aria-pressed=true]{border-radius:8px;background:var(--ink)}.gallery-status{grid-column:2;margin:0 0 18px}#gallery-grid{grid-column:2;gap:10px}#gallery-grid .tile{border-radius:8px}.contact-section{margin-top:60px;margin-bottom:60px;padding:55px;border-radius:18px;background:#e9eae3;grid-template-columns:1fr 1.3fr;gap:50px}.contact-section h2{font-size:55px}.contact-photo{border-radius:18px;overflow:hidden}.contact-photo::after{background:linear-gradient(90deg,#091b17c4,#091b1730)}html[lang=el] .escape-title h1{font-size:clamp(85px,12vw,185px)}html[lang=el] .hero h1{font-size:clamp(55px,6vw,90px)}html[lang=el] .editor-heading h2,html[lang=el] .journal-title h2{font-size:clamp(45px,5vw,80px)}html[lang=el] .manifesto h2{font-size:clamp(40px,5.1vw,78px)}
@media(max-width:1000px){.editor-heading,.journal-title{grid-template-columns:1fr 2fr}.editor-heading>p:last-child{display:none}.journal-title .text-link{grid-column:2;justify-self:start}.room-console{gap:35px}.room-select{font-size:24px}.room-detail{padding-left:0}.room-view{aspect-ratio:.84}.journal-photos{grid-template-columns:1.5fr 1fr}.journal-note{display:flex;grid-column:1/-1;align-items:center;gap:35px;padding:0}.journal-note p{margin:0;font-size:30px}.journal-note p br{display:none}.journal-note>span:last-child{margin-left:auto}.sun-symbol{font-size:60px}.island-ticket{gap:20px;grid-template-columns:100px 1fr 1fr 40px}.ticket-number{font-size:85px}.ticket-arrow{font-size:42px}.gallery-section{grid-template-columns:175px 1fr;gap:25px}#gallery-grid .tile{grid-column:span 3}.gallery-section .categories{font-size:11px}.footer-base{gap:25px}}
@media(max-width:900px){.site-header{top:15px;left:15px;right:15px}.site-header.is-stuck{top:10px}.header-inner{height:78px;padding:12px 24px}.brand{width:84px}.header-place{font-size:7px}.nav-toggle{padding:10px}#primary-nav{top:88px;left:0;right:0;border-radius:22px;padding:25px;background:#f5f5f1;max-height:calc(100svh - 120px)}#primary-nav a:nth-child(4){border-radius:40px}.site-header.is-stuck #primary-nav{top:82px}.escape-hero{min-height:750px;padding:125px 30px 25px}.escape-bottom{left:30px;right:30px}.escape-title h1{font-size:17vw}.escape-top{font-size:8px}.manifesto{padding:85px 5vw 65px}.manifesto-foot{margin-top:40px}.room-editor{padding-top:60px}.pool-journal{padding-top:75px}.footer-call{font-size:11vw!important}.contact-section{padding:35px;gap:30px}.contact-section h2{font-size:44px}.hero{height:540px;padding-top:100px}}
@media(max-width:600px){.header-inner{height:68px;padding:10px 19px;gap:15px}.brand{width:74px}.header-place{font-size:6px;padding-left:15px}.site-header.is-stuck .header-inner{height:62px}.site-header.is-stuck .brand{width:66px}.nav-toggle{font-size:11px;gap:10px;padding:9px 0}.nav-toggle span{font-size:18px}#primary-nav{top:78px}.site-header.is-stuck #primary-nav{top:72px}.escape-hero{height:100svh;min-height:650px;max-height:900px;padding:105px 20px 25px}.escape-top{font-size:7px;gap:20px}.escape-top>span:first-child{max-width:80px}.escape-title{top:49%;width:96%}.escape-title .eyebrow{font-size:8px;letter-spacing:.12em;margin-bottom:22px}.escape-title h1{font-size:20vw;line-height:.85;letter-spacing:-.085em}.escape-bottom{left:20px;right:20px;bottom:25px;grid-template-columns:1fr 55px;gap:20px}.escape-bottom>span{display:none}.escape-bottom p{font-size:11px}.round-link{width:50px;height:50px;font-size:24px}.escape-hero>img{object-position:48% center}.manifesto{padding:65px 20px 50px}.manifesto>.eyebrow{font-size:8px;max-width:220px;margin:0 auto 25px}.manifesto h2{font-size:9vw;line-height:1.45}.inline-photo{width:1.3em;height:.9em;margin-left:0}.inline-photo.beach{width:1em}.manifesto-foot{display:block;margin-top:30px;padding-top:22px}.manifesto-foot>span{font-size:8px}.manifesto-foot>p{font-size:13px;margin-top:20px}.room-editor{padding:50px 20px 35px;scroll-margin-top:90px}.editor-heading{display:block;margin-bottom:28px}.editor-heading>.eyebrow{margin-bottom:25px}.editor-heading h2{font-size:16vw;line-height:.95}.room-console{display:flex;flex-direction:column;gap:22px;align-items:stretch}.room-views{width:100%}.room-view{aspect-ratio:1.22;border-radius:10px}.room-image-label{top:12px;left:12px;font-size:8px}.room-select{font-size:23px;gap:10px;grid-template-columns:20px 1fr 20px;padding:21px 0}.room-symbol{font-size:24px}.room-detail{padding:0 30px 24px}.room-detail p{font-size:12px}.comfort-strip{display:block;margin-top:30px;padding-top:20px}.comfort-strip>span{font-size:8px}.comfort-strip>p{font-size:10px;line-height:1.8;margin-top:12px}.pool-journal{padding:55px 20px 40px}.journal-title{display:block;margin-bottom:30px}.journal-title>span{font-size:8px;display:block;margin-bottom:25px}.journal-title h2{font-size:15vw;line-height:.96}.journal-title .text-link{margin-top:22px;font-size:11px}.journal-photos{gap:13px;grid-template-columns:1.25fr 1fr}.journal-wide{padding-top:38px}.journal-wide .tile{aspect-ratio:.82;border-radius:8px}.journal-tall .tile{aspect-ratio:.64;border-radius:8px}.journal-photos figcaption{font-size:7px;line-height:1.5;margin-top:10px}.journal-note{margin-top:18px;gap:20px}.journal-note p{font-size:26px;line-height:1.1}.journal-note p br{display:block}.journal-note>span:last-child{font-size:7px;max-width:65px}.sun-symbol{font-size:50px}.island-ticket{margin:0 20px 50px;padding:22px 0;grid-template-columns:65px 1fr 30px;gap:15px}.ticket-number{font-size:70px;grid-row:1/3}.island-ticket>div{grid-column:2}.island-ticket .eyebrow{font-size:7px;margin-bottom:8px}.island-ticket h2{font-size:23px;line-height:1.05}.island-ticket p{grid-column:2;font-size:10px}.ticket-arrow{grid-column:3;grid-row:1/3;font-size:35px}.footer{padding:45px 20px 0;border-radius:18px 18px 0 0}.footer-invite .eyebrow{font-size:8px}.footer-call{font-size:14vw!important;line-height:.96!important;gap:12px}.footer-call>span{font-size:.85em}.footer-base{grid-template-columns:85px 1fr;gap:30px 25px;padding:30px 0;margin-top:35px}.footer .footer-logo{width:85px!important}.footer-base a{font-size:11px}.footer-nav{grid-column:1/-1;display:flex;gap:17px;flex-wrap:wrap}.footer-nav .language{width:auto}.footer-bottom{font-size:8px;display:flex;flex-direction:column;gap:7px;padding:18px 0}.hero{height:500px;padding-top:95px;border-radius:0 0 16px 16px}.hero h1{font-size:12vw;line-height:.98}.hero-copy{padding-bottom:35px}.hero .eyebrow{font-size:8px;max-width:280px}.hero-coordinate{top:118px;font-size:7px}.hero-bottom p{font-size:12px}.intro{padding-block:50px}.intro h2{font-size:35px}.intro-bottom p{font-size:13px}.arrival{border-radius:12px}.arrival-copy{padding:26px 23px}.gallery-section{display:block;padding-top:40px}.gallery-section .section-heading{margin-bottom:25px}.gallery-section .section-heading h2{font-size:35px}.gallery-section .categories{position:static;display:flex;flex-direction:row;flex-wrap:wrap;gap:7px;margin-bottom:20px}.category{font-size:10px;border:1px solid #d2d5c8;border-radius:20px;padding:8px 12px;min-height:38px}.category[aria-pressed=true]{border-radius:20px}#gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}#gallery-grid .tile,#gallery-grid .tile.row-two{grid-column:span 1;aspect-ratio:.85}#gallery-grid .tile:last-child:nth-child(odd){grid-column:span 2;aspect-ratio:1.45}.gallery-status{font-size:9px}.invite{display:flex;flex-direction:column;align-items:start;gap:20px;padding-block:35px}.invite .button{margin:0}.invite h2{font-size:31px}.contact-section{display:block;padding:28px 23px;margin-top:35px;margin-bottom:35px}.contact-section h2{font-size:40px}.contact-list{margin-top:32px}.contact-list strong{font-size:22px}.contact-photo{height:335px;border-radius:12px}.contact-photo>div{padding:32px 23px}.contact-photo h2{font-size:38px}html[lang=el] .escape-title h1{font-size:16.5vw}html[lang=el] .manifesto h2{font-size:8vw}html[lang=el] .editor-heading h2,html[lang=el] .journal-title h2{font-size:13vw}html[lang=el] .hero h1{font-size:11vw}html[lang=el] .footer-call{font-size:10.5vw!important}}
.escape-title .eyebrow{max-width:none}.lightbox{background:#10110ff5}.lb-close,.lb-prev,.lb-next{background:#242620}.lightbox button:hover{background:#484b41}
@media(max-width:1000px) and (min-width:601px){#gallery-grid .tile.row-one{grid-column:span 6;aspect-ratio:1.6}}
@media(max-width:600px){#gallery-grid .tile.row-one{grid-column:span 2;aspect-ratio:1.45}}
@media(max-width:600px){.room-option .room-views{margin:0 0 20px}.room-option .room-detail{padding-left:0}.room-console>.room-options{width:100%}}
