:root {
      --bg:#f6f2eb;
      --ink:#1e1d1a;
      --muted:#6f6a62;
      --dark:#181715;
      --card:#ffffff;
      --line:rgba(0,0,0,.08);
      --accent:#bfa68b;
    }
    * { box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      color:var(--ink);
      background:var(--bg);
      line-height:1.6;
    }
    h1,h2,h3,h4 {
      font-family:Georgia, "Times New Roman", serif;
      font-weight:400;
      letter-spacing:.02em;
      margin:0;
    }
    a { color:inherit; text-decoration:none; }
    img { max-width:100%; display:block; }
    .wrap { width:min(1240px, 92vw); margin:0 auto; }
    .eyebrow {
      text-transform:uppercase;
      letter-spacing:.18em;
      font-size:12px;
      color:var(--muted);
      margin-bottom:14px;
    }
    .btn {
      display:inline-block;
      padding:14px 22px;
      border:1px solid currentColor;
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.14em;
    }
    .btn.dark { background:var(--dark); color:#fff; border-color:var(--dark); }
    .btn.light { color:#fff; border-color:#fff; }
    nav {
      position:fixed;
      top:0; left:0; right:0;
      z-index:100;
      background:rgba(246,242,235,.92);
      backdrop-filter: blur(10px);
      border-bottom:1px solid var(--line);
    }
    .nav-inner {
      width:min(1240px, 92vw);
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:18px 0;
      gap:18px;
      flex-wrap:wrap;
    }
    .brand {
      font-family:Georgia, "Times New Roman", serif;
      font-size:24px;
      letter-spacing:.08em;
    }
    .lang-switch{
      display:flex;
      align-items:center;
      gap:6px;
      margin-left:auto;
    }
    .lang-btn{
      border:1px solid var(--line);
      background:transparent;
      padding:10px 14px;
      min-width:46px;
      min-height:42px;
      font-size:12px;
      letter-spacing:.12em;
      cursor:pointer;
      color:var(--ink);
      touch-action:manipulation;
      -webkit-tap-highlight-color:transparent;
    }
    .lang-btn.active{
      background:var(--dark);
      color:#fff;
      border-color:var(--dark);
    }
    .nav-links {
      display:flex;
      gap:26px;
      font-size:14px;
      align-items:center;
    }
    .hero {
      min-height:100vh;
      background:
        linear-gradient(90deg, rgba(0,0,0,.50), rgba(0,0,0,.10)),
        url("../images/hero-background-20a287752a.webp") center/cover no-repeat;
      color:#fff;
      display:flex;
      align-items:flex-end;
      padding:150px 0 80px;
    }
    .hero-copy {
      width:min(760px, 92vw);
      margin:0 auto;
    }
    .hero h1 {
      font-size:clamp(54px, 10vw, 110px);
      line-height:.94;
      margin:10px 0 18px;
    }
    .hero p {
      font-size:clamp(18px, 2.3vw, 22px);
      max-width:620px;
      margin:0 0 28px;
    }
    section { padding:92px 0; }
    .intro {
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:52px;
      align-items:center;
    }
    .intro h2, .section-title {
      font-size:clamp(38px, 5vw, 68px);
      margin-bottom:18px;
    }
    .intro p { color:#3f3b36; font-size:18px; }
    .intro img {
      width:100%;
      height:600px;
      object-fit:cover;
      border-radius:4px;
    }
    .split {
      display:grid;
      grid-template-columns:1.1fr .9fr;
      background:var(--card);
      border:1px solid var(--line);
      overflow:hidden;
    }
    .split.alt {
      grid-template-columns:.92fr 1.08fr;
    }
    .split-media img {
      width:100%;
      height:680px;
      object-fit:cover;
    }
    .split-copy {
      padding:52px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .meta {
      text-transform:uppercase;
      letter-spacing:.16em;
      font-size:12px;
      color:var(--muted);
      margin-bottom:14px;
    }
    .split-copy h3 {
      font-size:52px;
      line-height:1.02;
      margin-bottom:18px;
    }
    .split-copy p { font-size:18px; margin:0 0 18px; }
    .features {
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:12px 26px;
      margin:20px 0 28px;
      color:#3f3b36;
    }
    .features div {
      border-top:1px solid var(--line);
      padding-top:10px;
      font-size:15px;
    }
    .gallery {
      margin-top:34px;
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:14px;
    }
    .gallery img {
      width:100%;
      height:300px;
      object-fit:cover;
      border-radius:2px;
    }
    .band {
      background:#201d1a;
      color:#fff;
    }
    .band .section-title, .band .eyebrow { color:#fff; }
    .highlight {
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:16px;
      margin-top:24px;
    }
    .highlight .tile {
      background:#fff;
      color:var(--ink);
      border-radius:2px;
      overflow:hidden;
    }
    .highlight .tile img {
      width:100%;
      height:250px;
      object-fit:cover;
    }
    .highlight .tile .cap {
      padding:16px;
      font-size:14px;
      color:#4c4741;
    }
    .cta {
      background:#ddd3c7;
    }
    .cta-grid {
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .footer {
      background:#151412;
      color:#fff;
      padding:44px 0;
    }
    .footer-grid {
      display:flex;
      justify-content:space-between;
      gap:24px;
      align-items:flex-start;
      flex-wrap:wrap;
    }
    .small { font-size:13px; color:#d0cbc4; }
    .whatsapp-float {
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:120;
      background:#1f1f1d;
      color:#fff;
      padding:13px 16px;
      border-radius:999px;
      font-size:12px;
      letter-spacing:.06em;
      box-shadow:0 8px 24px rgba(0,0,0,.22);
    }
    .whatsapp-float:hover { transform:translateY(-1px); }
    
    .mobile-actions{
      display:none;
    }

    @media (max-width: 980px) {
      nav{
        position:sticky;
        top:0;
      }
      .nav-links { display:none; }
      .nav-inner{
        padding:14px 0;
      }
      .brand{
        font-size:20px;
      }
      .lang-switch{
        order:3;
        width:100%;
        justify-content:flex-start;
      }
      .hero{
        min-height:78vh;
        padding:120px 0 42px;
        background-position:center center;
      }
      .hero-copy{
        width:min(92vw, 700px);
      }
      .hero h1{
        font-size:clamp(40px, 12vw, 72px);
      }
      .hero p{
        font-size:17px;
      }
      section{
        padding:64px 0;
      }
      .intro, .split, .split.alt, .cta-grid {
        grid-template-columns:1fr;
      }
      .intro p, .split-copy p{
        font-size:16px;
      }
      .split-media img { height:420px; }
      .gallery { grid-template-columns:repeat(2, 1fr); }
      .highlight { grid-template-columns:1fr; }
      .intro img { height:360px; }
      .split-copy { padding:28px; }
      .split-copy h3 { font-size:36px; }
      .features{
        grid-template-columns:1fr;
      }
      .mobile-actions{
        display:flex;
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:130;
        background:#151412;
        padding:10px 12px;
        gap:10px;
        box-shadow:0 -8px 20px rgba(0,0,0,.18);
      }
      .mobile-actions a{
        flex:1;
        text-align:center;
        padding:12px 10px;
        border:1px solid rgba(255,255,255,.18);
        color:#fff;
        font-size:12px;
        letter-spacing:.08em;
        text-transform:uppercase;
      }
      .footer{
        padding-bottom:88px;
      }
      .whatsapp-float{
        bottom:78px;
      }
    }
    @media (max-width: 640px) {
      .gallery{
        grid-template-columns:1fr;
      }
      .gallery img { height:240px; }
      .highlight .tile img{
        height:220px;
      }
      .hero { padding-bottom:42px; }
      .btn{
        width:100%;
        text-align:center;
      }
      .whatsapp-float{
        right:14px;
      }
    }
  
/* CSS-only bilingual switch: works even when local mobile viewers block JavaScript */
.lang-radio{
  position:fixed;
  opacity:0;
  pointer-events:none;
  width:1px;
  height:1px;
}
.en-text{display:inline;}
.el-text{display:none;}

#lang-el:checked ~ .site .en-text{display:none !important;}
#lang-el:checked ~ .site .el-text{display:inline !important;}
#lang-en:checked ~ .site .en-text{display:inline !important;}
#lang-en:checked ~ .site .el-text{display:none !important;}

.lang-switch{
  position:relative;
  z-index:1005;
  pointer-events:auto !important;
}
.lang-switch .lang-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:1006;
  cursor:pointer;
  user-select:none;
  -webkit-user-select:none;
  pointer-events:auto !important;
  min-width:50px;
  min-height:44px;
}
#lang-en:checked ~ .site label[for="lang-en"],
#lang-el:checked ~ .site label[for="lang-el"]{
  background:var(--dark);
  color:#fff;
  border-color:var(--dark);
}
#lang-en:checked ~ .site label[for="lang-el"],
#lang-el:checked ~ .site label[for="lang-en"]{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
@media (max-width:980px){
  .lang-switch{
    order:3;
    width:100%;
    justify-content:center !important;
    margin-left:0 !important;
    padding-top:2px;
  }
  .lang-switch .lang-btn{
    min-width:74px;
    min-height:48px;
    font-size:13px;
  }
}

/* Mobile hamburger menu */
.mobile-menu-toggle{
  position:fixed;
  opacity:0;
  pointer-events:none;
  width:1px;
  height:1px;
}
.hamburger{
  display:none;
  width:46px;
  height:44px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:1202;
  -webkit-tap-highlight-color:transparent;
}
.hamburger span{
  display:block;
  width:24px;
  height:2px;
  background:var(--ink);
}
.mobile-drawer,
.drawer-overlay,
.mobile-bottom-booking{
  display:none;
}

@media (max-width:980px){
  nav{
    position:sticky;
    top:0;
  }
  .nav-inner{
    display:grid !important;
    grid-template-columns:46px 1fr 46px;
    align-items:center;
    gap:8px;
    padding:10px 0 !important;
  }
  .hamburger{
    display:flex;
    grid-column:1;
    grid-row:1;
  }
  .nav-inner > .brand{
    grid-column:2;
    grid-row:1;
    justify-self:center;
    font-size:19px !important;
    white-space:nowrap;
  }

  /* Everything requested is moved into the hamburger menu on mobile */
  .nav-inner > .nav-links,
  .nav-inner > .lang-switch,
  .nav-inner > a.btn.dark{
    display:none !important;
  }

  .mobile-drawer{
    display:block;
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    width:min(86vw, 360px);
    background:#f6f2eb;
    z-index:1400;
    transform:translateX(-105%);
    transition:transform .25s ease;
    box-shadow:14px 0 34px rgba(0,0,0,.16);
    overflow-y:auto;
  }
  #mobile-menu-toggle:checked ~ .site .mobile-drawer{
    transform:translateX(0);
  }

  .drawer-overlay{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.38);
    z-index:1390;
    opacity:0;
    visibility:hidden;
    transition:opacity .2s ease;
  }
  #mobile-menu-toggle:checked ~ .site .drawer-overlay{
    opacity:1;
    visibility:visible;
  }

  .drawer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 22px 16px;
    border-bottom:1px solid var(--line);
  }
  .drawer-title{
    font-family:Georgia,"Times New Roman",serif;
    font-size:20px;
    letter-spacing:.08em;
  }
  .drawer-close{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
  }
  .drawer-body{
    padding:22px;
  }
  .drawer-label{
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:11px;
    color:var(--muted);
    margin-bottom:10px;
  }
  .drawer-lang-switch{
    display:flex;
    gap:8px;
    margin-bottom:30px;
  }
  .drawer-lang-switch .lang-btn{
    min-width:66px;
    min-height:46px;
  }
  .drawer-link{
    display:block;
    padding:18px 0;
    border-top:1px solid var(--line);
  }
  .drawer-link strong{
    display:block;
    font-family:Georgia,"Times New Roman",serif;
    font-size:24px;
    font-weight:400;
    margin-bottom:3px;
  }
  .drawer-link > span{
    display:block;
    font-size:13px;
    color:var(--muted);
  }
  .drawer-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:52px;
    margin-top:26px;
    background:#1d1d1b;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:12px;
  }

  /* WhatsApp is now inside the menu on mobile */
  .whatsapp-float{
    display:none !important;
  }

  /* Remove the old in-section generic booking button on mobile */
  #contact .cta-grid > div:last-child{
    display:none !important;
  }

  /* Put "Book your stay / Κάντε κράτηση" at the very end of the mobile page */
  .mobile-bottom-booking{
    display:block;
    background:#151412;
    padding:24px 5vw 34px;
  }
  .mobile-bottom-booking .btn{
    display:block;
    width:100%;
    text-align:center;
    background:#fff;
    color:#151412;
    border-color:#fff;
    padding:16px 20px;
  }

  .footer{
    padding-bottom:44px !important;
  }
}

.friends-highlight{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:0;
  margin:28px 0 34px;
  background:#fff;
  border:1px solid var(--line);
  overflow:hidden;
}
.friends-photo img{
  width:100%;
  height:520px;
  object-fit:cover;
}
.friends-copy{
  padding:44px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.friends-copy h3{
  font-size:44px;
  line-height:1.04;
  margin:0 0 18px;
}
.friends-copy p{
  font-size:17px;
  color:#3f3b36;
  margin:0;
}
@media (max-width:980px){
  .friends-highlight{
    grid-template-columns:1fr;
  }
  .friends-photo img{
    height:320px;
  }
  .friends-copy{
    padding:28px;
  }
  .friends-copy h3{
    font-size:34px;
  }
}
