﻿
:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:92px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #arama-niyeti.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Palmiye Google Map Embed */
.map-embed-block{
  margin-top:28px;
}

.map-embed-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(16,74,53,.16);
  background:linear-gradient(145deg,#fffaf1,#f2eadc);
  box-shadow:0 22px 80px rgba(7,23,20,.12);
}

.map-embed-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  padding:24px 26px 20px;
}

.map-embed-top span{
  display:inline-flex;
  margin-bottom:8px;
  color:#b47a2f;
  font-size:12px;
  line-height:1;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.map-embed-top h3{
  margin:0;
  font-size:clamp(28px,3.8vw,48px);
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--ink);
}

.map-embed-top p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.map-embed-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.map-iframe-wrap{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  margin:0 14px 14px;
  min-height:420px;
  background:#d9d0c0;
  border:1px solid rgba(16,74,53,.12);
}

.map-iframe-wrap iframe{
  width:100%;
  height:460px;
  display:block;
  border:0;
  filter:saturate(.92) contrast(.98);
}

@media (max-width:760px){
  .map-embed-block{
    margin-top:20px;
  }

  .map-embed-card{
    border-radius:26px;
  }

  .map-embed-top{
    grid-template-columns:1fr;
    align-items:start;
    padding:22px 18px 16px;
  }

  .map-embed-actions{
    justify-content:flex-start;
  }

  .map-iframe-wrap{
    min-height:330px;
    margin:0 10px 10px;
    border-radius:20px;
  }

  .map-iframe-wrap iframe{
    height:350px;
  }
}


.location-layout .map-embed-block,
.location-layout-new .map-embed-block{
  grid-column:1 / -1;
}

/* Final mobile horizontal overflow guard */
@media (max-width:760px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  body,
  .site,
  .page,
  main,
  #main,
  .site-main{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .site-header,
  .header-shell,
  .hero,
  .hero-inner,
  .hero-content,
  .hero-copy,
  .hero-grid,
  .hero-bottom,
  .hero-mini,
  .container,
  .section,
  .rooms,
  .rooms-grid,
  .room-grid,
  .room-card,
  .hero-actions,
  .hero-cta,
  .mobile-menu-panel,
  .mobile-panel,
  .palmiye-mobile-menu,
  .map-embed-card,
  .map-iframe-wrap{
    max-width:100%;
    box-sizing:border-box;
  }

  .container{
    width:calc(100% - 28px);
  }

  .header-shell{
    width:calc(100% - 22px);
  }

  .hero-actions,
  .hero-cta{
    width:100%;
    min-width:0;
  }

  .hero-actions a,
  .hero-actions .btn,
  .hero-cta a,
  .hero-cta .btn,
  .hero-cta .quick-link{
    min-width:0;
    max-width:100%;
    white-space:normal;
  }

  .palmiye-mobile-toggle{
    right:14px;
    max-width:46px;
  }

  .palmiye-mobile-menu{
    width:auto;
    max-width:calc(100% - 28px);
  }

  .floating-note{
    right:0;
    max-width:calc(100% - 28px);
  }

  .visual-stack,
  .visual-card,
  .location-visual,
  .location-visual-card,
  .cta-box,
  .popular-searches-box,
  .footer-grid{
    max-width:100%;
    box-sizing:border-box;
  }

  img,
  video,
  iframe{
    max-width:100%;
  }
}

/* Room gallery mobile overflow fix - final override */
.room-gallery-section,
.room-gallery-shell,
.room-gallery-grid,
.gallery-stage,
.gallery-main,
.gallery-thumbs{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

.room-gallery-section,
.room-gallery-shell,
.room-gallery-grid,
.gallery-stage{
  overflow-x:clip;
}

.gallery-main picture,
.gallery-main img{
  display:block;
  max-width:100%;
  min-width:0;
}

.gallery-thumbs{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  overscroll-behavior-x:contain;
  -webkit-overflow-scrolling:touch;
}

@media (max-width:760px){
  .room-gallery-section,
  .room-gallery-shell,
  .room-gallery-grid,
  .gallery-stage,
  .gallery-main,
  .gallery-thumbs{
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .room-gallery-shell{
    overflow:hidden;
  }

  .room-gallery-grid{
    overflow:clip;
  }

  .gallery-stage{
    overflow:hidden;
    contain:layout paint;
  }

  .gallery-main{
    overflow:hidden;
    touch-action:manipulation;
  }

  .gallery-main picture{
    width:100%;
    height:100%;
  }

  .gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .gallery-arrow{
    max-width:44px;
    max-height:44px;
  }

  .gallery-prev{
    left:max(8px, env(safe-area-inset-left));
  }

  .gallery-next{
    right:max(8px, env(safe-area-inset-right));
  }

  .gallery-expand{
    max-width:calc(100% - 108px);
    white-space:normal;
  }

  .gallery-thumbs{
    overflow-x:auto;
    overflow-y:hidden;
    padding-inline:2px;
    scroll-padding-inline:2px;
  }

  .gallery-thumb{
    flex-shrink:0;
    max-width:34vw;
  }

  .gallery-lightbox{
    overflow:hidden;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
  }
}

/* Landing page desktop hero header offset fix */
@media (min-width:769px){
  body.palmiye-bakirkoy-jakuzili-otel #main > .hero .hero-grid,
  body.palmiye-bakirkoy-suit-otel #main > .hero .hero-grid,
  body.palmiye-king-suite #main > .hero .hero-grid,
  body.palmiye-deluxe-suite #main > .hero .hero-grid,
  body.palmiye-design-suite #main > .hero .hero-grid,
  body.palmiye-standart-suite #main > .hero .hero-grid,
  body.palmiye-double-suite #main > .hero .hero-grid,
  body.palmiye-jakuzili-oda #main > .hero .hero-grid,
  body.palmiye-palm-suite #main > .hero .hero-grid,
  body.palmiye-comfort-suite #main > .hero .hero-grid,
  body.palmiye-signature-suite #main > .hero .hero-grid,
  body.palmiye-classic-suite #main > .hero .hero-grid,
  body.palmiye-twin-suite #main > .hero .hero-grid{
    padding-top:clamp(168px, 17vh, 224px);
    padding-bottom:clamp(56px, 8vh, 96px);
    transform:none;
  }

  body.palmiye-bakirkoy-jakuzili-otel #main > .hero .hero-copy,
  body.palmiye-bakirkoy-suit-otel #main > .hero .hero-copy,
  body.palmiye-king-suite #main > .hero .hero-copy,
  body.palmiye-deluxe-suite #main > .hero .hero-copy,
  body.palmiye-design-suite #main > .hero .hero-copy,
  body.palmiye-standart-suite #main > .hero .hero-copy,
  body.palmiye-double-suite #main > .hero .hero-copy,
  body.palmiye-jakuzili-oda #main > .hero .hero-copy,
  body.palmiye-palm-suite #main > .hero .hero-copy,
  body.palmiye-comfort-suite #main > .hero .hero-copy,
  body.palmiye-signature-suite #main > .hero .hero-copy,
  body.palmiye-classic-suite #main > .hero .hero-copy,
  body.palmiye-twin-suite #main > .hero .hero-copy{
    transform:none;
  }

  body.palmiye-bakirkoy-jakuzili-otel #main > .hero .eyebrow,
  body.palmiye-bakirkoy-suit-otel #main > .hero .eyebrow,
  body.palmiye-king-suite #main > .hero .eyebrow,
  body.palmiye-deluxe-suite #main > .hero .eyebrow,
  body.palmiye-design-suite #main > .hero .eyebrow,
  body.palmiye-standart-suite #main > .hero .eyebrow,
  body.palmiye-double-suite #main > .hero .eyebrow,
  body.palmiye-jakuzili-oda #main > .hero .eyebrow,
  body.palmiye-palm-suite #main > .hero .eyebrow,
  body.palmiye-comfort-suite #main > .hero .eyebrow,
  body.palmiye-signature-suite #main > .hero .eyebrow,
  body.palmiye-classic-suite #main > .hero .eyebrow,
  body.palmiye-twin-suite #main > .hero .eyebrow{
    margin-top:0;
  }
}

/* Room gallery mobile overflow guard */
.room-gallery-section,
.room-gallery-shell,
.room-gallery-grid,
.gallery-stage,
.gallery-main{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

.room-gallery-section,
.room-gallery-shell,
.room-gallery-grid,
.gallery-stage{
  overflow-x:clip;
}

.gallery-main picture,
.gallery-main img{
  display:block;
  max-width:100%;
  min-width:0;
}

.gallery-thumbs{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  overscroll-behavior-x:contain;
  -webkit-overflow-scrolling:touch;
}

@media (max-width:760px){
  .room-gallery-section,
  .room-gallery-shell,
  .room-gallery-grid,
  .gallery-stage,
  .gallery-main,
  .gallery-thumbs{
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .room-gallery-shell{
    overflow:hidden;
  }

  .room-gallery-grid{
    overflow:clip;
  }

  .gallery-stage{
    overflow:hidden;
    contain:layout paint;
  }

  .gallery-main{
    overflow:hidden;
    touch-action:manipulation;
  }

  .gallery-main picture{
    width:100%;
    height:100%;
  }

  .gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .gallery-arrow{
    max-width:44px;
    max-height:44px;
  }

  .gallery-prev{
    left:max(8px, env(safe-area-inset-left));
  }

  .gallery-next{
    right:max(8px, env(safe-area-inset-right));
  }

  .gallery-expand{
    max-width:calc(100% - 108px);
    white-space:normal;
  }

  .gallery-thumbs{
    overflow-x:auto;
    overflow-y:hidden;
    padding-inline:2px;
    scroll-padding-inline:2px;
  }

  .gallery-thumb{
    flex-shrink:0;
    max-width:34vw;
  }

  .gallery-lightbox{
    overflow:hidden;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
  }
}

/* Mobile horizontal overflow guard */
@media (max-width:760px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  body,
  .site,
  .page,
  main,
  #main,
  .site-main{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .site-header,
  .header-shell,
  .hero,
  .hero-inner,
  .hero-content,
  .hero-copy,
  .hero-grid,
  .hero-bottom,
  .hero-mini,
  .container,
  .section,
  .rooms,
  .rooms-grid,
  .room-grid,
  .room-card,
  .hero-actions,
  .hero-cta,
  .mobile-menu-panel,
  .mobile-panel,
  .palmiye-mobile-menu,
  .map-embed-card,
  .map-iframe-wrap{
    max-width:100%;
    box-sizing:border-box;
  }

  .container{
    width:calc(100% - 28px);
  }

  .header-shell{
    width:calc(100% - 22px);
  }

  .hero-actions,
  .hero-cta{
    width:100%;
    min-width:0;
  }

  .hero-actions a,
  .hero-actions .btn,
  .hero-cta a,
  .hero-cta .btn,
  .hero-cta .quick-link{
    min-width:0;
    max-width:100%;
    white-space:normal;
  }

  .palmiye-mobile-toggle{
    right:14px;
    max-width:46px;
  }

  .palmiye-mobile-menu{
    width:auto;
    max-width:calc(100% - 28px);
  }

  .floating-note{
    right:0;
    max-width:calc(100% - 28px);
  }

  .visual-stack,
  .visual-card,
  .location-visual,
  .location-visual-card,
  .cta-box,
  .popular-searches-box,
  .footer-grid{
    max-width:100%;
    box-sizing:border-box;
  }

  img,
  video,
  iframe{
    max-width:100%;
  }
}

.palmiye-mobile-toggle,
.palmiye-mobile-menu{
  display:none;
}

@media (max-width: 760px){
  .desktop-nav{
    display:none;
  }

  .palmiye-mobile-toggle{
    display:inline-flex;
    position:fixed;
    top:14px;
    right:92px;
    width:46px;
    height:46px;
    border:1px solid rgba(255,255,255,.28);
    border-radius:999px;
    background:rgba(7,42,33,.82);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    padding:0;
    cursor:pointer;
    z-index:10002;
  }

  .palmiye-mobile-toggle span{
    width:20px;
    height:2px;
    background:#fff;
    border-radius:99px;
    display:block;
  }

  .palmiye-mobile-menu{
    position:fixed;
    top:78px;
    left:14px;
    right:14px;
    z-index:10001;
    display:flex;
    flex-direction:column;
    gap:6px;
    padding:16px;
    border-radius:24px;
    background:rgba(5,31,25,.96);
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .palmiye-mobile-menu.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }

  .palmiye-mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    padding:12px;
    border-radius:14px;
  }

  .palmiye-mobile-menu-actions{
    display:grid;
    gap:10px;
    margin-top:10px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.14);
  }

  .palmiye-mobile-menu-actions a:first-child{
    text-align:center;
    background:#075f46;
    border-radius:999px;
  }

  .palmiye-mobile-menu-actions a:last-child{
    text-align:center;
    background:#fff;
    color:#061f18;
    border-radius:999px;
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #arama-niyeti.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Bakırköy Suit Otel landing final — direct from approved Palmiye system */
:root{
  --suite-warm:#fbf7ef;
}

/* Header stability and clean final state */
.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{transform:translateY(-115%)}
.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}
.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{width:min(1280px,calc(100% - 34px))}
.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{background:rgba(7,23,20,.05);border-color:rgba(7,23,20,.10)}
.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{color:var(--ink)}
.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{color:var(--ink);background:rgba(7,23,20,.045);border-color:rgba(7,23,20,.12)}
.site-header.is-scrolled .brand,
.site-header.is-open .brand{box-shadow:none}
.header-phone{white-space:nowrap}

.hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}
.hero h1{
  font-size:clamp(72px,7.25vw,118px);
  max-width:860px;
}
.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{color:#fff !important}

.room-gallery-section{
  padding:64px 0 42px;
  background:var(--paper);
}
.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:32px;
  background:radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%), var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:18px;
}
.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,430px);
  gap:24px;
  align-items:end;
  padding:6px 6px 18px;
}
.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(34px,3.2vw,52px);
  line-height:.96;
  letter-spacing:-.045em;
  margin:0;
  max-width:620px;
}
.room-gallery-head p{margin:0;color:var(--muted);line-height:1.72;font-size:14px}
.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 292px;
  gap:14px;
  align-items:stretch;
}
.gallery-stage{
  position:relative;
  min-height:0;
  aspect-ratio:16 / 9;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
}
.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}
.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}
.gallery-main img{
  width:100%;
  height:100%;
  min-height:0;
  aspect-ratio:16 / 9;
  object-fit:cover;
  object-position:center;
}
.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}
.gallery-counter{
  left:14px;
  top:14px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:7px 10px;
  font-size:11px;
}
.gallery-expand{
  right:14px;
  bottom:14px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:8px 12px;
  font-size:12px;
}
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:12px}
.gallery-next{right:12px}

.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:26px;
  padding:24px !important;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}
.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:44px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}
.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}
.gallery-info-card.reservation-card .gallery-actions{display:grid !important;gap:10px !important;margin:0 !important}
.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}
.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}
.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}
.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:9px 11px;
  background:rgba(255,255,255,.055);
}
.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}
.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}
.gallery-thumbs{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 2px 2px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}
.gallery-thumb{
  flex:0 0 118px;
  height:66px;
  border:2px solid transparent;
  border-radius:14px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}
.gallery-thumb.is-active{opacity:1;border-color:var(--green);box-shadow:0 12px 30px rgba(13,77,54,.16)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover;object-position:center}
.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:12px 2px 0;
}
.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  border:1px solid rgba(13,77,54,.18);
  background:transparent;
  color:var(--green-2);
  border-radius:999px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}
.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

/* Compact content below hero */
@media (min-width:761px){
  .section{padding:74px 0}
  .section.alt{padding:74px 0}
  .section-head{margin-bottom:28px}
  .section-head h2,
  .section h2{font-size:clamp(42px,4.3vw,68px);line-height:.96}
  .intent-main{min-height:390px;border-radius:30px;padding:28px}
  .intent-main h3{font-size:48px}
  .intent-card{border-radius:24px;padding:18px}
  .room-mini img{height:172px}
  .location-card{min-height:430px;border-radius:32px;padding:30px}
  .booking-flow .step{min-height:190px;border-radius:26px;padding:20px}
  .cta-box{padding:42px}
  .cta-box h2{font-size:56px}
}

/* Suit audience compact section */
.room-fit-section{padding:64px 0}
.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}
.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.room-fit-intro .kicker{color:#d5ba84;margin-bottom:16px;letter-spacing:.2em}
.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}
.room-fit-intro p{color:rgba(255,255,255,.76);margin:0;font-size:15px;line-height:1.72}
.room-fit-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.room-fit-actions .btn{min-height:42px;padding:10px 15px;font-size:13px}
.room-fit-actions .btn-outline{color:#fff;border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08)}
.room-fit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:24px;align-items:stretch}
.room-fit-item{border:1px solid var(--line);border-radius:24px;padding:22px 20px;background:rgba(255,253,248,.72)}
.room-fit-item span{display:inline-flex;color:#b47a2f;font-weight:950;font-size:12px;letter-spacing:.12em;margin-bottom:22px}
.room-fit-item h3{margin:0 0 8px;font-size:18px;line-height:1.22;letter-spacing:-.025em}
.room-fit-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.68}

.popular-searches{padding:28px 0 42px;background:var(--paper)}
.popular-searches-box{border:1px solid var(--line);border-radius:28px;padding:28px 30px;background:rgba(255,253,248,.76)}
.popular-searches h2{margin:0 0 16px;font-family:var(--sans);font-size:18px;line-height:1.2;letter-spacing:-.02em}
.popular-chip-grid{display:flex;flex-wrap:wrap;gap:10px}
.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.popular-chip-grid a:hover{transform:translateY(-1px);border-color:var(--green);background:var(--green-soft)}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}
.footer-brand-wordmark span{font-family:var(--serif);font-size:34px;line-height:.85;letter-spacing:-.045em}
.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}
.footer-contact-links span{color:rgba(255,255,255,.72);line-height:1.7}

/* Gallery lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.gallery-lightbox.is-open{display:flex}
.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}
.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (max-width:1120px){
  .room-gallery-grid{grid-template-columns:1fr}
  .gallery-info-card.reservation-card{display:block}
  .gallery-actions{display:flex;flex-wrap:wrap}
  .room-fit-card{grid-template-columns:1fr}
  .room-fit-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{padding:8px 0}
  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .hero h1{
    font-size:clamp(60px,18vw,86px);
    max-width:96%;
  }

  .room-gallery-section{padding:24px 0 34px}
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
    padding:14px;
    border-radius:28px;
  }
  .room-gallery-head{grid-template-columns:1fr;gap:12px;padding:8px 6px 16px;order:1}
  .room-gallery-head h2{font-size:36px;line-height:.92;max-width:92%}
  .room-gallery-head p{font-size:14px}
  .room-gallery-grid{display:contents}
  .gallery-stage{
    order:2;
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    border-radius:24px;
  }
  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }
  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }
  .gallery-thumbs{order:3;padding:12px 2px 8px;align-items:center}
  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }
  .gallery-thumb img{width:100%;height:100%;aspect-ratio:16 / 9;object-fit:cover}
  .gallery-amenities{order:4;padding:8px 2px 14px;gap:7px}
  .gallery-amenities span{min-height:30px;font-size:11px;padding:5px 9px}
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }
  .gallery-info-card.reservation-card h3{font-size:42px !important;margin:18px 0 12px !important}
  .gallery-info-card.reservation-card .gallery-actions .btn{min-height:48px}
  .gallery-reservation-mini{margin-top:14px}

  .section{padding:56px 0}
  .section.alt{padding:56px 0}
  .section-head{margin-bottom:20px}
  .section h2,
  .section-head h2{font-size:clamp(38px,12vw,54px);line-height:.96}
  #bakirkoy-suit-otel.section{padding-top:34px !important}
  .intent-main{min-height:310px}
  .intent-main h3{font-size:38px}
  .intent-card{padding:17px}
  .room-fit-section{padding:48px 0}
  .room-fit-card{border-radius:28px;min-height:0}
  .room-fit-intro{padding:28px 24px}
  .room-fit-intro h2{font-size:26px}
  .room-fit-actions{display:grid}
  .room-fit-grid{grid-template-columns:1fr;padding:14px;gap:10px}
  .room-fit-item{border-radius:20px;padding:18px}
  .room-fit-item span{margin-bottom:12px}
  .booking-flow .step{min-height:auto}
  .cta-box{padding:26px}
  .cta-box h2{font-size:42px}
  .popular-searches{padding:18px 0 34px}
  .popular-searches-box{border-radius:24px;padding:22px 18px}
  .popular-chip-grid{gap:8px}
  .popular-chip-grid a{min-height:38px;padding:8px 13px;font-size:13px}
  .gallery-lightbox{padding:18px}
  .gallery-lightbox img{max-width:calc(100vw - 36px);max-height:calc(100svh - 150px);border-radius:18px}
  .lightbox-arrow{top:auto;bottom:26px;width:50px;height:50px}
  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}


/* Pass 02 — homepage-like landing flow: rooms higher, gallery secondary */
@media (min-width:761px){
  #odalar.section{
    padding-top:78px;
    padding-bottom:58px;
  }

  #suite-galerisi.room-gallery-section{
    padding-top:34px;
    padding-bottom:58px;
  }

  #bakirkoy-suit-otel.section{
    padding-top:64px;
  }

  #odalar .section-head{
    grid-template-columns:150px minmax(0,1.2fr) minmax(320px,.9fr);
    align-items:center;
  }

  #odalar .section-head h2{
    max-width:760px;
  }
}

@media (max-width:760px){
  #odalar.section{
    padding-top:54px;
    padding-bottom:36px;
  }

  #suite-galerisi.room-gallery-section{
    padding-top:12px;
    padding-bottom:34px;
  }

  #bakirkoy-suit-otel.section{
    padding-top:40px !important;
  }
}


/* Pass 03 — index-style full room cards with all room options */
.rooms{
  background:#fbf7ef;
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.room-card{
  min-height:650px;
  display:grid;
  grid-template-rows:292px 1fr;
  overflow:hidden;
  border:1px solid rgba(17,23,20,.095);
  border-radius:30px;
  background:rgba(255,253,248,.82);
  box-shadow:0 10px 40px rgba(18,27,22,.06);
  transition:transform .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1), border-color .35s cubic-bezier(.2,.7,.1,1);
}

.room-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 70px rgba(18,27,22,.13);
  border-color:rgba(14,68,48,.18);
}

.room-media{
  position:relative;
  overflow:hidden;
  background:var(--stone-2);
}

.room-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.2,.7,.1,1);
}

.room-card:hover .room-media img{
  transform:scale(1.045);
}

.room-badge{
  position:absolute;
  top:18px;
  left:18px;
  display:inline-flex;
  min-height:38px;
  align-items:center;
  padding-inline:14px;
  border-radius:999px;
  background:rgba(255,253,248,.88);
  color:var(--ink);
  font-size:12px;
  font-weight:850;
  backdrop-filter:blur(14px);
}

.room-body{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
}

.room-stars{
  display:flex;
  align-items:center;
  gap:4px;
  margin:0 0 16px;
  color:#c6842d;
  letter-spacing:.12em;
  font-size:12px;
}

.room-type{
  margin:0 0 10px;
  color:var(--green);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.room-card h3{
  margin:0;
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(34px,2.8vw,56px);
  letter-spacing:-.045em;
  line-height:.92;
}

.room-card p:not(.room-type){
  margin:18px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.66;
}

.room-features{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:0;
}

.room-features li{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:0 12px;
  border:1px solid rgba(17,23,20,.10);
  border-radius:999px;
  background:rgba(14,68,48,.035);
  color:rgba(17,23,20,.74);
  font-size:13px;
  font-weight:750;
}

.room-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:2px;
}

.room-action{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  font-size:14px;
  font-weight:850;
  letter-spacing:-.01em;
  transition:transform .25s cubic-bezier(.2,.7,.1,1), box-shadow .25s cubic-bezier(.2,.7,.1,1), background .25s cubic-bezier(.2,.7,.1,1);
}

.room-action:hover{
  transform:translateY(-2px);
}

.room-action.call{
  background:var(--ink);
  color:#fff;
}

.room-action.whatsapp{
  background:var(--whatsapp);
  color:#fff !important;
  box-shadow:0 14px 32px rgba(37,211,102,.24);
}

.room-action svg{
  width:17px;
  height:17px;
  flex:0 0 auto;
}

@media (min-width:761px){
  #odalar.rooms{
    padding-top:78px;
    padding-bottom:64px;
  }
}

@media (max-width:1100px){
  .room-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  #odalar.rooms{
    padding-top:54px;
    padding-bottom:38px;
  }

  .room-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .room-card{
    min-height:auto;
    grid-template-rows:285px auto;
    border-radius:24px;
  }

  .room-body{
    padding:22px;
  }

  .room-actions{
    grid-template-columns:1fr;
  }

  .room-card h3{
    font-size:42px;
  }
}


/* Palmiye Google Map Embed */
.map-embed-block{
  margin-top:28px;
}

.map-embed-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(16,74,53,.16);
  background:linear-gradient(145deg,#fffaf1,#f2eadc);
  box-shadow:0 22px 80px rgba(7,23,20,.12);
}

.map-embed-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  padding:24px 26px 20px;
}

.map-embed-top span{
  display:inline-flex;
  margin-bottom:8px;
  color:#b47a2f;
  font-size:12px;
  line-height:1;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.map-embed-top h3{
  margin:0;
  font-size:clamp(28px,3.8vw,48px);
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--ink);
}

.map-embed-top p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.map-embed-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.map-iframe-wrap{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  margin:0 14px 14px;
  min-height:420px;
  background:#d9d0c0;
  border:1px solid rgba(16,74,53,.12);
}

.map-iframe-wrap iframe{
  width:100%;
  height:460px;
  display:block;
  border:0;
  filter:saturate(.92) contrast(.98);
}

@media (max-width:760px){
  .map-embed-block{
    margin-top:20px;
  }

  .map-embed-card{
    border-radius:26px;
  }

  .map-embed-top{
    grid-template-columns:1fr;
    align-items:start;
    padding:22px 18px 16px;
  }

  .map-embed-actions{
    justify-content:flex-start;
  }

  .map-iframe-wrap{
    min-height:330px;
    margin:0 10px 10px;
    border-radius:20px;
  }

  .map-iframe-wrap iframe{
    height:350px;
  }
}


.location-layout .map-embed-block,
.location-layout-new .map-embed-block{
  grid-column:1 / -1;
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #arama-niyeti.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Bakırköy Suit Otel landing final — direct from approved Palmiye system */
:root{
  --suite-warm:#fbf7ef;
}

/* Header stability and clean final state */
.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{transform:translateY(-115%)}
.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}
.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{width:min(1280px,calc(100% - 34px))}
.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{background:rgba(7,23,20,.05);border-color:rgba(7,23,20,.10)}
.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{color:var(--ink)}
.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{color:var(--ink);background:rgba(7,23,20,.045);border-color:rgba(7,23,20,.12)}
.site-header.is-scrolled .brand,
.site-header.is-open .brand{box-shadow:none}
.header-phone{white-space:nowrap}

.hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}
.hero h1{
  font-size:clamp(72px,7.25vw,118px);
  max-width:860px;
}
.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{color:#fff !important}

.room-gallery-section{
  padding:64px 0 42px;
  background:var(--paper);
}
.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:32px;
  background:radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%), var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:18px;
}
.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,430px);
  gap:24px;
  align-items:end;
  padding:6px 6px 18px;
}
.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(34px,3.2vw,52px);
  line-height:.96;
  letter-spacing:-.045em;
  margin:0;
  max-width:620px;
}
.room-gallery-head p{margin:0;color:var(--muted);line-height:1.72;font-size:14px}
.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 292px;
  gap:14px;
  align-items:stretch;
}
.gallery-stage{
  position:relative;
  min-height:0;
  aspect-ratio:16 / 9;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
}
.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}
.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}
.gallery-main img{
  width:100%;
  height:100%;
  min-height:0;
  aspect-ratio:16 / 9;
  object-fit:cover;
  object-position:center;
}
.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}
.gallery-counter{
  left:14px;
  top:14px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:7px 10px;
  font-size:11px;
}
.gallery-expand{
  right:14px;
  bottom:14px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:8px 12px;
  font-size:12px;
}
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:12px}
.gallery-next{right:12px}

.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:26px;
  padding:24px !important;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}
.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:44px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}
.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}
.gallery-info-card.reservation-card .gallery-actions{display:grid !important;gap:10px !important;margin:0 !important}
.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}
.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}
.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}
.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:9px 11px;
  background:rgba(255,255,255,.055);
}
.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}
.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}
.gallery-thumbs{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 2px 2px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}
.gallery-thumb{
  flex:0 0 118px;
  height:66px;
  border:2px solid transparent;
  border-radius:14px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}
.gallery-thumb.is-active{opacity:1;border-color:var(--green);box-shadow:0 12px 30px rgba(13,77,54,.16)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover;object-position:center}
.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:12px 2px 0;
}
.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  border:1px solid rgba(13,77,54,.18);
  background:transparent;
  color:var(--green-2);
  border-radius:999px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}
.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

/* Compact content below hero */
@media (min-width:761px){
  .section{padding:74px 0}
  .section.alt{padding:74px 0}
  .section-head{margin-bottom:28px}
  .section-head h2,
  .section h2{font-size:clamp(42px,4.3vw,68px);line-height:.96}
  .intent-main{min-height:390px;border-radius:30px;padding:28px}
  .intent-main h3{font-size:48px}
  .intent-card{border-radius:24px;padding:18px}
  .room-mini img{height:172px}
  .location-card{min-height:430px;border-radius:32px;padding:30px}
  .booking-flow .step{min-height:190px;border-radius:26px;padding:20px}
  .cta-box{padding:42px}
  .cta-box h2{font-size:56px}
}

/* Suit audience compact section */
.room-fit-section{padding:64px 0}
.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}
.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.room-fit-intro .kicker{color:#d5ba84;margin-bottom:16px;letter-spacing:.2em}
.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}
.room-fit-intro p{color:rgba(255,255,255,.76);margin:0;font-size:15px;line-height:1.72}
.room-fit-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.room-fit-actions .btn{min-height:42px;padding:10px 15px;font-size:13px}
.room-fit-actions .btn-outline{color:#fff;border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08)}
.room-fit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:24px;align-items:stretch}
.room-fit-item{border:1px solid var(--line);border-radius:24px;padding:22px 20px;background:rgba(255,253,248,.72)}
.room-fit-item span{display:inline-flex;color:#b47a2f;font-weight:950;font-size:12px;letter-spacing:.12em;margin-bottom:22px}
.room-fit-item h3{margin:0 0 8px;font-size:18px;line-height:1.22;letter-spacing:-.025em}
.room-fit-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.68}

.popular-searches{padding:28px 0 42px;background:var(--paper)}
.popular-searches-box{border:1px solid var(--line);border-radius:28px;padding:28px 30px;background:rgba(255,253,248,.76)}
.popular-searches h2{margin:0 0 16px;font-family:var(--sans);font-size:18px;line-height:1.2;letter-spacing:-.02em}
.popular-chip-grid{display:flex;flex-wrap:wrap;gap:10px}
.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.popular-chip-grid a:hover{transform:translateY(-1px);border-color:var(--green);background:var(--green-soft)}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}
.footer-brand-wordmark span{font-family:var(--serif);font-size:34px;line-height:.85;letter-spacing:-.045em}
.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}
.footer-contact-links span{color:rgba(255,255,255,.72);line-height:1.7}

/* Gallery lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.gallery-lightbox.is-open{display:flex}
.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}
.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (max-width:1120px){
  .room-gallery-grid{grid-template-columns:1fr}
  .gallery-info-card.reservation-card{display:block}
  .gallery-actions{display:flex;flex-wrap:wrap}
  .room-fit-card{grid-template-columns:1fr}
  .room-fit-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{padding:8px 0}
  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .hero h1{
    font-size:clamp(60px,18vw,86px);
    max-width:96%;
  }

  .room-gallery-section{padding:24px 0 34px}
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
    padding:14px;
    border-radius:28px;
  }
  .room-gallery-head{grid-template-columns:1fr;gap:12px;padding:8px 6px 16px;order:1}
  .room-gallery-head h2{font-size:36px;line-height:.92;max-width:92%}
  .room-gallery-head p{font-size:14px}
  .room-gallery-grid{display:contents}
  .gallery-stage{
    order:2;
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    border-radius:24px;
  }
  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }
  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }
  .gallery-thumbs{order:3;padding:12px 2px 8px;align-items:center}
  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }
  .gallery-thumb img{width:100%;height:100%;aspect-ratio:16 / 9;object-fit:cover}
  .gallery-amenities{order:4;padding:8px 2px 14px;gap:7px}
  .gallery-amenities span{min-height:30px;font-size:11px;padding:5px 9px}
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }
  .gallery-info-card.reservation-card h3{font-size:42px !important;margin:18px 0 12px !important}
  .gallery-info-card.reservation-card .gallery-actions .btn{min-height:48px}
  .gallery-reservation-mini{margin-top:14px}

  .section{padding:56px 0}
  .section.alt{padding:56px 0}
  .section-head{margin-bottom:20px}
  .section h2,
  .section-head h2{font-size:clamp(38px,12vw,54px);line-height:.96}
  #bakirkoy-suit-otel.section{padding-top:34px !important}
  .intent-main{min-height:310px}
  .intent-main h3{font-size:38px}
  .intent-card{padding:17px}
  .room-fit-section{padding:48px 0}
  .room-fit-card{border-radius:28px;min-height:0}
  .room-fit-intro{padding:28px 24px}
  .room-fit-intro h2{font-size:26px}
  .room-fit-actions{display:grid}
  .room-fit-grid{grid-template-columns:1fr;padding:14px;gap:10px}
  .room-fit-item{border-radius:20px;padding:18px}
  .room-fit-item span{margin-bottom:12px}
  .booking-flow .step{min-height:auto}
  .cta-box{padding:26px}
  .cta-box h2{font-size:42px}
  .popular-searches{padding:18px 0 34px}
  .popular-searches-box{border-radius:24px;padding:22px 18px}
  .popular-chip-grid{gap:8px}
  .popular-chip-grid a{min-height:38px;padding:8px 13px;font-size:13px}
  .gallery-lightbox{padding:18px}
  .gallery-lightbox img{max-width:calc(100vw - 36px);max-height:calc(100svh - 150px);border-radius:18px}
  .lightbox-arrow{top:auto;bottom:26px;width:50px;height:50px}
  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}


/* Pass 02 — homepage-like landing flow: rooms higher, gallery secondary */
@media (min-width:761px){
  #odalar.section{
    padding-top:78px;
    padding-bottom:58px;
  }

  #suite-galerisi.room-gallery-section{
    padding-top:34px;
    padding-bottom:58px;
  }

  #bakirkoy-suit-otel.section{
    padding-top:64px;
  }

  #odalar .section-head{
    grid-template-columns:150px minmax(0,1.2fr) minmax(320px,.9fr);
    align-items:center;
  }

  #odalar .section-head h2{
    max-width:760px;
  }
}

@media (max-width:760px){
  #odalar.section{
    padding-top:54px;
    padding-bottom:36px;
  }

  #suite-galerisi.room-gallery-section{
    padding-top:12px;
    padding-bottom:34px;
  }

  #bakirkoy-suit-otel.section{
    padding-top:40px !important;
  }
}


/* Pass 03 — index-style full room cards with all room options */
.rooms{
  background:#fbf7ef;
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.room-card{
  min-height:650px;
  display:grid;
  grid-template-rows:292px 1fr;
  overflow:hidden;
  border:1px solid rgba(17,23,20,.095);
  border-radius:30px;
  background:rgba(255,253,248,.82);
  box-shadow:0 10px 40px rgba(18,27,22,.06);
  transition:transform .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1), border-color .35s cubic-bezier(.2,.7,.1,1);
}

.room-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 70px rgba(18,27,22,.13);
  border-color:rgba(14,68,48,.18);
}

.room-media{
  position:relative;
  overflow:hidden;
  background:var(--stone-2);
}

.room-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.2,.7,.1,1);
}

.room-card:hover .room-media img{
  transform:scale(1.045);
}

.room-badge{
  position:absolute;
  top:18px;
  left:18px;
  display:inline-flex;
  min-height:38px;
  align-items:center;
  padding-inline:14px;
  border-radius:999px;
  background:rgba(255,253,248,.88);
  color:var(--ink);
  font-size:12px;
  font-weight:850;
  backdrop-filter:blur(14px);
}

.room-body{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
}

.room-stars{
  display:flex;
  align-items:center;
  gap:4px;
  margin:0 0 16px;
  color:#c6842d;
  letter-spacing:.12em;
  font-size:12px;
}

.room-type{
  margin:0 0 10px;
  color:var(--green);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.room-card h3{
  margin:0;
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(34px,2.8vw,56px);
  letter-spacing:-.045em;
  line-height:.92;
}

.room-card p:not(.room-type){
  margin:18px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.66;
}

.room-features{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:0;
}

.room-features li{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:0 12px;
  border:1px solid rgba(17,23,20,.10);
  border-radius:999px;
  background:rgba(14,68,48,.035);
  color:rgba(17,23,20,.74);
  font-size:13px;
  font-weight:750;
}

.room-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:2px;
}

.room-action{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  font-size:14px;
  font-weight:850;
  letter-spacing:-.01em;
  transition:transform .25s cubic-bezier(.2,.7,.1,1), box-shadow .25s cubic-bezier(.2,.7,.1,1), background .25s cubic-bezier(.2,.7,.1,1);
}

.room-action:hover{
  transform:translateY(-2px);
}

.room-action.call{
  background:var(--ink);
  color:#fff;
}

.room-action.whatsapp{
  background:var(--whatsapp);
  color:#fff !important;
  box-shadow:0 14px 32px rgba(37,211,102,.24);
}

.room-action svg{
  width:17px;
  height:17px;
  flex:0 0 auto;
}

@media (min-width:761px){
  #odalar.rooms{
    padding-top:78px;
    padding-bottom:64px;
  }
}

@media (max-width:1100px){
  .room-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  #odalar.rooms{
    padding-top:54px;
    padding-bottom:38px;
  }

  .room-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .room-card{
    min-height:auto;
    grid-template-rows:285px auto;
    border-radius:24px;
  }

  .room-body{
    padding:22px;
  }

  .room-actions{
    grid-template-columns:1fr;
  }

  .room-card h3{
    font-size:42px;
  }
}


/* Bakırköy Meydan Otel page final content tune */
.hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

@media (max-width:760px){
  #bakirkoy-meydan-otel.section{
    padding-top:40px !important;
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #arama-niyeti.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Bakırköy Suit Otel landing final — direct from approved Palmiye system */
:root{
  --suite-warm:#fbf7ef;
}

/* Header stability and clean final state */
.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{transform:translateY(-115%)}
.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}
.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{width:min(1280px,calc(100% - 34px))}
.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{background:rgba(7,23,20,.05);border-color:rgba(7,23,20,.10)}
.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{color:var(--ink)}
.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{color:var(--ink);background:rgba(7,23,20,.045);border-color:rgba(7,23,20,.12)}
.site-header.is-scrolled .brand,
.site-header.is-open .brand{box-shadow:none}
.header-phone{white-space:nowrap}

.hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}
.hero h1{
  font-size:clamp(72px,7.25vw,118px);
  max-width:860px;
}
.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{color:#fff !important}

.room-gallery-section{
  padding:64px 0 42px;
  background:var(--paper);
}
.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:32px;
  background:radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%), var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:18px;
}
.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,430px);
  gap:24px;
  align-items:end;
  padding:6px 6px 18px;
}
.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(34px,3.2vw,52px);
  line-height:.96;
  letter-spacing:-.045em;
  margin:0;
  max-width:620px;
}
.room-gallery-head p{margin:0;color:var(--muted);line-height:1.72;font-size:14px}
.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 292px;
  gap:14px;
  align-items:stretch;
}
.gallery-stage{
  position:relative;
  min-height:0;
  aspect-ratio:16 / 9;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
}
.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}
.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}
.gallery-main img{
  width:100%;
  height:100%;
  min-height:0;
  aspect-ratio:16 / 9;
  object-fit:cover;
  object-position:center;
}
.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}
.gallery-counter{
  left:14px;
  top:14px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:7px 10px;
  font-size:11px;
}
.gallery-expand{
  right:14px;
  bottom:14px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:8px 12px;
  font-size:12px;
}
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:12px}
.gallery-next{right:12px}

.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:26px;
  padding:24px !important;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}
.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:44px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}
.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}
.gallery-info-card.reservation-card .gallery-actions{display:grid !important;gap:10px !important;margin:0 !important}
.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}
.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}
.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}
.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:9px 11px;
  background:rgba(255,255,255,.055);
}
.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}
.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}
.gallery-thumbs{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding:10px 2px 2px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}
.gallery-thumb{
  flex:0 0 118px;
  height:66px;
  border:2px solid transparent;
  border-radius:14px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}
.gallery-thumb.is-active{opacity:1;border-color:var(--green);box-shadow:0 12px 30px rgba(13,77,54,.16)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover;object-position:center}
.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:12px 2px 0;
}
.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  border:1px solid rgba(13,77,54,.18);
  background:transparent;
  color:var(--green-2);
  border-radius:999px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}
.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

/* Compact content below hero */
@media (min-width:761px){
  .section{padding:74px 0}
  .section.alt{padding:74px 0}
  .section-head{margin-bottom:28px}
  .section-head h2,
  .section h2{font-size:clamp(42px,4.3vw,68px);line-height:.96}
  .intent-main{min-height:390px;border-radius:30px;padding:28px}
  .intent-main h3{font-size:48px}
  .intent-card{border-radius:24px;padding:18px}
  .room-mini img{height:172px}
  .location-card{min-height:430px;border-radius:32px;padding:30px}
  .booking-flow .step{min-height:190px;border-radius:26px;padding:20px}
  .cta-box{padding:42px}
  .cta-box h2{font-size:56px}
}

/* Suit audience compact section */
.room-fit-section{padding:64px 0}
.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}
.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.room-fit-intro .kicker{color:#d5ba84;margin-bottom:16px;letter-spacing:.2em}
.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}
.room-fit-intro p{color:rgba(255,255,255,.76);margin:0;font-size:15px;line-height:1.72}
.room-fit-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.room-fit-actions .btn{min-height:42px;padding:10px 15px;font-size:13px}
.room-fit-actions .btn-outline{color:#fff;border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08)}
.room-fit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:24px;align-items:stretch}
.room-fit-item{border:1px solid var(--line);border-radius:24px;padding:22px 20px;background:rgba(255,253,248,.72)}
.room-fit-item span{display:inline-flex;color:#b47a2f;font-weight:950;font-size:12px;letter-spacing:.12em;margin-bottom:22px}
.room-fit-item h3{margin:0 0 8px;font-size:18px;line-height:1.22;letter-spacing:-.025em}
.room-fit-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.68}

.popular-searches{padding:28px 0 42px;background:var(--paper)}
.popular-searches-box{border:1px solid var(--line);border-radius:28px;padding:28px 30px;background:rgba(255,253,248,.76)}
.popular-searches h2{margin:0 0 16px;font-family:var(--sans);font-size:18px;line-height:1.2;letter-spacing:-.02em}
.popular-chip-grid{display:flex;flex-wrap:wrap;gap:10px}
.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.popular-chip-grid a:hover{transform:translateY(-1px);border-color:var(--green);background:var(--green-soft)}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}
.footer-brand-wordmark span{font-family:var(--serif);font-size:34px;line-height:.85;letter-spacing:-.045em}
.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}
.footer-contact-links span{color:rgba(255,255,255,.72);line-height:1.7}

/* Gallery lightbox */
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.gallery-lightbox.is-open{display:flex}
.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}
.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}
.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (max-width:1120px){
  .room-gallery-grid{grid-template-columns:1fr}
  .gallery-info-card.reservation-card{display:block}
  .gallery-actions{display:flex;flex-wrap:wrap}
  .room-fit-card{grid-template-columns:1fr}
  .room-fit-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{padding:8px 0}
  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .hero h1{
    font-size:clamp(60px,18vw,86px);
    max-width:96%;
  }

  .room-gallery-section{padding:24px 0 34px}
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
    padding:14px;
    border-radius:28px;
  }
  .room-gallery-head{grid-template-columns:1fr;gap:12px;padding:8px 6px 16px;order:1}
  .room-gallery-head h2{font-size:36px;line-height:.92;max-width:92%}
  .room-gallery-head p{font-size:14px}
  .room-gallery-grid{display:contents}
  .gallery-stage{
    order:2;
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    border-radius:24px;
  }
  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }
  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }
  .gallery-thumbs{order:3;padding:12px 2px 8px;align-items:center}
  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }
  .gallery-thumb img{width:100%;height:100%;aspect-ratio:16 / 9;object-fit:cover}
  .gallery-amenities{order:4;padding:8px 2px 14px;gap:7px}
  .gallery-amenities span{min-height:30px;font-size:11px;padding:5px 9px}
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }
  .gallery-info-card.reservation-card h3{font-size:42px !important;margin:18px 0 12px !important}
  .gallery-info-card.reservation-card .gallery-actions .btn{min-height:48px}
  .gallery-reservation-mini{margin-top:14px}

  .section{padding:56px 0}
  .section.alt{padding:56px 0}
  .section-head{margin-bottom:20px}
  .section h2,
  .section-head h2{font-size:clamp(38px,12vw,54px);line-height:.96}
  #bakirkoy-suit-otel.section{padding-top:34px !important}
  .intent-main{min-height:310px}
  .intent-main h3{font-size:38px}
  .intent-card{padding:17px}
  .room-fit-section{padding:48px 0}
  .room-fit-card{border-radius:28px;min-height:0}
  .room-fit-intro{padding:28px 24px}
  .room-fit-intro h2{font-size:26px}
  .room-fit-actions{display:grid}
  .room-fit-grid{grid-template-columns:1fr;padding:14px;gap:10px}
  .room-fit-item{border-radius:20px;padding:18px}
  .room-fit-item span{margin-bottom:12px}
  .booking-flow .step{min-height:auto}
  .cta-box{padding:26px}
  .cta-box h2{font-size:42px}
  .popular-searches{padding:18px 0 34px}
  .popular-searches-box{border-radius:24px;padding:22px 18px}
  .popular-chip-grid{gap:8px}
  .popular-chip-grid a{min-height:38px;padding:8px 13px;font-size:13px}
  .gallery-lightbox{padding:18px}
  .gallery-lightbox img{max-width:calc(100vw - 36px);max-height:calc(100svh - 150px);border-radius:18px}
  .lightbox-arrow{top:auto;bottom:26px;width:50px;height:50px}
  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}


/* Pass 02 — homepage-like landing flow: rooms higher, gallery secondary */
@media (min-width:761px){
  #odalar.section{
    padding-top:78px;
    padding-bottom:58px;
  }

  #suite-galerisi.room-gallery-section{
    padding-top:34px;
    padding-bottom:58px;
  }

  #bakirkoy-suit-otel.section{
    padding-top:64px;
  }

  #odalar .section-head{
    grid-template-columns:150px minmax(0,1.2fr) minmax(320px,.9fr);
    align-items:center;
  }

  #odalar .section-head h2{
    max-width:760px;
  }
}

@media (max-width:760px){
  #odalar.section{
    padding-top:54px;
    padding-bottom:36px;
  }

  #suite-galerisi.room-gallery-section{
    padding-top:12px;
    padding-bottom:34px;
  }

  #bakirkoy-suit-otel.section{
    padding-top:40px !important;
  }
}


/* Pass 03 — index-style full room cards with all room options */
.rooms{
  background:#fbf7ef;
}

.room-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.room-card{
  min-height:650px;
  display:grid;
  grid-template-rows:292px 1fr;
  overflow:hidden;
  border:1px solid rgba(17,23,20,.095);
  border-radius:30px;
  background:rgba(255,253,248,.82);
  box-shadow:0 10px 40px rgba(18,27,22,.06);
  transition:transform .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1), border-color .35s cubic-bezier(.2,.7,.1,1);
}

.room-card:hover{
  transform:translateY(-7px);
  box-shadow:0 24px 70px rgba(18,27,22,.13);
  border-color:rgba(14,68,48,.18);
}

.room-media{
  position:relative;
  overflow:hidden;
  background:var(--stone-2);
}

.room-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.2,.7,.1,1);
}

.room-card:hover .room-media img{
  transform:scale(1.045);
}

.room-badge{
  position:absolute;
  top:18px;
  left:18px;
  display:inline-flex;
  min-height:38px;
  align-items:center;
  padding-inline:14px;
  border-radius:999px;
  background:rgba(255,253,248,.88);
  color:var(--ink);
  font-size:12px;
  font-weight:850;
  backdrop-filter:blur(14px);
}

.room-body{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
}

.room-stars{
  display:flex;
  align-items:center;
  gap:4px;
  margin:0 0 16px;
  color:#c6842d;
  letter-spacing:.12em;
  font-size:12px;
}

.room-type{
  margin:0 0 10px;
  color:var(--green);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.room-card h3{
  margin:0;
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(34px,2.8vw,56px);
  letter-spacing:-.045em;
  line-height:.92;
}

.room-card p:not(.room-type){
  margin:18px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.66;
}

.room-features{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:0;
}

.room-features li{
  display:inline-flex;
  min-height:32px;
  align-items:center;
  padding:0 12px;
  border:1px solid rgba(17,23,20,.10);
  border-radius:999px;
  background:rgba(14,68,48,.035);
  color:rgba(17,23,20,.74);
  font-size:13px;
  font-weight:750;
}

.room-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:2px;
}

.room-action{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  font-size:14px;
  font-weight:850;
  letter-spacing:-.01em;
  transition:transform .25s cubic-bezier(.2,.7,.1,1), box-shadow .25s cubic-bezier(.2,.7,.1,1), background .25s cubic-bezier(.2,.7,.1,1);
}

.room-action:hover{
  transform:translateY(-2px);
}

.room-action.call{
  background:var(--ink);
  color:#fff;
}

.room-action.whatsapp{
  background:var(--whatsapp);
  color:#fff !important;
  box-shadow:0 14px 32px rgba(37,211,102,.24);
}

.room-action svg{
  width:17px;
  height:17px;
  flex:0 0 auto;
}

@media (min-width:761px){
  #odalar.rooms{
    padding-top:78px;
    padding-bottom:64px;
  }
}

@media (max-width:1100px){
  .room-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  #odalar.rooms{
    padding-top:54px;
    padding-bottom:38px;
  }

  .room-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .room-card{
    min-height:auto;
    grid-template-rows:285px auto;
    border-radius:24px;
  }

  .room-body{
    padding:22px;
  }

  .room-actions{
    grid-template-columns:1fr;
  }

  .room-card h3{
    font-size:42px;
  }
}


/* Bakırköy Meydan Otel page final content tune */
.hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

@media (max-width:760px){
  #bakirkoy-meydan-otel.section{
    padding-top:40px !important;
  }
}


/* Bakırköy Sahil Otel page final */
.hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

@media (max-width:760px){
  #bakirkoy-sahil-otel.section{
    padding-top:40px !important;
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}


/* Comfort Suite room landing */
.comfort-room-hero .hero-media,
.room-hero.comfort-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.comfort-room-hero h1{
  max-width:860px;
}

@media (max-width:760px){
  .comfort-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}


/* Comfort Suite room landing */
.comfort-room-hero .hero-media,
.room-hero.comfort-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.comfort-room-hero h1{
  max-width:860px;
}

@media (max-width:760px){
  .comfort-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Signature Suite room landing */
.signature-room-hero .hero-media,
.room-hero.signature-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.signature-room-hero h1{
  max-width:900px;
}

@media (max-width:760px){
  .signature-room-hero h1{
    font-size:clamp(66px,18vw,96px);
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}


/* Comfort Suite room landing */
.comfort-room-hero .hero-media,
.room-hero.comfort-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.comfort-room-hero h1{
  max-width:860px;
}

@media (max-width:760px){
  .comfort-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Signature Suite room landing */
.signature-room-hero .hero-media,
.room-hero.signature-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.signature-room-hero h1{
  max-width:900px;
}

@media (max-width:760px){
  .signature-room-hero h1{
    font-size:clamp(66px,18vw,96px);
  }
}


/* Classic Suite room landing */
.classic-room-hero .hero-media,
.room-hero.classic-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.classic-room-hero h1{
  max-width:820px;
}

@media (max-width:760px){
  .classic-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}


/* Comfort Suite room landing */
.comfort-room-hero .hero-media,
.room-hero.comfort-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.comfort-room-hero h1{
  max-width:860px;
}

@media (max-width:760px){
  .comfort-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Signature Suite room landing */
.signature-room-hero .hero-media,
.room-hero.signature-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.signature-room-hero h1{
  max-width:900px;
}

@media (max-width:760px){
  .signature-room-hero h1{
    font-size:clamp(66px,18vw,96px);
  }
}


/* Classic Suite room landing */
.classic-room-hero .hero-media,
.room-hero.classic-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.classic-room-hero h1{
  max-width:820px;
}

@media (max-width:760px){
  .classic-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Twin Suite room landing */
.twin-room-hero .hero-media,
.room-hero.twin-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.twin-room-hero h1{
  max-width:760px;
}

@media (max-width:760px){
  .twin-room-hero h1{
    font-size:clamp(76px,21vw,106px);
  }
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}


/* Comfort Suite room landing */
.comfort-room-hero .hero-media,
.room-hero.comfort-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.comfort-room-hero h1{
  max-width:860px;
}

@media (max-width:760px){
  .comfort-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Signature Suite room landing */
.signature-room-hero .hero-media,
.room-hero.signature-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.signature-room-hero h1{
  max-width:900px;
}

@media (max-width:760px){
  .signature-room-hero h1{
    font-size:clamp(66px,18vw,96px);
  }
}


/* Classic Suite room landing */
.classic-room-hero .hero-media,
.room-hero.classic-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.classic-room-hero h1{
  max-width:820px;
}

@media (max-width:760px){
  .classic-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Twin Suite room landing */
.twin-room-hero .hero-media,
.room-hero.twin-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.twin-room-hero h1{
  max-width:760px;
}

@media (max-width:760px){
  .twin-room-hero h1{
    font-size:clamp(76px,21vw,106px);
  }
}


/* İletişim page */
.contact-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.contact-hero h1{
  max-width:760px;
}

.contact-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.contact-card{
  min-height:285px;
  border:1px solid var(--line);
  border-radius:30px;
  padding:26px;
  background:rgba(255,253,248,.78);
  box-shadow:0 14px 48px rgba(7,23,20,.06);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.contact-card span{
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.14em;
  margin-bottom:34px;
}

.contact-card h3{
  margin:0 0 10px;
  font-size:26px;
  line-height:1.08;
  letter-spacing:-.04em;
}

.contact-card p{
  margin:0 0 24px;
  color:var(--muted);
  line-height:1.7;
}

.contact-card .btn{
  margin-top:auto;
}

.contact-layout{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:32px;
  align-items:start;
}

.contact-form-copy{
  position:sticky;
  top:110px;
}

.contact-form-copy h2{
  margin:0 0 18px;
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  letter-spacing:-.065em;
}

.contact-form-copy p{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 22px;
}

.contact-proof-list{
  display:grid;
  gap:12px;
  margin-top:26px;
}

.contact-proof-list div{
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px 18px;
  background:rgba(255,255,255,.5);
}

.contact-proof-list strong{
  display:block;
  color:var(--ink);
  margin-bottom:4px;
}

.contact-proof-list span{
  color:var(--muted);
  font-size:14px;
}

.contact-form-card{
  border:1px solid rgba(16,74,53,.16);
  border-radius:34px;
  padding:28px;
  background:linear-gradient(145deg,#123f30,#0b2c23);
  box-shadow:0 24px 80px rgba(7,23,20,.18);
  color:#fff;
}

.contact-form-card label{
  display:block;
  margin-bottom:16px;
}

.contact-form-card label span{
  display:block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  margin-bottom:8px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px 15px;
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
  font:inherit;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{
  color:rgba(255,255,255,.52);
}

.contact-form-card select option{
  color:#10241d;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form-card .btn{
  width:100%;
  justify-content:center;
  margin-top:4px;
}

.form-note{
  color:rgba(255,255,255,.58);
  font-size:12px;
  line-height:1.6;
  margin:14px 0 0;
}

.contact-room-strip{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

@media (max-width:1100px){
  .contact-card-grid,
  .contact-room-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact-form-copy{
    position:relative;
    top:auto;
  }
}

@media (max-width:760px){
  .contact-hero h1{
    font-size:clamp(72px,21vw,106px);
  }

  .contact-card-grid,
  .contact-room-strip,
  .form-row{
    grid-template-columns:1fr;
  }

  .contact-card{
    min-height:auto;
    border-radius:24px;
    padding:22px;
  }

  .contact-card span{
    margin-bottom:18px;
  }

  .contact-form-card{
    border-radius:26px;
    padding:20px;
  }
}


/* Palmiye Google Map Embed */
.map-embed-block{
  margin-top:28px;
}

.map-embed-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(16,74,53,.16);
  background:linear-gradient(145deg,#fffaf1,#f2eadc);
  box-shadow:0 22px 80px rgba(7,23,20,.12);
}

.map-embed-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  padding:24px 26px 20px;
}

.map-embed-top span{
  display:inline-flex;
  margin-bottom:8px;
  color:#b47a2f;
  font-size:12px;
  line-height:1;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.map-embed-top h3{
  margin:0;
  font-size:clamp(28px,3.8vw,48px);
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--ink);
}

.map-embed-top p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.map-embed-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.map-iframe-wrap{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  margin:0 14px 14px;
  min-height:420px;
  background:#d9d0c0;
  border:1px solid rgba(16,74,53,.12);
}

.map-iframe-wrap iframe{
  width:100%;
  height:460px;
  display:block;
  border:0;
  filter:saturate(.92) contrast(.98);
}

@media (max-width:760px){
  .map-embed-block{
    margin-top:20px;
  }

  .map-embed-card{
    border-radius:26px;
  }

  .map-embed-top{
    grid-template-columns:1fr;
    align-items:start;
    padding:22px 18px 16px;
  }

  .map-embed-actions{
    justify-content:flex-start;
  }

  .map-iframe-wrap{
    min-height:330px;
    margin:0 10px 10px;
    border-radius:20px;
  }

  .map-iframe-wrap iframe{
    height:350px;
  }
}


.location-layout .map-embed-block,
.location-layout-new .map-embed-block{
  grid-column:1 / -1;
}



:root{
  --green:#0d4d36;
  --green-2:#083828;
  --green-soft:#e9f1ed;
  --ink:#071714;
  --muted:#5e6a66;
  --stone:#f6f1e9;
  --stone-2:#eee6d9;
  --paper:#fffdf8;
  --line:rgba(7,23,20,.13);
  --white:#fff;
  --whatsapp:#25d366;
  --shadow:0 24px 80px rgba(7,23,20,.14);
  --radius:28px;
  --serif:Georgia, "Times New Roman", serif;
  --sans:-apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%;height:auto}
button,input,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 44px));margin-inline:auto}
.skip-link{position:absolute;left:16px;top:-60px;background:var(--green);color:#fff;padding:10px 14px;border-radius:999px;z-index:9999}
.skip-link:focus{top:16px}
.site-header{
  position:fixed;
  inset:16px 0 auto 0;
  z-index:90;
  pointer-events:none;
}
.header-shell{
  width:min(1260px,calc(100% - 32px));
  margin:auto;
  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;
  pointer-events:auto;
}
.brand{
  width:174px;
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:9px 20px;
  border-radius:999px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 48px rgba(0,0,0,.13);
}
.brand img{max-width:132px;max-height:30px;object-fit:contain}
.desktop-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:4px;
  padding:7px;
  border-radius:999px;
  background:rgba(20,17,14,.56);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter:blur(18px);
}
.desktop-nav a{
  color:#fff;
  font-weight:800;
  font-size:13px;
  padding:12px 16px;
  border-radius:999px;
  transition:.2s ease;
}
.desktop-nav a:hover{background:rgba(255,255,255,.14)}
.header-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.header-phone{
  color:#fff;
  font-weight:850;
  font-size:13px;
  padding:11px 17px;
  border-radius:999px;
  background:rgba(20,17,14,.28);
  border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(14px);
}
.menu-toggle{display:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:46px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--green);color:#fff;box-shadow:0 16px 34px rgba(13,77,54,.22)}
.btn-white{background:#fff;color:var(--ink)}
.btn-outline{border-color:rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(12px)}
.btn-whatsapp{background:var(--whatsapp);color:#062a18;box-shadow:0 16px 34px rgba(37,211,102,.22)}
.btn-dark{background:var(--ink);color:#fff}
.btn-small{min-height:42px;padding:10px 18px;font-size:13px}
.mobile-panel{
  display:none;
  pointer-events:auto;
}
.hero{
  min-height:100svh;
  position:relative;
  overflow:hidden;
  border-radius:0 0 34px 34px;
  color:#fff;
  background:#14221d;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.35) 36%, rgba(4,27,21,.13) 72%, rgba(4,27,21,.26) 100%),
    linear-gradient(0deg, rgba(4,27,21,.37) 0%, rgba(4,27,21,.05) 36%, rgba(4,27,21,.17) 100%);
  z-index:1;
}
.hero-media{
  position:absolute;
  inset:0;
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}
.hero-grid{
  position:relative;
  z-index:2;
  min-height:100svh;
  display:grid;
  grid-template-columns:minmax(0,1fr) 390px;
  gap:56px;
  align-items:center;
  padding:136px 0 76px;
}
.hero-copy{max-width:790px}
.eyebrow{
  margin:0 0 18px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1,h2,h3,p{margin-top:0}
.hero h1{
  font-family:var(--serif);
  font-size:clamp(72px,8.5vw,142px);
  line-height:.86;
  letter-spacing:-.07em;
  margin:0 0 24px;
  max-width:920px;
}
.hero-lead{
  max-width:680px;
  font-size:clamp(17px,1.35vw,22px);
  line-height:1.72;
  margin:0 0 28px;
  color:rgba(255,255,255,.88);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.keyword-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:26px;
  max-width:840px;
}
.keyword-row span{
  display:inline-flex;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  backdrop-filter:blur(10px);
}
.availability-card{
  align-self:end;
  margin-bottom:16px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(22px);
  box-shadow:0 28px 80px rgba(0,0,0,.26);
  border-radius:32px;
  overflow:hidden;
}
.av-card-top{
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,.18);
}
.av-card-top span{
  display:inline-flex;
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:950;
  margin-bottom:12px;
}
.av-card-top h2{
  font-family:var(--serif);
  font-size:44px;
  line-height:.96;
  letter-spacing:-.045em;
  margin:0 0 12px;
}
.av-card-top p{margin:0;color:rgba(255,255,255,.78)}
.av-list{
  padding:8px;
  display:grid;
  gap:8px;
}
.av-list li{
  list-style:none;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 15px;
  border-radius:20px;
  background:rgba(255,255,255,.1);
}
.av-list strong{display:block;font-size:14px}
.av-list small{display:block;color:rgba(255,255,255,.7);line-height:1.5}
.av-dot{
  flex:0 0 30px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
}
.hero-mini{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  position:absolute;
  z-index:3;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  width:min(1120px,calc(100% - 44px));
  border:1px solid rgba(255,255,255,.22);
  border-radius:28px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  background:rgba(255,255,255,.1);
}
.hero-mini div{
  padding:18px 22px;
  background:rgba(255,255,255,.08);
}
.hero-mini strong{display:block;font-size:15px}
.hero-mini span{display:block;font-size:13px;color:rgba(255,255,255,.73);margin-top:3px}
.section{
  padding:110px 0;
}
.section.alt{background:var(--stone)}
.section-head{
  display:grid;
  grid-template-columns:160px minmax(0,1fr) minmax(280px,420px);
  gap:34px;
  align-items:end;
  margin-bottom:42px;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:12px;
  font-weight:950;
  color:var(--green);
  margin:0 0 10px;
}
.side-label{
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:950;
  color:var(--green-2);
  font-size:13px;
}
.section h2{
  font-family:var(--serif);
  font-size:clamp(54px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
}
.section-head > p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}
.intent-matrix{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:22px;
  align-items:stretch;
}
.intent-main{
  min-height:470px;
  border-radius:36px;
  background:
    linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.34)),
    url("https://images.unsplash.com/photo-1584132967334-10e028bd69f7?auto=format&fit=crop&w=1500&q=84") center/cover;
  color:#fff;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.intent-main span{
  display:inline-flex;
  align-self:flex-start;
  background:#fff;
  color:var(--green);
  border-radius:999px;
  padding:8px 12px;
  font-weight:950;
  font-size:12px;
  margin-bottom:18px;
}
.intent-main h3{
  max-width:620px;
  font-family:var(--serif);
  font-size:60px;
  line-height:.94;
  letter-spacing:-.045em;
  margin:0 0 14px;
}
.intent-main p{max-width:620px;margin:0;color:rgba(255,255,255,.82)}
.intent-cards{
  display:grid;
  gap:14px;
}
.intent-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:0 14px 50px rgba(7,23,20,.06);
}
.intent-card b{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  margin-bottom:12px;
}
.intent-card h3{font-size:21px;letter-spacing:-.025em;margin:0 0 8px}
.intent-card p{margin:0;color:var(--muted);font-size:14.5px}
.spotlight{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:28px;
  align-items:center;
}
.spotlight-copy{
  background:var(--green-2);
  color:#fff;
  border-radius:38px;
  padding:48px;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.spotlight-copy .kicker{color:#fff}
.spotlight-copy h2{font-size:clamp(48px,5.4vw,86px)}
.spotlight-copy p{color:rgba(255,255,255,.78);font-size:17px}
.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:26px;
}
.feature-list span{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  font-weight:850;
  font-size:13px;
}
.spotlight-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.spotlight-gallery figure{margin:0;border-radius:34px;overflow:hidden;box-shadow:var(--shadow);background:var(--stone-2)}
.spotlight-gallery img{width:100%;height:100%;object-fit:cover}
.spotlight-gallery .tall{height:560px}
.spotlight-gallery .stack{display:grid;gap:16px}
.spotlight-gallery .stack figure{height:272px}
.room-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.room-mini{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 18px 60px rgba(7,23,20,.08);
}
.room-mini img{height:210px;width:100%;object-fit:cover}
.room-mini div{padding:20px}
.room-mini small{
  color:var(--green);
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.room-mini h3{font-size:24px;letter-spacing:-.035em;margin:8px 0}
.room-mini p{margin:0;color:var(--muted);font-size:14px}
.location-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:24px;
  align-items:stretch;
}
.location-card{
  border-radius:36px;
  background:var(--ink);
  color:#fff;
  padding:34px;
  min-height:520px;
  position:relative;
  overflow:hidden;
}
.location-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,211,102,.18), transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.08),transparent);
}
.location-card > *{position:relative}
.location-card h2{font-size:clamp(50px,5vw,78px)}
.location-card p{color:rgba(255,255,255,.76)}
.distance-grid{
  display:grid;
  gap:14px;
}
.distance-item{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:16px;
  align-items:center;
  padding:19px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 14px 46px rgba(7,23,20,.07);
}
.distance-item strong{
  height:72px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  letter-spacing:-.04em;
}
.distance-item h3{margin:0 0 4px;font-size:20px}
.distance-item p{margin:0;color:var(--muted);font-size:14.5px}
.booking-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.step{
  min-height:230px;
  border-radius:30px;
  padding:24px;
  background:var(--paper);
  border:1px solid var(--line);
}
.step span{color:var(--green);font-weight:950;letter-spacing:.12em;font-size:13px}
.step h3{font-size:22px;margin:22px 0 10px;letter-spacing:-.025em}
.step p{margin:0;color:var(--muted);font-size:14.5px}
.faq-wrap{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:40px;
  align-items:start;
}
.faq-list{display:grid;gap:12px}
.faq-item{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  text-align:left;
  cursor:pointer;
}
.faq-question svg{width:18px;flex:0 0 auto;transition:transform .2s ease}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 24px 22px;
  color:var(--muted);
}
.faq-item.active .faq-answer{max-height:240px}
.faq-item.active .faq-question svg{transform:rotate(180deg)}
.final-cta{
  padding:30px 0 110px;
}
.cta-box{
  border-radius:40px;
  background:
    linear-gradient(105deg,rgba(8,56,40,.97),rgba(13,77,54,.84)),
    url("https://images.unsplash.com/photo-1566665797739-1674de7a421a?auto=format&fit=crop&w=1700&q=84") center/cover;
  color:#fff;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:32px;
  align-items:center;
  overflow:hidden;
}
.cta-box h2{font-family:var(--serif);font-size:72px;line-height:.9;letter-spacing:-.055em;margin:0 0 18px}
.cta-box p{margin:0;color:rgba(255,255,255,.78);max-width:720px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.site-footer{
  background:#061411;
  color:#fff;
  padding:70px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr 1fr;
  gap:40px;
  margin-bottom:40px;
}
.footer-logo{
  max-width:160px;
  padding:10px 18px;
  border-radius:999px;
  background:#fff;
  margin-bottom:18px;
}
.footer-grid p{color:rgba(255,255,255,.62);margin:0}
.footer-grid h3{font-size:13px;text-transform:uppercase;letter-spacing:.16em;color:rgba(255,255,255,.92);margin:0 0 16px}
.footer-links{display:grid;gap:9px}
.footer-links a{color:rgba(255,255,255,.65);font-size:14px}
.footer-links a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.52);
  font-size:13px;
}
.sticky-contact{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  display:grid;
  gap:10px;
}
.sticky-contact a{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  box-shadow:0 16px 34px rgba(7,23,20,.18);
}
.sticky-contact svg{width:22px;height:22px}
.sticky-contact .wa{background:var(--whatsapp);color:#062a18}
.sticky-contact .tel{background:var(--green)}
.sticky-contact .map{background:var(--ink)}
[data-reveal]{opacity:0;transform:translateY(22px);transition:.7s ease}
[data-reveal].is-visible{opacity:1;transform:none}

@media (max-width:1040px){
  .header-shell{grid-template-columns:190px 1fr 190px}
  .desktop-nav a{padding:11px 12px}
  .hero-grid{grid-template-columns:1fr;gap:24px;padding-bottom:156px}
  .availability-card{max-width:520px;margin-bottom:0;align-self:start}
  .section-head{grid-template-columns:1fr;gap:16px}
  .side-label{order:-1}
  .intent-matrix,.spotlight,.location-layout,.faq-wrap{grid-template-columns:1fr}
  .room-strip,.booking-flow{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-box{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}
@media (max-width:760px){
  .container{width:min(100% - 28px,1180px)}
  .site-header{inset:12px 0 auto}
  .header-shell{
    width:calc(100% - 22px);
    grid-template-columns:1fr auto;
    gap:10px;
  }
  .brand{width:150px;min-height:40px;padding:8px 17px}
  .desktop-nav,.header-phone,.header-actions .btn{display:none}
  .menu-toggle{
    display:flex;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.26);
    background:rgba(20,17,14,.38);
    backdrop-filter:blur(14px);
    flex-direction:column;
    gap:6px;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }
  .menu-toggle span{width:18px;height:2px;background:#fff;border-radius:999px;transition:.2s ease}
  .menu-toggle.is-open span:first-child{transform:translateY(4px) rotate(45deg)}
  .menu-toggle.is-open span:last-child{transform:translateY(-4px) rotate(-45deg)}
  .mobile-panel{
    position:absolute;
    left:11px;
    right:11px;
    top:60px;
    padding:16px;
    border-radius:24px;
    background:rgba(6,20,17,.94);
    backdrop-filter:blur(18px);
    opacity:0;
    transform:translateY(-10px);
    visibility:hidden;
    transition:.2s ease;
  }
  .mobile-panel.is-open{display:block;opacity:1;transform:none;visibility:visible}
  .mobile-panel nav{display:grid;gap:2px}
  .mobile-panel nav a{color:#fff;font-weight:850;padding:12px;border-radius:16px}
  .mobile-panel nav a:hover{background:rgba(255,255,255,.08)}
  .mobile-actions{display:grid;gap:10px;margin-top:10px}
  .hero{
    min-height:auto;
    border-radius:0 0 28px 28px;
  }
  .hero::before{
    background:
      linear-gradient(90deg, rgba(4,27,21,.41), rgba(4,27,21,.23)),
      linear-gradient(0deg, rgba(4,27,21,.41) 0%, rgba(4,27,21,.08) 62%, rgba(4,27,21,.21) 100%);
  }
  .hero-media{background-position:58% center}
  .hero-grid{
    min-height:auto;
    display:block;
    padding:126px 0 22px;
  }
  .hero h1{
    font-size:clamp(60px,18vw,86px);
    line-height:.86;
    letter-spacing:-.065em;
    max-width:96%;
  }
  .hero-lead{font-size:16px;line-height:1.68}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
  .hero-actions .btn:first-child{grid-column:1/-1}
  .hero-actions .btn,.hero-actions a{min-height:50px;text-align:center}
  .keyword-row{margin-top:18px;gap:7px}
  .keyword-row span{font-size:11px;padding:7px 10px}
  .availability-card{margin-top:24px;border-radius:26px}
  .av-card-top h2{font-size:38px}
  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:100%;
    grid-template-columns:1fr;
    margin-top:18px;
    border-radius:24px;
  }
  .hero-mini div{padding:16px 18px}
  .section{padding:78px 0}
  .section h2{font-size:clamp(48px,16vw,68px)}
  .section-head{margin-bottom:26px}
  .intent-matrix{gap:14px}
  .intent-main{min-height:380px;border-radius:28px;padding:24px}
  .intent-main h3{font-size:44px}
  .intent-card{border-radius:24px;padding:19px}
  .spotlight-copy{border-radius:30px;padding:28px;min-height:auto}
  .feature-list{grid-template-columns:1fr}
  .spotlight-gallery{grid-template-columns:1fr}
  .spotlight-gallery .tall,.spotlight-gallery .stack figure{height:270px}
  .room-strip,.booking-flow{grid-template-columns:1fr}
  .distance-item{grid-template-columns:74px 1fr;padding:14px;border-radius:22px}
  .distance-item strong{height:60px;font-size:22px;border-radius:18px}
  .cta-box{padding:30px;border-radius:30px}
  .cta-box h2{font-size:48px}
  .cta-actions{display:grid}
  .footer-grid{grid-template-columns:1fr;gap:30px}
  .footer-bottom{display:grid}
  .sticky-contact{right:14px;bottom:14px}
  .sticky-contact a{width:50px;height:50px}
}
@media (max-width:390px){
  .hero h1{font-size:56px}
  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn:first-child{grid-column:auto}
}


/* Pass 02 — hero spacing, desktop heading rhythm, room gallery */
@media (min-width:761px){
  .hero{
    min-height:auto;
    padding-bottom:22px;
  }

  .hero-grid{
    min-height:calc(100svh - 132px);
    padding:128px 0 26px;
    align-items:center;
  }

  .hero h1{
    font-size:clamp(72px,7.25vw,118px);
    max-width:840px;
  }

  .hero-lead{
    max-width:720px;
  }

  .availability-card{
    margin-bottom:0;
  }

  .hero-mini{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(1060px,calc(100% - 44px));
    margin:0 auto 0;
  }

  .section-head{
    grid-template-columns:150px minmax(0,1.35fr) minmax(320px,.85fr);
    align-items:center;
  }

  .section-head h2{
    font-size:clamp(54px,5.1vw,84px);
    max-width:780px;
  }

  .gallery-head h2{
    max-width:820px;
  }
}

.gallery-section{
  background:
    radial-gradient(circle at 22% 8%, rgba(13,77,54,.07), transparent 30%),
    var(--paper);
}

.gallery-showcase{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  gap:18px;
  align-items:stretch;
}

.gallery-hero-photo{
  position:relative;
  min-height:680px;
  margin:0;
  border-radius:38px;
  overflow:hidden;
  background:var(--stone-2);
  box-shadow:var(--shadow);
}

.gallery-hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 46%, rgba(4,27,21,.82));
}

.gallery-hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-hero-photo figcaption{
  position:absolute;
  left:30px;
  right:30px;
  bottom:30px;
  z-index:2;
  color:#fff;
}

.gallery-hero-photo figcaption span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  color:var(--green);
  font-size:12px;
  font-weight:950;
  margin-bottom:14px;
}

.gallery-hero-photo figcaption strong{
  display:block;
  max-width:720px;
  font-family:var(--serif);
  font-size:clamp(42px,4.4vw,72px);
  line-height:.92;
  letter-spacing:-.055em;
}

.gallery-side{
  display:grid;
  gap:18px;
}

.gallery-note{
  border:1px solid var(--line);
  border-radius:34px;
  background:var(--green-2);
  color:#fff;
  padding:34px;
  min-height:306px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 20px 70px rgba(7,23,20,.12);
}

.gallery-note .kicker{
  color:#fff;
}

.gallery-note h3{
  font-family:var(--serif);
  font-size:52px;
  line-height:.94;
  letter-spacing:-.05em;
  margin:0 0 12px;
}

.gallery-note p{
  margin:0 0 18px;
  color:rgba(255,255,255,.76);
}

.gallery-ctas{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-mini-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-mini-grid figure{
  position:relative;
  margin:0;
  min-height:178px;
  border-radius:26px;
  overflow:hidden;
  background:var(--stone-2);
  border:1px solid var(--line);
  box-shadow:0 16px 55px rgba(7,23,20,.08);
}

.gallery-mini-grid figure::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 44%, rgba(4,27,21,.72));
}

.gallery-mini-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-mini-grid figcaption{
  position:absolute;
  z-index:2;
  left:16px;
  right:16px;
  bottom:14px;
  color:#fff;
  font-weight:950;
  font-size:13px;
}

@media (max-width:1040px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-hero-photo{
    min-height:520px;
  }
}

@media (max-width:760px){
  .desktop-nav a[href="#oda-galerisi"]{
    display:none;
  }

  .gallery-showcase{
    gap:14px;
  }

  .gallery-hero-photo{
    min-height:420px;
    border-radius:30px;
  }

  .gallery-hero-photo figcaption{
    left:20px;
    right:20px;
    bottom:20px;
  }

  .gallery-hero-photo figcaption strong{
    font-size:42px;
  }

  .gallery-note{
    border-radius:28px;
    padding:24px;
  }

  .gallery-note h3{
    font-size:42px;
  }

  .gallery-ctas{
    display:grid;
  }

  .gallery-mini-grid{
    gap:12px;
  }

  .gallery-mini-grid figure{
    min-height:150px;
    border-radius:22px;
  }
}

@media (max-width:460px){
  .gallery-mini-grid{
    grid-template-columns:1fr;
  }

  .gallery-mini-grid figure{
    min-height:210px;
  }
}


/* Pass 03 — compact room gallery with thumbnails + mobile ordering */
.room-gallery-section{
  background:var(--paper);
  padding:86px 0 54px;
}

.room-gallery-shell{
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 15% 0%, rgba(13,77,54,.07), transparent 28%),
    var(--paper);
  box-shadow:0 22px 80px rgba(7,23,20,.08);
  padding:24px;
}

.room-gallery-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,470px);
  gap:28px;
  align-items:end;
  padding:10px 10px 24px;
}

.room-gallery-head h2{
  font-family:var(--serif);
  font-size:clamp(42px,4.2vw,66px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:0;
  max-width:720px;
}

.room-gallery-head p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.room-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:18px;
  align-items:stretch;
}

.gallery-stage{
  position:relative;
  min-height:550px;
  border-radius:30px;
  overflow:hidden;
  background:var(--stone-2);
}

.gallery-main{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  min-height:550px;
  padding:0;
  border:0;
  background:transparent;
  cursor:zoom-in;
  overflow:hidden;
}

.gallery-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, transparent 54%, rgba(4,27,21,.42));
  pointer-events:none;
}

.gallery-main img{
  width:100%;
  height:100%;
  min-height:550px;
  object-fit:cover;
}

.gallery-counter,
.gallery-expand{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  backdrop-filter:blur(14px);
  font-weight:950;
}

.gallery-counter{
  left:18px;
  top:18px;
  background:rgba(255,255,255,.9);
  color:var(--green);
  padding:8px 12px;
  font-size:12px;
}

.gallery-expand{
  right:18px;
  bottom:18px;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  padding:10px 14px;
  font-size:13px;
}

.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(6,20,17,.52);
  color:#fff;
  backdrop-filter:blur(14px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.gallery-arrow svg{width:22px;height:22px}
.gallery-prev{left:16px}
.gallery-next{right:16px}

.gallery-info-card{
  border-radius:30px;
  background:var(--green-2);
  color:#fff;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-info-card span{
  display:inline-flex;
  align-self:flex-start;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  padding:8px 12px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:950;
  font-size:11px;
}

.gallery-info-card h3{
  font-family:var(--serif);
  font-size:58px;
  line-height:.9;
  letter-spacing:-.055em;
  margin:22px 0 14px;
}

.gallery-info-card p{
  color:rgba(255,255,255,.74);
  margin:0 0 24px;
}

.gallery-actions{
  display:grid;
  gap:10px;
}

.gallery-actions .btn{
  width:100%;
}

.gallery-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 4px 4px;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
}

.gallery-thumb{
  flex:0 0 148px;
  height:92px;
  border:2px solid transparent;
  border-radius:18px;
  overflow:hidden;
  padding:0;
  background:var(--stone-2);
  cursor:pointer;
  opacity:.72;
  transition:.18s ease;
  scroll-snap-align:start;
}

.gallery-thumb.is-active{
  opacity:1;
  border-color:var(--green);
  box-shadow:0 12px 30px rgba(13,77,54,.16);
}

.gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-amenities{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  padding:16px 4px 0;
}

.gallery-amenities span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  border:1px solid rgba(13,77,54,.18);
  background:var(--green-soft);
  color:var(--green-2);
  border-radius:999px;
  padding:8px 13px;
  font-weight:900;
  font-size:13px;
}

.mobile-availability{
  display:none;
}

.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(4,15,13,.9);
  backdrop-filter:blur(10px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.gallery-lightbox.is-open{
  display:flex;
}

.gallery-lightbox img{
  max-width:min(1120px,calc(100vw - 110px));
  max-height:calc(100svh - 100px);
  border-radius:24px;
  object-fit:contain;
  box-shadow:0 30px 90px rgba(0,0,0,.45);
}

.lightbox-close{
  position:absolute;
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

.lightbox-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.12);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.lightbox-arrow svg{width:26px;height:26px}
.lightbox-prev{left:22px}
.lightbox-next{right:22px}

@media (min-width:761px){
  .mobile-availability{
    display:none !important;
  }
}

@media (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-info-card{
    display:block;
  }

  .gallery-actions{
    display:flex;
    flex-wrap:wrap;
  }
}

@media (max-width:760px){
  .hero .availability-card{
    display:none;
  }

  .room-gallery-section{
    padding:24px 0 58px;
  }

  .room-gallery-shell{
    padding:14px;
    border-radius:28px;
  }

  .room-gallery-head{
    grid-template-columns:1fr;
    gap:12px;
    padding:8px 6px 16px;
  }

  .room-gallery-head h2{
    font-size:40px;
    line-height:.92;
    max-width:92%;
  }

  .room-gallery-head p{
    font-size:14px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:390px;
  }

  .gallery-stage{
    border-radius:24px;
  }

  .gallery-info-card{
    border-radius:24px;
    padding:22px;
  }

  .gallery-info-card h3{
    font-size:44px;
  }

  .gallery-actions{
    display:grid;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:78px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
  }

  .gallery-amenities span{
    min-height:34px;
    font-size:12px;
    padding:7px 11px;
  }

  .mobile-availability{
    display:block;
    margin:18px 0 0;
    color:#fff;
    background:var(--green-2);
    border-color:rgba(255,255,255,.14);
  }

  .mobile-availability .av-list li{
    background:rgba(255,255,255,.08);
  }

  .mobile-availability .av-card-top{
    border-bottom-color:rgba(255,255,255,.12);
  }

  .gallery-lightbox{
    padding:18px;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
    max-height:calc(100svh - 150px);
    border-radius:18px;
  }

  .lightbox-arrow{
    top:auto;
    bottom:26px;
    width:50px;
    height:50px;
  }

  .lightbox-prev{left:calc(50% - 62px)}
  .lightbox-next{right:calc(50% - 62px)}
}

@media (max-width:420px){
  .room-gallery-head h2{
    font-size:36px;
  }

  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:330px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:10px}
  .gallery-next{right:10px}

  .gallery-expand{
    display:none;
  }
}


/* Pass 04 — desktop compact 16:9 room gallery */
@media (min-width:761px){
  .room-gallery-section{
    padding:64px 0 42px;
  }

  .room-gallery-shell{
    padding:18px;
    border-radius:32px;
  }

  .room-gallery-head{
    grid-template-columns:minmax(0,1fr) minmax(320px,430px);
    gap:24px;
    padding:6px 6px 18px;
  }

  .room-gallery-head h2{
    font-size:clamp(34px,3.2vw,52px);
    line-height:.96;
    letter-spacing:-.045em;
    max-width:620px;
  }

  .room-gallery-head p{
    font-size:14px;
    line-height:1.72;
  }

  .room-gallery-grid{
    grid-template-columns:minmax(0,1fr) 292px;
    gap:14px;
    align-items:stretch;
  }

  .gallery-stage{
    min-height:0;
    aspect-ratio:16 / 9;
    height:auto;
    border-radius:26px;
  }

  .gallery-main{
    min-height:0;
    height:100%;
  }

  .gallery-main img{
    min-height:0;
    height:100%;
    aspect-ratio:16 / 9;
  }

  .gallery-info-card{
    border-radius:26px;
    padding:24px;
    min-height:0;
  }

  .gallery-info-card span{
    padding:7px 10px;
    font-size:10px;
  }

  .gallery-info-card h3{
    font-size:42px;
    line-height:.92;
    margin:18px 0 12px;
  }

  .gallery-info-card p{
    font-size:13.5px;
    line-height:1.68;
    margin-bottom:18px;
  }

  .gallery-actions .btn{
    min-height:42px;
    padding:10px 14px;
    font-size:13px;
  }

  .gallery-arrow{
    width:42px;
    height:42px;
  }

  .gallery-prev{left:12px}
  .gallery-next{right:12px}

  .gallery-counter{
    left:14px;
    top:14px;
    padding:7px 10px;
    font-size:11px;
  }

  .gallery-expand{
    right:14px;
    bottom:14px;
    padding:8px 12px;
    font-size:12px;
  }

  .gallery-thumbs{
    gap:8px;
    padding:10px 2px 2px;
  }

  .gallery-thumb{
    flex-basis:118px;
    height:66px;
    border-radius:14px;
  }

  .gallery-amenities{
    gap:7px;
    padding:12px 2px 0;
  }

  .gallery-amenities span{
    min-height:32px;
    padding:6px 11px;
    font-size:12px;
  }
}

/* Keep tablet gallery from becoming too tall */
@media (min-width:761px) and (max-width:1040px){
  .room-gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-stage{
    max-height:none;
  }

  .gallery-info-card{
    display:grid;
    grid-template-columns:1fr auto;
    gap:20px;
    align-items:end;
  }

  .gallery-info-card h3{
    margin:12px 0 8px;
  }

  .gallery-actions{
    min-width:280px;
  }
}


/* Pass 05 — mobile: thumbnail strip before CTA info card */
@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .room-gallery-grid{
    display:contents;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
    padding:12px 2px 8px;
  }

  .gallery-info-card{
    order:4;
  }

  .gallery-amenities{
    order:5;
  }

  .mobile-availability{
    order:6;
  }
}


/* Pass 06 — compact content, minimal amenities, reservation card */
:root{
  --soft-line:#e6d7c4;
  --soft-text:#738077;
  --gold-soft:#c6842d;
}

@media (min-width:761px){
  .section{
    padding:74px 0;
  }

  .section.alt{
    padding:74px 0;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2,
  .section h2{
    font-size:clamp(42px,4.3vw,68px);
    line-height:.96;
  }

  .intent-main{
    min-height:390px;
    border-radius:30px;
    padding:28px;
  }

  .intent-main h3{
    font-size:48px;
  }

  .intent-card{
    border-radius:24px;
    padding:18px;
  }

  .spotlight-copy{
    min-height:480px;
    border-radius:32px;
    padding:38px;
  }

  .spotlight-copy h2{
    font-size:clamp(42px,4.4vw,66px);
  }

  .spotlight-gallery .tall{
    height:480px;
  }

  .spotlight-gallery .stack figure{
    height:232px;
  }

  .room-mini img{
    height:172px;
  }

  .location-card{
    min-height:430px;
    border-radius:32px;
    padding:30px;
  }

  .booking-flow .step{
    min-height:190px;
    border-radius:26px;
    padding:20px;
  }

  .cta-box{
    padding:42px;
  }

  .cta-box h2{
    font-size:56px;
  }
}

.gallery-info-card.reservation-card{
  background:#fffdf8;
  color:var(--ink);
  border:1px solid var(--soft-line);
  box-shadow:0 24px 70px rgba(7,23,20,.08);
  padding:26px 28px;
}

.reservation-card .reservation-badge{
  display:inline-flex;
  align-self:flex-start;
  gap:7px;
  background:#eaf8ef;
  color:#24965a;
  border:0;
  border-radius:999px;
  padding:7px 13px;
  font-size:12px;
  letter-spacing:0;
  text-transform:none;
  font-weight:850;
}

.reservation-card .reservation-badge::before{
  content:"↯";
  color:#ff8a00;
  font-weight:950;
}

.reservation-card h3{
  font-family:var(--sans);
  font-size:27px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:18px 0 8px;
  color:var(--ink);
}

.reservation-card p{
  margin:0 0 18px;
  color:var(--soft-text);
  font-size:15px;
  line-height:1.65;
}

.reservation-table{
  border:1px solid var(--soft-line);
  border-radius:24px;
  overflow:hidden;
  margin:12px 0 18px;
  background:#fffdfa;
}

.reservation-table div{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--soft-line);
}

.reservation-table div:last-child{
  border-bottom:0;
}

.reservation-table small{
  color:#7f8a96;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:850;
}

.reservation-table strong{
  color:var(--ink);
  font-size:15px;
  text-align:right;
}

.reservation-actions{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}

.reservation-phone,
.reservation-whatsapp{
  min-height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:950;
}

.reservation-phone{
  border:1px solid var(--soft-line);
  color:var(--ink);
  background:#fffdfa;
}

.reservation-phone svg,
.reservation-whatsapp svg{
  width:18px;
  height:18px;
}

.reservation-whatsapp{
  background:var(--whatsapp);
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.reservation-notes{
  display:grid;
  gap:9px;
  margin:0;
  padding:16px 0 0;
  border-top:1px solid var(--soft-line);
}

.reservation-notes li{
  list-style:none;
  color:#718078;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}

.reservation-notes li::before{
  content:"✓";
  color:var(--gold-soft);
  font-weight:950;
}

.gallery-amenities{
  gap:8px;
}

.gallery-amenities span{
  background:transparent;
  color:var(--green-2);
  border:1px solid rgba(13,77,54,.18);
  box-shadow:none;
  min-height:30px;
  padding:5px 10px;
  font-size:11px;
  font-weight:850;
}

.gallery-amenities span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--green);
  margin-right:7px;
}

@media (max-width:760px){
  .room-gallery-shell{
    display:flex;
    flex-direction:column;
  }

  .room-gallery-head{
    order:1;
  }

  .gallery-stage{
    order:2;
  }

  .gallery-thumbs{
    order:3;
  }

  .gallery-amenities{
    order:4;
    padding:8px 2px 14px;
  }

  .gallery-info-card{
    order:5;
  }

  .mobile-availability{
    order:6;
  }

  .gallery-info-card.reservation-card{
    border-radius:26px;
    padding:24px;
  }

  .reservation-card h3{
    font-size:24px;
  }

  .reservation-table div{
    padding:13px 15px;
  }

  .reservation-phone,
  .reservation-whatsapp{
    min-height:49px;
  }

  .section{
    padding:56px 0;
  }

  .section.alt{
    padding:56px 0;
  }

  .section-head{
    margin-bottom:20px;
  }

  .section h2,
  .section-head h2{
    font-size:clamp(38px,12vw,54px);
    line-height:.96;
  }

  .intent-main{
    min-height:310px;
  }

  .intent-main h3{
    font-size:38px;
  }

  .intent-card{
    padding:17px;
  }

  .spotlight-copy{
    padding:24px;
  }

  .booking-flow .step{
    min-height:auto;
  }

  .cta-box{
    padding:26px;
  }

  .cta-box h2{
    font-size:42px;
  }
}


/* Pass 07 — restore Palmiye green reservation card, keep content only */
.gallery-info-card.reservation-card{
  background:var(--green-2) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
  padding:24px !important;
}

.gallery-info-card.reservation-card span{
  display:inline-flex !important;
  align-self:flex-start !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  color:#fff !important;
  text-transform:uppercase !important;
  letter-spacing:.13em !important;
  font-weight:950 !important;
  font-size:11px !important;
}

.gallery-info-card.reservation-card span::before{
  content:none !important;
}

.gallery-info-card.reservation-card h3{
  font-family:var(--serif) !important;
  font-size:46px !important;
  line-height:.9 !important;
  letter-spacing:-.055em !important;
  margin:20px 0 14px !important;
  color:#fff !important;
}

.gallery-info-card.reservation-card p{
  color:rgba(255,255,255,.76) !important;
  margin:0 0 22px !important;
  font-size:14px !important;
  line-height:1.68 !important;
}

.gallery-info-card.reservation-card .gallery-actions{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

.gallery-info-card.reservation-card .gallery-actions .btn{
  width:100%;
  min-height:44px;
  padding:11px 14px;
  font-size:13px;
}

.gallery-info-card.reservation-card .gallery-actions .btn-outline{
  border-color:rgba(255,255,255,.22);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.gallery-reservation-mini{
  display:grid;
  gap:1px;
  margin-top:16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
}

.gallery-reservation-mini div{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.055);
}

.gallery-reservation-mini small{
  color:rgba(255,255,255,.58);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:10px;
  font-weight:900;
}

.gallery-reservation-mini strong{
  color:#fff;
  font-size:13px;
  text-align:right;
}

.reservation-table,
.reservation-actions,
.reservation-notes,
.reservation-phone,
.reservation-whatsapp{
  all:unset;
}

@media (min-width:761px){
  .gallery-info-card.reservation-card{
    padding:24px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:44px !important;
  }

  .gallery-reservation-mini div{
    padding:9px 11px;
  }
}

@media (max-width:760px){
  .gallery-info-card.reservation-card{
    order:5;
    border-radius:24px !important;
    padding:22px !important;
  }

  .gallery-info-card.reservation-card h3{
    font-size:42px !important;
    margin:18px 0 12px !important;
  }

  .gallery-info-card.reservation-card .gallery-actions .btn{
    min-height:48px;
  }

  .gallery-reservation-mini{
    margin-top:14px;
  }
}


/* Pass 08 — compact room-fit section + homepage-like smart header */
@media (max-width:760px){
  .mobile-availability{
    display:none !important;
  }
}

.site-header{
  transition:transform .45s cubic-bezier(.2,.7,.1,1), background .35s cubic-bezier(.2,.7,.1,1), color .35s cubic-bezier(.2,.7,.1,1), box-shadow .35s cubic-bezier(.2,.7,.1,1);
}

.site-header.is-hidden{
  transform:translateY(-115%);
}

.site-header.is-scrolled,
.site-header.is-open{
  inset:0 0 auto 0;
  background:rgba(255,253,248,.86);
  border-bottom:1px solid rgba(7,23,20,.08);
  box-shadow:0 10px 36px rgba(7,23,20,.07);
  backdrop-filter:blur(18px);
  padding:10px 0;
}

.site-header.is-scrolled .header-shell,
.site-header.is-open .header-shell{
  width:min(1280px,calc(100% - 34px));
}

.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav{
  background:rgba(7,23,20,.05);
  border-color:rgba(7,23,20,.10);
}

.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a{
  color:var(--ink);
}

.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone{
  color:var(--ink);
  background:rgba(7,23,20,.045);
  border-color:rgba(7,23,20,.12);
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand{
  box-shadow:none;
}

.room-fit-section{
  padding:64px 0;
}

.room-fit-card{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:0;
  min-height:310px;
  border:1px solid var(--line);
  border-radius:34px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:0 22px 70px rgba(7,23,20,.07);
}

.room-fit-intro{
  background:linear-gradient(135deg,var(--green-2),#10221d);
  color:#fff;
  padding:34px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.room-fit-intro .kicker{
  color:#d5ba84;
  margin-bottom:16px;
  letter-spacing:.2em;
}

.room-fit-intro h2{
  font-family:var(--sans);
  font-size:28px;
  line-height:1.1;
  letter-spacing:-.035em;
  margin:0 0 12px;
}

.room-fit-intro p{
  color:rgba(255,255,255,.76);
  margin:0;
  font-size:15px;
  line-height:1.72;
}

.room-fit-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.room-fit-actions .btn{
  min-height:42px;
  padding:10px 15px;
  font-size:13px;
}

.room-fit-actions .btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.08);
}

.room-fit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  padding:24px;
  align-items:stretch;
}

.room-fit-item{
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px 20px;
  background:rgba(255,253,248,.72);
}

.room-fit-item span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:22px;
}

.room-fit-item h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.22;
  letter-spacing:-.025em;
}

.room-fit-item p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

@media (max-width:1120px){
  .room-fit-card{
    grid-template-columns:1fr;
  }

  .room-fit-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:760px){
  .site-header.is-scrolled,
  .site-header.is-open{
    padding:8px 0;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.is-open .menu-toggle{
    border-color:rgba(7,23,20,.12);
    background:rgba(7,23,20,.055);
    color:var(--ink);
  }

  .room-fit-section{
    padding:48px 0;
  }

  .room-fit-card{
    border-radius:28px;
    min-height:0;
  }

  .room-fit-intro{
    padding:28px 24px;
  }

  .room-fit-intro h2{
    font-size:26px;
  }

  .room-fit-actions{
    display:grid;
  }

  .room-fit-grid{
    grid-template-columns:1fr;
    padding:14px;
    gap:10px;
  }

  .room-fit-item{
    border-radius:20px;
    padding:18px;
  }

  .room-fit-item span{
    margin-bottom:12px;
  }
}


/* Pass 09 — popular searches, natural copy spacing, CTA labels, footer brand fix */
.btn-whatsapp,
.reservation-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (max-width:760px){
  #ozellikler.section{
    padding-top:34px !important;
  }

  .room-gallery-section{
    padding-bottom:34px !important;
  }
}

.popular-searches{
  padding:28px 0 42px;
  background:var(--paper);
}

.popular-searches-box{
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px 30px;
  background:rgba(255,253,248,.76);
}

.popular-searches h2{
  margin:0 0 16px;
  font-family:var(--sans);
  font-size:18px;
  line-height:1.2;
  letter-spacing:-.02em;
}

.popular-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.popular-chip-grid a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border:1px solid #dfcbb5;
  border-radius:999px;
  padding:9px 18px;
  background:#fffdf8;
  color:var(--ink);
  font-size:14px;
  font-weight:750;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.popular-chip-grid a:hover{
  transform:translateY(-1px);
  border-color:var(--green);
  background:var(--green-soft);
}

.footer-brand-wordmark{
  width:170px;
  min-height:54px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  padding:10px 0;
  margin-bottom:16px;
  color:#fff;
}

.footer-brand-wordmark span{
  font-family:var(--serif);
  font-size:34px;
  line-height:.85;
  letter-spacing:-.045em;
}

.footer-brand-wordmark small{
  margin-top:4px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.66);
}

.footer-contact-links span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.header-phone{
  white-space:nowrap;
}

@media (max-width:760px){
  .popular-searches{
    padding:18px 0 34px;
  }

  .popular-searches-box{
    border-radius:24px;
    padding:22px 18px;
  }

  .popular-chip-grid{
    gap:8px;
  }

  .popular-chip-grid a{
    min-height:38px;
    padding:8px 13px;
    font-size:13px;
  }
}


/* Pass 10 — mobile gallery images locked to horizontal 16:9 */
@media (max-width:760px){
  .gallery-stage{
    width:100%;
    aspect-ratio:16 / 9 !important;
    min-height:0 !important;
    height:auto !important;
    max-height:none !important;
  }

  .gallery-main{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-main img{
    width:100%;
    height:100% !important;
    min-height:0 !important;
    aspect-ratio:16 / 9 !important;
    object-fit:cover !important;
    object-position:center center;
  }

  .gallery-thumbs{
    align-items:center;
  }

  .gallery-thumb{
    flex:0 0 112px !important;
    width:112px !important;
    height:63px !important;
    aspect-ratio:16 / 9 !important;
  }

  .gallery-thumb img{
    width:100%;
    height:100%;
    aspect-ratio:16 / 9;
    object-fit:cover;
    object-position:center center;
  }
}

@media (max-width:420px){
  .gallery-stage,
  .gallery-main,
  .gallery-main img{
    min-height:0 !important;
    height:auto;
    aspect-ratio:16 / 9 !important;
  }
}


/* Jakuzili Oda room landing */
.room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.room-feature-section{
  background:#fbf7ef;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.feature-card{
  min-height:220px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
  background:rgba(255,253,248,.76);
  box-shadow:0 12px 42px rgba(7,23,20,.055);
}

.feature-card span{
  display:inline-flex;
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.12em;
  margin-bottom:28px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.035em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.68;
}

.related-rooms{
  background:#fbf7ef;
}

.btn-whatsapp,
.gallery-info-card.reservation-card .btn-whatsapp{
  color:#fff !important;
}

@media (min-width:761px){
  .room-hero h1{
    max-width:780px;
  }

  #ozellikler.section{
    padding-top:74px;
  }
}

@media (max-width:1100px){
  .feature-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }

  #ozellikler.section{
    padding-top:48px;
  }

  .feature-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .feature-card{
    min-height:auto;
    border-radius:22px;
    padding:20px;
  }

  .feature-card span{
    margin-bottom:14px;
  }
}


/* Palm Suite room landing */
.palm-room-hero .hero-media,
.room-hero.palm-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.palm-room-hero h1{
  max-width:780px;
}

@media (max-width:760px){
  .palm-room-hero h1{
    font-size:clamp(72px,21vw,104px);
  }
}


/* Comfort Suite room landing */
.comfort-room-hero .hero-media,
.room-hero.comfort-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.comfort-room-hero h1{
  max-width:860px;
}

@media (max-width:760px){
  .comfort-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Signature Suite room landing */
.signature-room-hero .hero-media,
.room-hero.signature-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.signature-room-hero h1{
  max-width:900px;
}

@media (max-width:760px){
  .signature-room-hero h1{
    font-size:clamp(66px,18vw,96px);
  }
}


/* Classic Suite room landing */
.classic-room-hero .hero-media,
.room-hero.classic-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.classic-room-hero h1{
  max-width:820px;
}

@media (max-width:760px){
  .classic-room-hero h1{
    font-size:clamp(70px,20vw,102px);
  }
}


/* Twin Suite room landing */
.twin-room-hero .hero-media,
.room-hero.twin-room-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.twin-room-hero h1{
  max-width:760px;
}

@media (max-width:760px){
  .twin-room-hero h1{
    font-size:clamp(76px,21vw,106px);
  }
}


/* İletişim page */
.contact-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.contact-hero h1{
  max-width:760px;
}

.contact-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.contact-card{
  min-height:285px;
  border:1px solid var(--line);
  border-radius:30px;
  padding:26px;
  background:rgba(255,253,248,.78);
  box-shadow:0 14px 48px rgba(7,23,20,.06);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.contact-card span{
  color:#b47a2f;
  font-weight:950;
  font-size:12px;
  letter-spacing:.14em;
  margin-bottom:34px;
}

.contact-card h3{
  margin:0 0 10px;
  font-size:26px;
  line-height:1.08;
  letter-spacing:-.04em;
}

.contact-card p{
  margin:0 0 24px;
  color:var(--muted);
  line-height:1.7;
}

.contact-card .btn{
  margin-top:auto;
}

.contact-layout{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:32px;
  align-items:start;
}

.contact-form-copy{
  position:sticky;
  top:110px;
}

.contact-form-copy h2{
  margin:0 0 18px;
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  letter-spacing:-.065em;
}

.contact-form-copy p{
  color:var(--muted);
  line-height:1.75;
  margin:0 0 22px;
}

.contact-proof-list{
  display:grid;
  gap:12px;
  margin-top:26px;
}

.contact-proof-list div{
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px 18px;
  background:rgba(255,255,255,.5);
}

.contact-proof-list strong{
  display:block;
  color:var(--ink);
  margin-bottom:4px;
}

.contact-proof-list span{
  color:var(--muted);
  font-size:14px;
}

.contact-form-card{
  border:1px solid rgba(16,74,53,.16);
  border-radius:34px;
  padding:28px;
  background:linear-gradient(145deg,#123f30,#0b2c23);
  box-shadow:0 24px 80px rgba(7,23,20,.18);
  color:#fff;
}

.contact-form-card label{
  display:block;
  margin-bottom:16px;
}

.contact-form-card label span{
  display:block;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
  margin-bottom:8px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:14px 15px;
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
  font:inherit;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder{
  color:rgba(255,255,255,.52);
}

.contact-form-card select option{
  color:#10241d;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form-card .btn{
  width:100%;
  justify-content:center;
  margin-top:4px;
}

.form-note{
  color:rgba(255,255,255,.58);
  font-size:12px;
  line-height:1.6;
  margin:14px 0 0;
}

.contact-room-strip{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

@media (max-width:1100px){
  .contact-card-grid,
  .contact-room-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .contact-layout{
    grid-template-columns:1fr;
  }

  .contact-form-copy{
    position:relative;
    top:auto;
  }
}

@media (max-width:760px){
  .contact-hero h1{
    font-size:clamp(72px,21vw,106px);
  }

  .contact-card-grid,
  .contact-room-strip,
  .form-row{
    grid-template-columns:1fr;
  }

  .contact-card{
    min-height:auto;
    border-radius:24px;
    padding:22px;
  }

  .contact-card span{
    margin-bottom:18px;
  }

  .contact-form-card{
    border-radius:26px;
    padding:20px;
  }
}


/* Palmiye Google Map Embed */
.map-embed-block{
  margin-top:28px;
}

.map-embed-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(16,74,53,.16);
  background:linear-gradient(145deg,#fffaf1,#f2eadc);
  box-shadow:0 22px 80px rgba(7,23,20,.12);
}

.map-embed-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  padding:24px 26px 20px;
}

.map-embed-top span{
  display:inline-flex;
  margin-bottom:8px;
  color:#b47a2f;
  font-size:12px;
  line-height:1;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.map-embed-top h3{
  margin:0;
  font-size:clamp(28px,3.8vw,48px);
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--ink);
}

.map-embed-top p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.map-embed-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.map-iframe-wrap{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  margin:0 14px 14px;
  min-height:420px;
  background:#d9d0c0;
  border:1px solid rgba(16,74,53,.12);
}

.map-iframe-wrap iframe{
  width:100%;
  height:460px;
  display:block;
  border:0;
  filter:saturate(.92) contrast(.98);
}

@media (max-width:760px){
  .map-embed-block{
    margin-top:20px;
  }

  .map-embed-card{
    border-radius:26px;
  }

  .map-embed-top{
    grid-template-columns:1fr;
    align-items:start;
    padding:22px 18px 16px;
  }

  .map-embed-actions{
    justify-content:flex-start;
  }

  .map-iframe-wrap{
    min-height:330px;
    margin:0 10px 10px;
    border-radius:20px;
  }

  .map-iframe-wrap iframe{
    height:350px;
  }
}


.location-layout .map-embed-block,
.location-layout-new .map-embed-block{
  grid-column:1 / -1;
}


/* Legal pages */
.legal-hero .hero-media{
  background-image:url("/odalarimg/palm-suite/3.png");
  background-image:image-set(url("/odalarimg/palm-suite/3.webp") type("image/webp"), url("/odalarimg/palm-suite/3.png") type("image/png"));
  background-position:center;
}

.legal-hero h1{
  max-width:980px;
}

.legal-shell{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.legal-sidebar{
  position:sticky;
  top:112px;
  border:1px solid var(--line);
  border-radius:30px;
  padding:22px;
  background:rgba(255,253,248,.78);
  box-shadow:0 16px 52px rgba(7,23,20,.06);
}

.legal-sidebar small{
  display:block;
  color:#b47a2f;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.legal-sidebar h2{
  margin:0 0 12px;
  font-size:28px;
  line-height:1;
  letter-spacing:-.05em;
}

.legal-sidebar p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.legal-nav{
  display:grid;
  gap:8px;
}

.legal-nav a{
  color:var(--ink);
  text-decoration:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.46);
  border-radius:16px;
  padding:11px 12px;
  font-size:14px;
  font-weight:800;
}

.legal-nav a:hover{
  border-color:rgba(15,80,57,.28);
  background:#fff;
}

.legal-doc{
  border:1px solid var(--line);
  border-radius:36px;
  padding:34px;
  background:rgba(255,253,248,.82);
  box-shadow:0 18px 66px rgba(7,23,20,.07);
}

.legal-alert{
  border:1px solid rgba(180,122,47,.22);
  background:#fff8e8;
  color:#60431b;
  border-radius:24px;
  padding:18px 20px;
  margin:0 0 24px;
  line-height:1.72;
}

.legal-doc-section{
  padding:24px 0;
  border-top:1px solid var(--line);
}

.legal-doc-section:first-of-type{
  border-top:0;
  padding-top:0;
}

.legal-doc-section h2{
  margin:0 0 14px;
  font-size:clamp(28px,3.6vw,44px);
  line-height:1;
  letter-spacing:-.055em;
}

.legal-doc-section h3{
  margin:22px 0 10px;
  font-size:22px;
  letter-spacing:-.035em;
}

.legal-doc-section p{
  color:var(--muted);
  line-height:1.78;
  margin:0 0 14px;
}

.legal-doc-section ul,
.legal-doc-section ol{
  margin:0 0 16px 20px;
  padding:0;
  color:var(--muted);
  line-height:1.8;
}

.legal-doc-section li{
  margin:6px 0;
}

.legal-table{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  margin:16px 0;
}

.legal-row{
  display:grid;
  grid-template-columns:230px 1fr;
  gap:0;
  border-top:1px solid var(--line);
}

.legal-row:first-child{
  border-top:0;
}

.legal-row strong,
.legal-row span{
  padding:15px 16px;
  line-height:1.6;
}

.legal-row strong{
  background:rgba(15,80,57,.06);
  color:var(--ink);
}

.legal-row span{
  color:var(--muted);
  background:rgba(255,255,255,.5);
}

.legal-final-note{
  margin-top:24px;
  padding:20px;
  border-radius:24px;
  background:linear-gradient(145deg,#123f30,#0b2c23);
  color:#fff;
}

.legal-final-note p{
  color:rgba(255,255,255,.72);
  margin:8px 0 0;
}

.legal-page-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.legal-page-links a{
  color:var(--ink);
  text-decoration:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:850;
  font-size:13px;
}

@media (max-width:1020px){
  .legal-shell{
    grid-template-columns:1fr;
  }

  .legal-sidebar{
    position:relative;
    top:auto;
  }

  .legal-nav{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .legal-hero h1{
    font-size:clamp(54px,15vw,86px);
  }

  .legal-doc{
    border-radius:28px;
    padding:22px;
  }

  .legal-sidebar{
    border-radius:24px;
  }

  .legal-nav{
    grid-template-columns:1fr;
  }

  .legal-row{
    grid-template-columns:1fr;
  }

  .legal-row strong{
    border-bottom:1px solid var(--line);
  }
}


:root {
  --palm: #0e4430;
  --palm-deep: #092f22;
  --palm-soft: #dce9df;
  --ink: #111714;
  --ink-soft: #34413b;
  --stone: #f4f0e9;
  --stone-2: #ebe4d9;
  --paper: #fffdf8;
  --sand: #d8c8b3;
  --line: rgba(17, 23, 20, .12);
  --line-light: rgba(255,255,255,.22);
  --white: #fff;
  --shadow: 0 28px 80px rgba(18, 27, 22, .14);
  --shadow-soft: 0 18px 48px rgba(18, 27, 22, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --header-h: 82px;
  --ease: cubic-bezier(.2, .7, .1, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }
button, input, textarea { font: inherit; }

::selection { background: var(--palm); color: var(--white); }

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--palm);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin-inline: auto;
}
.section { padding: 112px 0; }
.section-kicker, .eyebrow {
  margin: 0 0 16px;
  color: var(--palm);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section h2,
.hero h1,
.cta-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
}
.section h2 {
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.8rem);
  max-width: 820px;
}
.section-copy > p:not(.section-kicker),
.section-head > p {
  color: var(--ink-soft);
  margin: 24px 0 0;
  max-width: 650px;
  font-size: 1.03rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 42px;
  margin-bottom: 42px;
}
.section-head > p { max-width: 430px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--white);
  transition: transform .45s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-hidden { transform: translateY(-105%); }
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, .86);
  border-bottom: 1px solid rgba(17, 23, 20, .08);
  box-shadow: 0 10px 36px rgba(17, 23, 20, .07);
  backdrop-filter: blur(18px);
}
.header-shell {
  width: min(1280px, calc(100% - 34px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  width: 186px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 11px 13px 9px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 34px rgba(0,0,0,.08);
}
.site-header.is-scrolled .brand,
.site-header.is-open .brand { background: rgba(255,255,255,.72); box-shadow: none; }
.brand img { width: 100%; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 7px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled .desktop-nav,
.site-header.is-open .desktop-nav { border-color: rgba(17,23,20,.09); background: rgba(17,23,20,.035); }
.desktop-nav a {
  padding: 11px 14px;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: -.01em;
  border-radius: 999px;
  opacity: .92;
  transition: background .25s var(--ease), opacity .25s var(--ease);
}
.desktop-nav a:hover { background: rgba(255,255,255,.16); opacity: 1; }
.site-header.is-scrolled .desktop-nav a:hover { background: rgba(14,68,48,.08); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
  font-size: .88rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.site-header.is-scrolled .header-phone,
.site-header.is-open .header-phone { border-color: rgba(17,23,20,.1); background: rgba(17,23,20,.035); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--palm); color: var(--white); box-shadow: 0 16px 40px rgba(14, 68, 48, .20); }
.btn-primary:hover { background: var(--palm-deep); box-shadow: 0 20px 50px rgba(14, 68, 48, .26); }
.btn-light { background: rgba(255,255,255,.88); color: var(--ink); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.42); color: var(--ink); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: .88rem; }
.btn-lg { min-height: 56px; padding-inline: 24px; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: currentColor;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .3s var(--ease), top .3s var(--ease);
}
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 27px; }
.site-header.is-open .menu-toggle span:first-child { top: 23px; transform: rotate(45deg); }
.site-header.is-open .menu-toggle span:last-child { top: 23px; transform: rotate(-45deg); }
.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle { border-color: rgba(17,23,20,.1); background: rgba(17,23,20,.035); }

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 14px auto 14px;
  background: rgba(255,253,248,.96);
  color: var(--ink);
  border: 1px solid rgba(17,23,20,.09);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 18px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
  backdrop-filter: blur(18px);
}
.site-header.is-open .mobile-panel { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-panel nav { display: grid; gap: 4px; }
.mobile-panel nav a {
  display: flex;
  padding: 16px 12px;
  border-radius: 16px;
  font-weight: 800;
  background: rgba(14,68,48,.045);
}
.mobile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  display: block;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  background:
    radial-gradient(circle at 22% 32%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,.13), transparent 35%, rgba(0,0,0,.19));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}
.hero .eyebrow { color: rgba(255,255,255,.84); }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4.2rem, 10vw, 9.6rem);
}
.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.80);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}
.hero-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  padding-inline: 13px;
  color: rgba(255,255,255,.86);
  font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.48);
}
.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  overflow: hidden;
}
.hero-bottom div { padding: 20px 22px; border-left: 1px solid rgba(255,255,255,.16); }
.hero-bottom div:first-child { border-left: 0; }
.hero-bottom strong,
.hero-bottom span { display: block; }
.hero-bottom strong { font-size: .98rem; }
.hero-bottom span { color: rgba(255,255,255,.70); margin-top: 5px; font-size: .86rem; }

.trust-band {
  background: var(--stone);
  border-bottom: 1px solid rgba(17,23,20,.08);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid article {
  min-height: 210px;
  padding: 34px 28px;
  border-left: 1px solid rgba(17,23,20,.1);
}
.trust-grid article:first-child { border-left: 0; }
.trust-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--palm);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
}
.trust-grid strong { display: block; font-size: 1.06rem; letter-spacing: -.03em; }
.trust-grid p { color: var(--ink-soft); margin: 12px 0 0; font-size: .94rem; }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mini-stats div { padding: 20px 18px 20px 0; }
.mini-stats strong { display: block; color: var(--palm); font-size: 1.2rem; }
.mini-stats span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .86rem; }
.visual-stack {
  position: relative;
  min-height: 640px;
}
.visual-card {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--stone-2);
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; }
.visual-card-large {
  position: absolute;
  inset: 0 10% 8% 0;
  border-radius: var(--radius-xl);
}
.visual-card-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 44%;
  border: 10px solid var(--paper);
  border-radius: 30px;
}
.floating-note {
  position: absolute;
  top: 36px;
  right: 3px;
  width: 188px;
  min-height: 188px;
  border-radius: 999px;
  background: var(--palm);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 22px;
  box-shadow: 0 20px 54px rgba(14,68,48,.26);
}
.floating-note span { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.floating-note strong { display: block; margin-top: 8px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; line-height: .98; }

.rooms { background: #fbf7ef; }
.room-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
}
.room-card {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(17,23,20,.09);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(18,27,22,.06);
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 640px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(14,68,48,.18); }
.room-card.featured { grid-template-rows: 380px 1fr; }
.room-media { position: relative; overflow: hidden; background: var(--stone-2); }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.room-card:hover .room-media img { transform: scale(1.045); }
.room-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding-inline: 14px;
  border-radius: 999px;
  background: rgba(255,253,248,.88);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}
.room-badge.muted { color: var(--palm); }
.room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.room-type { margin: 0 0 12px; color: var(--palm); font-size: .76rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.room-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.15rem, 3.2vw, 4rem);
  letter-spacing: -.045em;
  line-height: .92;
}
.room-card p:not(.room-type) { margin: 18px 0 0; color: var(--ink-soft); font-size: .98rem; }
.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.room-features li {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(17,23,20,.10);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
}
.room-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}
.room-link::after { content: "↗"; }

.amenities { background: var(--paper); }
.amenities-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 36px;
  background: var(--palm-deep);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  position: relative;
}
.amenities-panel::before {
  content: "";
  position: absolute;
  inset: -45% auto auto -12%;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
}
.amenities-panel .section-kicker { color: rgba(255,255,255,.68); }
.amenities-panel p { color: rgba(255,255,255,.72) !important; }
.compact h2 { font-size: clamp(2.2rem, 4vw, 4.7rem); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 26px;
  overflow: hidden;
}
.amenity-grid article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.amenity-grid span {
  color: rgba(255,255,255,.58);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.amenity-grid strong { font-size: .98rem; letter-spacing: -.02em; }

.location { background: var(--stone); }
.location-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}
.map-card {
  min-height: 620px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(14,68,48,.18), transparent 25%),
    linear-gradient(135deg, #fffdf8 0%, #eee7dc 100%);
  border: 1px solid rgba(17,23,20,.1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.map-lines,
.map-lines::before,
.map-lines::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  border: 1px solid rgba(14,68,48,.22);
}
.map-lines { inset: 16% -12% auto 9%; height: 260px; transform: rotate(-18deg); }
.map-lines::before { inset: 44px -60px auto 90px; height: 190px; }
.map-lines::after { inset: 120px 180px auto -80px; height: 180px; }
.map-pin {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 210px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,23,20,.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
  backdrop-filter: blur(14px);
}
.map-pin span {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: block;
  border-radius: 999px;
  background: var(--palm);
  box-shadow: 0 0 0 10px rgba(14,68,48,.10);
}
.map-pin strong { display: block; font-size: 1.02rem; }
.map-pin small { display: block; margin-top: 6px; color: var(--ink-soft); }
.map-chip {
  position: absolute;
  max-width: 230px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(14,68,48,.09);
  color: var(--palm-deep);
  font-weight: 800;
  font-size: .82rem;
}
.chip-one { left: 34px; top: 44px; }
.chip-two { right: 34px; top: 170px; }
.chip-three { left: 54px; bottom: 58px; }
.location-list { display: grid; gap: 12px; margin-top: 28px; }
.location-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(17,23,20,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  font-weight: 800;
}
.location-list a::after { content: "↗"; color: var(--palm); }

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}
.sticky-copy { position: sticky; top: 118px; }
.accordion { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid rgba(17,23,20,.10);
  border-radius: 22px;
  background: rgba(244,240,233,.54);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 74px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 20px 24px;
  font-weight: 850;
  letter-spacing: -.02em;
}
.faq-item button::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(14,68,48,.09);
  color: var(--palm);
  font-size: 1.3rem;
  transition: transform .25s var(--ease);
}
.faq-item.is-open button::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

.final-cta { padding-top: 60px; }
.cta-panel {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 34px;
  padding: clamp(28px, 6vw, 70px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5,27,20,.86), rgba(5,27,20,.58)),
    url("https://images.unsplash.com/photo-1618773928121-c32242e63f39?auto=format&fit=crop&w=2000&q=84");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.cta-panel .section-kicker { color: rgba(255,255,255,.72); }
.cta-panel h2 { margin: 0; font-size: clamp(3rem, 6vw, 6.4rem); max-width: 850px; }
.cta-panel p { color: rgba(255,255,255,.76); max-width: 620px; margin: 22px 0 0; }
.cta-actions { display: grid; gap: 12px; }
.cta-panel .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.10); }

.site-footer {
  background: #0b1913;
  color: var(--white);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, .72fr);
  gap: 34px;
}
.footer-brand img {
  width: 210px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
}
.footer-brand p { color: rgba(255,255,255,.64); max-width: 360px; margin: 22px 0 0; }
.site-footer h3 {
  margin: 0 0 16px;
  color: rgba(255,255,255,.96);
  font-size: .86rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-footer a,
.site-footer span { display: block; color: rgba(255,255,255,.62); margin-top: 10px; font-size: .92rem; }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.54);
}
.footer-bottom a { margin: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel { display: block; }
  .header-phone { display: none; }
  .hero-bottom { grid-template-columns: 1fr; width: min(420px, calc(100% - 44px)); left: auto; right: 22px; transform: none; }
  .hero-bottom div { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding: 15px 18px; }
  .hero-bottom div:first-child { border-top: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(odd) { border-left: 0; }
  .trust-grid article:nth-child(n+3) { border-top: 1px solid rgba(17,23,20,.1); }
  .split-layout,
  .location-layout,
  .faq-layout,
  .amenities-panel { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .room-card,
  .room-card.featured { grid-template-rows: 340px auto; min-height: auto; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-copy { position: static; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 74px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 78px 0; }
  .section h2 { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  .section-head { display: block; margin-bottom: 28px; }
  .brand { width: 150px; padding: 9px 10px 7px; }
  .header-shell { width: calc(100% - 22px); }
  .header-actions .btn { display: none; }
  .hero { min-height: 930px; align-items: start; padding-top: 160px; }
  .hero-media img {
    object-position: 58% center;
  }
  .hero-content { padding-top: 0; }
  .hero h1 { font-size: clamp(4rem, 19vw, 6.2rem); }
  .hero-lead { margin-top: 22px; }
  .hero-cta { align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .quick-link { min-height: 44px; padding-inline: 4px; }
  .hero-bottom { bottom: 14px; right: 14px; width: calc(100% - 28px); border-radius: 22px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: auto; border-left: 0; border-top: 1px solid rgba(17,23,20,.1); padding: 26px 18px; }
  .trust-grid article:first-child { border-top: 0; }
  .mini-stats { grid-template-columns: 1fr; }
  .mini-stats div { padding: 16px 0; border-top: 1px solid var(--line); }
  .mini-stats div:first-child { border-top: 0; }
  .visual-stack { min-height: 520px; }
  .visual-card-large { inset: 0 0 18% 0; }
  .visual-card-small { width: 56%; height: 38%; border-width: 7px; }
  .floating-note { width: 148px; min-height: 148px; top: 18px; right: -6px; }
  .floating-note strong { font-size: 1.55rem; }
  .room-card,
  .room-card.featured { grid-template-rows: 285px auto; border-radius: 24px; }
  .room-body { padding: 22px; }
  .amenities-panel { border-radius: 26px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-grid article { min-height: 112px; }
  .map-card { min-height: 540px; border-radius: 26px; }
  .map-chip { position: static; display: inline-flex; margin: 12px 0 0 16px; max-width: calc(100% - 32px); }
  .map-pin { top: 44%; width: 190px; }
  .faq-item button { min-height: 66px; padding: 18px; }
  .faq-answer p { padding: 0 18px 20px; }
  .cta-panel { min-height: 520px; border-radius: 26px; align-items: end; }
  .cta-panel h2 { font-size: clamp(3.1rem, 14vw, 4.6rem); }
  .cta-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom a { margin-top: 14px; }
  .mobile-actions { grid-template-columns: 1fr; }
}


/* === Palmiye Pass 03: room system, ADS/GEO content, sticky contact === */
:root { --whatsapp: #25D366; --whatsapp-dark: #128C45; }

.hero h1 {
  max-width: 820px;
  font-size: clamp(4.4rem, 9.6vw, 9.2rem);
  letter-spacing: -.055em;
}

.trust-grid article {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,0));
}
.trust-grid article::before,
.room-stars span,
.service-star {
  content: "★";
  color: var(--palm);
}
.trust-grid article::before {
  position: absolute;
  right: 24px;
  top: 28px;
  opacity: .24;
  font-size: 1.1rem;
}

.rooms { background: #fbf7ef; }
.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.room-card {
  min-height: 650px;
  grid-template-rows: 292px 1fr;
  background: rgba(255,253,248,.82);
  border-color: rgba(17,23,20,.095);
}
.room-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(18,27,22,.13);
}
.room-body { gap: 20px; }
.room-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 16px;
  letter-spacing: .12em;
  font-size: .72rem;
}
.room-type { margin-bottom: 10px; }
.room-card h3 { font-size: clamp(2.15rem, 2.8vw, 3.5rem); }
.room-card p:not(.room-type) { font-size: .955rem; }
.room-features li {
  min-height: 32px;
  background: rgba(14,68,48,.035);
  color: rgba(17,23,20,.74);
}
.room-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}
.room-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.room-action:hover { transform: translateY(-2px); }
.room-action.call {
  background: var(--ink);
  color: var(--white);
}
.room-action.whatsapp {
  background: var(--whatsapp);
  color: #062111;
  box-shadow: 0 14px 32px rgba(37,211,102,.24);
}
.room-action svg,
.float-link svg { width: 17px; height: 17px; flex: 0 0 auto; }

.intent-strip {
  background: var(--paper);
  padding: 30px 0 0;
}
.intent-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(14,68,48,.10), transparent 26%),
    linear-gradient(135deg, #f5efe6, #fffdf8);
  border: 1px solid rgba(17,23,20,.08);
  box-shadow: 0 18px 54px rgba(18,27,22,.07);
}
.intent-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}
.intent-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.intent-matrix-compact {
  grid-template-columns: 1fr;
}
.intent-matrix-compact .intent-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.intent-matrix-compact .intent-card {
  display: block;
  padding: 20px;
}
@media (max-width: 760px) {
  .intent-matrix-compact .intent-cards {
    grid-template-columns: 1fr;
  }
}
.intent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.intent-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(14,68,48,.07);
  color: var(--palm-deep);
  font-weight: 800;
  font-size: .78rem;
}

.comfort-section { background: var(--paper); }
.comfort-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  align-items: stretch;
}
.comfort-intro {
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-xl);
  background: var(--palm-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.comfort-intro::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
}
.comfort-intro .section-kicker { color: rgba(255,255,255,.65); }
.comfort-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
}
.comfort-intro p { color: rgba(255,255,255,.72); margin: 24px 0 0; }
.comfort-note {
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,.16);
  padding-top: 22px;
  color: rgba(255,255,255,.78);
  font-weight: 750;
}
.service-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-tile {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  background: #f4f0e9;
  border: 1px solid rgba(17,23,20,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.service-tile:hover {
  transform: translateY(-4px);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}
.service-star { font-size: .82rem; opacity: .74; }
.service-tile h3 {
  margin: 22px 0 8px;
  font-size: 1.08rem;
  letter-spacing: -.03em;
}
.service-tile p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.6;
}

.location { background: #f4f0e9; }
.location-layout-new {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}
.location-visual {
  position: relative;
  min-height: 690px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4,21,15,.10), rgba(4,21,15,.45)),
    url("https://palmiyesuitotel.com/wp-content/uploads/2026/06/palmyie-suit-otel.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
}
.location-visual-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(16px);
}
.location-visual-card strong { display: block; font-size: 1.2rem; }
.location-visual-card span { display: block; margin-top: 8px; color: var(--ink-soft); }
.location-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.location-mini {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,253,248,.58);
  border: 1px solid rgba(17,23,20,.09);
}
.location-mini small {
  display: block;
  color: var(--palm);
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .68rem;
}
.location-mini strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  letter-spacing: -.02em;
}
.location-mini p { margin: 8px 0 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.55; }
.location-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

.scenario-section { background: var(--paper); }
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.scenario-card {
  padding: 26px;
  min-height: 240px;
  border-radius: 28px;
  background: #f6f1ea;
  border: 1px solid rgba(17,23,20,.08);
}
.scenario-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--palm);
  font-weight: 850;
  letter-spacing: .14em;
  font-size: .72rem;
}
.scenario-card h3 { margin: 0; font-size: 1.12rem; letter-spacing: -.03em; }
.scenario-card p { margin: 12px 0 0; color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }

.faq { background: #fbf7ef; }
.faq-item { background: rgba(255,253,248,.72); }

.site-footer {
  padding-bottom: 98px;
}
.footer-grid {
  grid-template-columns: 1.35fr .8fr .8fr .9fr .9fr;
}
.footer-brand p strong { color: rgba(255,255,255,.92); font-weight: 750; }
.footer-legal-line {
  margin-top: 16px;
  color: rgba(255,255,255,.42);
  font-size: .82rem;
  line-height: 1.6;
}

.float-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  gap: 10px;
}
.float-link {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 16px 42px rgba(17,23,20,.20);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.float-link:hover { transform: translateY(-3px); box-shadow: 0 20px 52px rgba(17,23,20,.28); }
.float-link.wp { background: var(--whatsapp); color: #061c0f; }
.float-link.tel { background: var(--palm); }
.float-link.map { background: #101713; }

@media (max-width: 1100px) {
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intent-card,
  .comfort-layout,
  .location-layout-new { grid-template-columns: 1fr; }
  .service-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scenario-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .room-grid,
  .service-mosaic,
  .location-grid-cards,
  .scenario-grid { grid-template-columns: 1fr; }
  .room-card { min-height: auto; grid-template-rows: 285px auto; }
  .room-actions { grid-template-columns: 1fr; }
  .intent-card { border-radius: 26px; }
  .comfort-intro { min-height: 430px; border-radius: 26px; }
  .service-tile { min-height: 168px; }
  .location-visual { min-height: 520px; border-radius: 26px; }
  .location-visual-card { left: 16px; right: 16px; bottom: 16px; }
  .float-contact { right: 14px; bottom: 14px; gap: 8px; }
  .float-link { width: 50px; height: 50px; }
}


/* === Palmiye Pass 05: desktop alignment + sharper location details === */
@media (min-width: 901px) {
  .hero-cta {
    align-items: stretch;
    gap: 10px;
  }
  .hero-cta .btn,
  .hero-cta .quick-link {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  .hero-cta .quick-link {
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.34);
    border-bottom-color: rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(14px);
  }
  .hero-cta .quick-link:hover {
    background: rgba(255,255,255,.16);
  }

  .section-head {
    display: grid;
    grid-template-columns: 120px minmax(0, 620px) minmax(300px, 430px);
    align-items: end;
    gap: 28px;
  }
  .section-head .section-kicker {
    margin: 0 0 16px;
  }
  .section-head h2 {
    max-width: 620px;
    font-size: clamp(3.4rem, 4.8vw, 5.55rem);
  }
  .section-head > p:not(.section-kicker) {
    max-width: 430px;
    margin: 0 0 8px;
  }
  .scenario-section .section-head h2 {
    max-width: 650px;
  }
}

.location-mini.highlight {
  background: rgba(255,253,248,.84);
  border-color: rgba(14,68,48,.18);
  box-shadow: 0 14px 34px rgba(18,27,22,.07);
}
.location-mini.highlight strong::after,
.location-visual-card strong::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--palm);
  opacity: .65;
}

@media (max-width: 900px) {
  .section-head { display: block; }
  .section-head > p:not(.section-kicker) { margin-top: 18px; }
}

/* === Palmiye Pass 06: hero CTA / trust bar spacing fix === */
@media (min-width: 901px) {
  .hero {
    min-height: max(760px, 100svh);
    align-items: center;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 18px);
    padding-bottom: clamp(170px, 21vh, 230px);
    transform: translateY(-18px);
  }

  .hero-cta {
    position: relative;
    z-index: 5;
    margin-top: clamp(24px, 3.2vh, 32px);
  }

  .hero-bottom {
    bottom: 22px;
    width: min(1180px, calc(100% - 92px));
    z-index: 4;
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero h1 {
    font-size: clamp(4rem, 8.35vw, 8.35rem);
  }

  .hero-lead {
    margin-top: 20px;
    max-width: 650px;
  }

  .hero-content {
    padding-bottom: 190px;
    transform: translateY(-26px);
  }

  .hero-cta {
    margin-top: 24px;
  }

  .hero-bottom div {
    padding-block: 17px;
  }
}

@media (min-width: 901px) and (max-height: 700px) {
  .hero {
    min-height: 760px;
  }
}


/* === Palmiye Pass 07: mobile hero flow + floating contact collision fix === */
.float-contact {
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    display: block;
    padding: 118px 0 20px;
  }

  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero .eyebrow {
    max-width: 290px;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.85rem, 17vw, 5.15rem);
    line-height: .88;
  }

  .hero-lead {
    max-width: 92%;
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-cta {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: auto;
    min-height: 54px;
    padding-inline: 16px;
    justify-content: center;
    white-space: nowrap;
  }

  .hero-cta .btn-primary {
    grid-column: 1 / -1;
  }

  .hero-cta .btn-light {
    grid-column: 1 / -1;
  }

  .hero-cta .quick-link {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.30);
    border-bottom-color: rgba(255,255,255,.30);
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    backdrop-filter: blur(14px);
    font-size: .95rem;
  }

  .hero-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: min(100% - 28px, var(--container));
    margin: 30px auto 0;
    z-index: 4;
    border-radius: 22px;
  }

  .hero-bottom div {
    padding: 16px 18px;
  }

  body.is-hero-active .float-contact {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(.96);
  }

  .float-contact {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  .hero { padding-top: 106px; }
  .hero h1 { font-size: clamp(3.35rem, 16.2vw, 4.45rem); }
  .hero-lead { max-width: 100%; font-size: .96rem; }
  .hero-cta .btn { min-height: 52px; }
  .hero-bottom { margin-top: 24px; }
}

/* === Pass 08: mobile section ordering ===
   Mobilde oda vitrini hero'dan hemen sonra gelsin; 01/02/03/04 avantaj bandı odaların altına taşınsın. */
@media (max-width: 760px) {
  #main {
    display: flex;
    flex-direction: column;
  }
  #main > section {
    order: 50;
  }
  #main > .hero {
    order: 1;
  }
  #main > .rooms {
    order: 2;
  }
  #main > .trust-band {
    order: 3;
    padding-top: 0;
  }
  #main > .experience {
    order: 4;
  }
}


/* Palmiye Google Map Embed */
.map-embed-block{
  margin-top:28px;
}

.map-embed-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  border:1px solid rgba(16,74,53,.16);
  background:linear-gradient(145deg,#fffaf1,#f2eadc);
  box-shadow:0 22px 80px rgba(7,23,20,.12);
}

.map-embed-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:end;
  padding:24px 26px 20px;
}

.map-embed-top span{
  display:inline-flex;
  margin-bottom:8px;
  color:#b47a2f;
  font-size:12px;
  line-height:1;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.map-embed-top h3{
  margin:0;
  font-size:clamp(28px,3.8vw,48px);
  line-height:.96;
  letter-spacing:-.06em;
  color:var(--ink);
}

.map-embed-top p{
  margin:10px 0 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
}

.map-embed-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.map-iframe-wrap{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  margin:0 14px 14px;
  min-height:420px;
  background:#d9d0c0;
  border:1px solid rgba(16,74,53,.12);
}

.map-iframe-wrap iframe{
  width:100%;
  height:460px;
  display:block;
  border:0;
  filter:saturate(.92) contrast(.98);
}

@media (max-width:760px){
  .map-embed-block{
    margin-top:20px;
  }

  .map-embed-card{
    border-radius:26px;
  }

  .map-embed-top{
    grid-template-columns:1fr;
    align-items:start;
    padding:22px 18px 16px;
  }

  .map-embed-actions{
    justify-content:flex-start;
  }

  .map-iframe-wrap{
    min-height:330px;
    margin:0 10px 10px;
    border-radius:20px;
  }

  .map-iframe-wrap iframe{
    height:350px;
  }
}


.location-layout .map-embed-block,
.location-layout-new .map-embed-block{
  grid-column:1 / -1;
}

/* Active mobile horizontal overflow guard */
@media (min-width:761px){
  body.palmiye-bakirkoy-jakuzili-otel .hero-grid,
  body.palmiye-bakirkoy-suit-otel .hero-grid,
  body.palmiye-bakirkoy-meydan-otel .hero-grid,
  body.palmiye-bakirkoy-sahil-otel .hero-grid{
    padding-top:calc(var(--header-h, 82px) + 18px);
    padding-bottom:clamp(170px, 21vh, 230px);
    transform:translateY(-18px);
  }

  body.palmiye-bakirkoy-jakuzili-otel .hero-copy,
  body.palmiye-bakirkoy-suit-otel .hero-copy,
  body.palmiye-bakirkoy-meydan-otel .hero-copy,
  body.palmiye-bakirkoy-sahil-otel .hero-copy{
    transform:translateY(-48px);
  }
}

@media (max-width:760px){
  body.palmiye-bakirkoy-jakuzili-otel .hero-grid,
  body.palmiye-bakirkoy-suit-otel .hero-grid,
  body.palmiye-bakirkoy-meydan-otel .hero-grid,
  body.palmiye-bakirkoy-sahil-otel .hero-grid{
    padding-top:0;
  }
}

@media (max-width:760px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  body,
  .site,
  .page,
  main,
  #main,
  .site-main{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .site-header,
  .header-shell,
  .hero,
  .hero-inner,
  .hero-content,
  .hero-copy,
  .hero-grid,
  .hero-bottom,
  .hero-mini,
  .container,
  .section,
  .rooms,
  .rooms-grid,
  .room-grid,
  .room-card,
  .hero-actions,
  .hero-cta,
  .mobile-menu-panel,
  .mobile-panel,
  .palmiye-mobile-menu,
  .map-embed-card,
  .map-iframe-wrap{
    max-width:100%;
    box-sizing:border-box;
  }

  .container{
    width:calc(100% - 28px);
  }

  .header-shell{
    width:calc(100% - 22px);
  }

  .hero-actions,
  .hero-cta{
    width:100%;
    min-width:0;
  }

  .hero-actions a,
  .hero-actions .btn,
  .hero-cta a,
  .hero-cta .btn,
  .hero-cta .quick-link{
    min-width:0;
    max-width:100%;
    white-space:normal;
  }

  .palmiye-mobile-toggle{
    right:14px;
    max-width:46px;
  }

  .palmiye-mobile-menu{
    width:auto;
    max-width:calc(100% - 28px);
  }

  .floating-note{
    right:0;
    max-width:calc(100% - 28px);
  }

  .visual-stack,
  .visual-card,
  .location-visual,
  .location-visual-card,
  .cta-box,
  .popular-searches-box,
  .footer-grid{
    max-width:100%;
    box-sizing:border-box;
  }

  img,
  video,
  iframe{
    max-width:100%;
  }
}

/* Room gallery mobile overflow fix - tail override */
.room-gallery-section,
.room-gallery-shell,
.room-gallery-grid,
.gallery-stage,
.gallery-main,
.gallery-thumbs{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}

.room-gallery-section,
.room-gallery-shell,
.room-gallery-grid,
.gallery-stage{
  overflow-x:clip;
}

.gallery-main picture,
.gallery-main img{
  display:block;
  max-width:100%;
  min-width:0;
}

.gallery-thumbs{
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
  overscroll-behavior-x:contain;
  -webkit-overflow-scrolling:touch;
}

@media (max-width:760px){
  .room-gallery-section,
  .room-gallery-shell,
  .room-gallery-grid,
  .gallery-stage,
  .gallery-main,
  .gallery-thumbs{
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .room-gallery-shell{
    overflow:hidden;
  }

  .room-gallery-grid{
    overflow:clip;
  }

  .gallery-stage{
    overflow:hidden;
    contain:layout paint;
  }

  .gallery-main{
    overflow:hidden;
    touch-action:manipulation;
  }

  .gallery-main picture{
    width:100%;
    height:100%;
  }

  .gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .gallery-arrow{
    max-width:44px;
    max-height:44px;
  }

  .gallery-prev{
    left:max(8px, env(safe-area-inset-left));
  }

  .gallery-next{
    right:max(8px, env(safe-area-inset-right));
  }

  .gallery-expand{
    max-width:calc(100% - 108px);
    white-space:normal;
  }

  .gallery-thumbs{
    overflow-x:auto;
    overflow-y:hidden;
    padding-inline:2px;
    scroll-padding-inline:2px;
  }

  .gallery-thumb{
    flex-shrink:0;
    max-width:34vw;
  }

  .gallery-lightbox{
    overflow:hidden;
  }

  .gallery-lightbox img{
    max-width:calc(100vw - 36px);
  }
}

/* Landing page desktop hero header offset fix - final override */
@media (min-width:769px){
  body.palmiye-bakirkoy-jakuzili-otel #main > .hero .hero-grid,
  body.palmiye-bakirkoy-suit-otel #main > .hero .hero-grid,
  body.palmiye-king-suite #main > .hero .hero-grid,
  body.palmiye-deluxe-suite #main > .hero .hero-grid,
  body.palmiye-design-suite #main > .hero .hero-grid,
  body.palmiye-standart-suite #main > .hero .hero-grid,
  body.palmiye-double-suite #main > .hero .hero-grid,
  body.palmiye-jakuzili-oda #main > .hero .hero-grid,
  body.palmiye-palm-suite #main > .hero .hero-grid,
  body.palmiye-comfort-suite #main > .hero .hero-grid,
  body.palmiye-signature-suite #main > .hero .hero-grid,
  body.palmiye-classic-suite #main > .hero .hero-grid,
  body.palmiye-twin-suite #main > .hero .hero-grid{
    padding-top:clamp(168px, 17vh, 224px);
    padding-bottom:clamp(56px, 8vh, 96px);
    transform:none;
  }

  body.palmiye-bakirkoy-jakuzili-otel #main > .hero .hero-copy,
  body.palmiye-bakirkoy-suit-otel #main > .hero .hero-copy,
  body.palmiye-king-suite #main > .hero .hero-copy,
  body.palmiye-deluxe-suite #main > .hero .hero-copy,
  body.palmiye-design-suite #main > .hero .hero-copy,
  body.palmiye-standart-suite #main > .hero .hero-copy,
  body.palmiye-double-suite #main > .hero .hero-copy,
  body.palmiye-jakuzili-oda #main > .hero .hero-copy,
  body.palmiye-palm-suite #main > .hero .hero-copy,
  body.palmiye-comfort-suite #main > .hero .hero-copy,
  body.palmiye-signature-suite #main > .hero .hero-copy,
  body.palmiye-classic-suite #main > .hero .hero-copy,
  body.palmiye-twin-suite #main > .hero .hero-copy{
    transform:none;
  }

  body.palmiye-bakirkoy-jakuzili-otel #main > .hero .eyebrow,
  body.palmiye-bakirkoy-suit-otel #main > .hero .eyebrow,
  body.palmiye-king-suite #main > .hero .eyebrow,
  body.palmiye-deluxe-suite #main > .hero .eyebrow,
  body.palmiye-design-suite #main > .hero .eyebrow,
  body.palmiye-standart-suite #main > .hero .eyebrow,
  body.palmiye-double-suite #main > .hero .eyebrow,
  body.palmiye-jakuzili-oda #main > .hero .eyebrow,
  body.palmiye-palm-suite #main > .hero .eyebrow,
  body.palmiye-comfort-suite #main > .hero .eyebrow,
  body.palmiye-signature-suite #main > .hero .eyebrow,
  body.palmiye-classic-suite #main > .hero .eyebrow,
  body.palmiye-twin-suite #main > .hero .eyebrow{
    margin-top:0;
  }
}
