:root{
  --black:#050505;
  --ink:#121212;
  --soft-black:#151515;
  --gold:#d6b15d;
  --gold-strong:#f0cc72;
  --gold-dark:#8b6a2c;
  --cream:#f7f2e8;
  --muted:#707070;
  --white:#ffffff;
  --line:rgba(214,177,93,.26);
  --shadow:0 24px 70px rgba(0,0,0,.22);
  --radius:28px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
.container{width:min(var(--container),calc(100% - 34px));margin:0 auto}

.topbar{
  background:#000;
  color:rgba(255,255,255,.86);
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar__links{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.topbar i{color:var(--gold);margin-right:7px}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.93);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(214,177,93,.18);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:84px;
  gap:24px;
}
.logo img{height:66px;width:auto;object-fit:contain}
.nav-menu{display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0}
.nav-menu a{
  color:rgba(255,255,255,.82);
  padding:12px 15px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  transition:.25s ease;
}
.nav-menu a:hover,.nav-menu a.active{
  color:#fff;
  background:rgba(214,177,93,.16);
}
.nav-item{position:relative}
.dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.dropdown-toggle i{
  font-size:11px;
  transition:.25s ease;
}
.dropdown-menu{
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  transform:translateX(-50%) translateY(8px);
  min-width:230px;
  margin:0;
  padding:10px;
  list-style:none;
  border-radius:20px;
  background:rgba(0,0,0,.96);
  border:1px solid rgba(214,177,93,.22);
  box-shadow:0 22px 55px rgba(0,0,0,.32);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.22s ease;
}
.dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-14px;
  height:14px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.has-dropdown:hover .dropdown-toggle i,
.has-dropdown:focus-within .dropdown-toggle i{transform:rotate(180deg)}
.dropdown-menu a{
  display:block;
  color:rgba(255,255,255,.82);
  padding:11px 13px;
  border-radius:14px;
  font-size:13px;
}
.dropdown-menu a:hover,
.dropdown-menu a.active{
  background:rgba(214,177,93,.18);
  color:#fff;
}

.header-actions{display:flex;align-items:center;gap:10px}
.mobile-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:.25s ease;
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-dark),var(--gold),var(--gold-strong));
  color:#111;
  box-shadow:0 14px 30px rgba(214,177,93,.22);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 18px 40px rgba(214,177,93,.32)}
.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
}
.btn-outline:hover{background:#fff;color:#111}
.btn-outline-light{
  color:#fff;
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.06);
}
.btn-dark-outline{
  color:#111;
  border-color:rgba(0,0,0,.18);
  background:#fff;
}
.btn-dark-outline:hover,.btn-outline-light:hover{transform:translateY(-2px)}

.hero{
  position:relative;
  min-height:calc(100vh - 122px);
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#000;
}
.hero-bg{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.52),rgba(0,0,0,.18)),
    linear-gradient(0deg,rgba(0,0,0,.45),transparent 45%);
}
.hero-content{
  position:relative;
  z-index:1;
  color:#fff;
  padding:90px 0;
  max-width:980px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--gold);
  font-size:13px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:38px;
  height:1px;
  background:var(--gold);
}
.hero h1,.page-hero h1,.room-hero h1{
  font-family:'Playfair Display',serif;
  line-height:.98;
  letter-spacing:-.04em;
  margin:18px 0 18px;
}
.hero h1{font-size:clamp(46px,7.2vw,92px);max-width:900px}
.hero p{font-size:clamp(17px,2vw,21px);max-width:720px;color:rgba(255,255,255,.86);margin:0 0 30px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-features{
  margin-top:34px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.feature-pill{
  min-width:175px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
}
.feature-pill strong{display:block;font-size:24px;color:var(--gold-strong);line-height:1}
.feature-pill span{display:block;color:rgba(255,255,255,.84);font-size:13px;margin-top:5px}

.section{padding:94px 0}
.section-cream{background:var(--cream)}
.section-title{text-align:center;max-width:780px;margin:0 auto 42px}
.section-title h2,.info-card h2,.detail-panel h2,.contact-card h2,.form-shell h2,.dark-cta h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,4vw,54px);
  line-height:1.06;
  letter-spacing:-.03em;
  margin:14px 0 14px;
}
.section-title p{margin:0;color:var(--muted);font-size:17px}

.impact-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.impact-card{
  position:relative;
  display:block;
  border:0;
  padding:0;
  border-radius:var(--radius);
  overflow:hidden;
  background:#111;
  height:320px;
  min-height:0;
  box-shadow:var(--shadow);
}
.impact-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  aspect-ratio:auto;
  transition:.45s ease;
}
.impact-card:hover img{transform:scale(1.04)}
.impact-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,rgba(0,0,0,.62),transparent 55%);
}
.impact-card span{
  position:absolute;
  left:22px;
  bottom:20px;
  z-index:2;
  color:#fff;
  font-weight:900;
  font-size:19px;
}

.room-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.room-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.room-card-img{
  display:block;
  overflow:hidden;
  background:#111;
}
.room-card-img img{
  width:100%;
  aspect-ratio:16/10;
  height:auto;
  object-fit:cover;
  transition:.45s ease;
}
.room-card:hover .room-card-img img{transform:scale(1.04)}
.room-card-body{padding:24px}
.room-label{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(214,177,93,.16);
  color:#7a5c22;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.room-card h3{font-size:27px;line-height:1.1;margin:16px 0 8px}
.room-card p{color:var(--muted);margin:0 0 18px}
.mini-features{list-style:none;margin:0 0 18px;padding:0;display:grid;gap:8px}
.mini-features li{font-size:14px;color:#333}
.mini-features i,.check-list i{color:var(--gold-dark);margin-right:8px}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#111;
  font-weight:900;
}
.text-link i{color:var(--gold-dark)}



.easy-access-section{
  position:relative;
  overflow:hidden;
  padding-top:92px;
  padding-bottom:92px;
  background:
    radial-gradient(circle at 10% 0%,rgba(214,177,93,.18),transparent 30%),
    radial-gradient(circle at 95% 80%,rgba(214,177,93,.12),transparent 34%),
    linear-gradient(135deg,#0a0a0a 0%,#171717 48%,#050505 100%);
  color:#fff;
}
.easy-access-section::before{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(214,177,93,.18);
  border-radius:34px;
  pointer-events:none;
}
.easy-access-section::after{
  content:"";
  position:absolute;
  right:-90px;
  top:-110px;
  width:360px;
  height:360px;
  border-radius:50%;
  border:1px solid rgba(214,177,93,.18);
  box-shadow:0 0 0 42px rgba(214,177,93,.025);
  pointer-events:none;
}
.location-head{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,520px);
  gap:42px;
  align-items:end;
  margin-bottom:42px;
}
.location-head h2{
  margin:14px 0 0;
  font-family:'Playfair Display',serif;
  font-size:clamp(42px,6vw,82px);
  line-height:.95;
  letter-spacing:-.045em;
  color:#fff;
}
.location-head p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.75;
}
.location-layout{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(320px,430px) minmax(0,1fr);
  gap:24px;
  align-items:stretch;
}
.location-panel{
  position:relative;
  overflow:hidden;
  min-height:440px;
  padding:34px;
  border-radius:32px;
  background:
    linear-gradient(145deg,rgba(214,177,93,.22),rgba(255,255,255,.055)),
    rgba(255,255,255,.06);
  border:1px solid rgba(214,177,93,.25);
  box-shadow:0 32px 80px rgba(0,0,0,.34);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.location-panel::before{
  content:"";
  position:absolute;
  inset:24px 24px auto auto;
  width:170px;
  height:170px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(240,204,114,.36),rgba(240,204,114,.05) 52%,transparent 68%);
  filter:blur(2px);
}
.location-panel::after{
  content:"";
  position:absolute;
  left:32px;
  top:104px;
  width:245px;
  height:245px;
  border-radius:50%;
  border:1px dashed rgba(255,255,255,.18);
  opacity:.75;
}
.location-badge{
  position:relative;
  top:auto;
  left:auto;
  z-index:1;
  align-self:flex-start;
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:30px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(0,0,0,.34);
  border:1px solid rgba(255,255,255,.12);
  color:#f4d58a;
  font-size:13px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.location-panel h3{
  position:relative;
  z-index:1;
  margin:0 0 14px;
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,3.1vw,40px);
  line-height:1.08;
  letter-spacing:-.035em;
}
.location-panel p{
  position:relative;
  z-index:1;
  margin:0 0 24px;
  color:rgba(255,255,255,.75);
  line-height:1.7;
}
.location-metrics{
  position:relative;
  z-index:1;
  display:grid;
  gap:10px;
  margin-bottom:24px;
}
.location-metrics div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:13px 14px;
  border-radius:18px;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.09);
}
.location-metrics strong{
  color:#f0cc72;
  font-size:20px;
  line-height:1;
}
.location-metrics span{
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:700;
  text-align:right;
}
.location-panel .btn{
  position:relative;
  z-index:1;
  width:100%;
  justify-content:center;
  margin-top:auto;
}

.route-list{
  display:grid;
  gap:14px;
}
.route-item{
  position:relative;
  display:grid;
  grid-template-columns:54px 58px minmax(0,1fr) auto 46px;
  align-items:center;
  gap:16px;
  min-height:98px;
  padding:18px 18px 18px 20px;
  border-radius:26px;
  background:rgba(255,255,255,.94);
  color:#151515;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 20px 50px rgba(0,0,0,.20);
  transition:.25s ease;
}
.route-item::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:4px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--gold-strong),var(--gold-dark));
  opacity:.8;
}
.route-item:hover{
  transform:translateX(8px);
  background:#fff;
  box-shadow:0 28px 68px rgba(0,0,0,.28);
}
.route-number{
  color:rgba(17,17,17,.20);
  font-size:25px;
  font-weight:900;
  letter-spacing:-.08em;
}
.route-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg,rgba(214,177,93,.16),rgba(214,177,93,.04));
  color:#9b762c;
  font-size:23px;
}
.route-content strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:25px;
  line-height:1.05;
  letter-spacing:-.025em;
}
.route-content small{
  display:block;
  margin-top:6px;
  color:#707070;
  font-size:14px;
  font-weight:700;
}
.route-distance{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:86px;
  padding:9px 12px;
  border-radius:999px;
  background:#111;
  color:#f0cc72;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}
.route-arrow{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(214,177,93,.14);
  color:#8b6a2c;
  transition:.25s ease;
}
.route-item:hover .route-arrow{
  background:linear-gradient(135deg,var(--gold-dark),var(--gold),var(--gold-strong));
  color:#111;
}

.dark-cta{
  background:
    linear-gradient(135deg,rgba(214,177,93,.12),transparent),
    #060606;
  color:#fff;
}
.cta-grid{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:28px;
}
.dark-cta p{color:rgba(255,255,255,.74);font-size:17px;max-width:640px}
.cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}

.page-hero{
  background:
    linear-gradient(90deg,rgba(0,0,0,.86),rgba(0,0,0,.64)),
    url("assets/img/exterior-gece-giris-wide.jpg") center/cover no-repeat;
  color:#fff;
  padding:92px 0;
}
.page-hero h1{font-size:clamp(42px,6vw,76px)}
.breadcrumb{display:flex;align-items:center;gap:10px;color:rgba(255,255,255,.76);font-weight:700}
.breadcrumb a{color:#fff}
.breadcrumb i{font-size:11px;color:var(--gold)}

.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:42px;
}
.info-card,.detail-panel,.contact-card,.form-shell{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:0 18px 50px rgba(0,0,0,.08);
}
.info-card p,.detail-panel p,.contact-card p,.form-shell p{color:var(--muted);font-size:17px}
.check-list{list-style:none;margin:22px 0 0;padding:0;display:grid;gap:12px}
.check-list li{display:flex;align-items:flex-start;font-weight:700;color:#2a2a2a}
.check-list.two-col{grid-template-columns:1fr 1fr}
.image-stack{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.image-stack img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.image-stack img:first-child{transform:translateY(-18px)}
.image-stack img:last-child{transform:translateY(18px)}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.stat-box{
  border-radius:var(--radius);
  padding:30px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 45px rgba(0,0,0,.07);
}
.stat-box strong{
  display:block;
  font-size:44px;
  line-height:1;
  color:var(--gold-dark);
}
.stat-box span{display:block;margin-top:10px;font-weight:900;color:#222}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.gallery-item{
  border:0;
  padding:0;
  background:#111;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 32px rgba(0,0,0,.10);
}
.gallery-item img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  transition:.45s ease;
}
.gallery-item:hover img{transform:scale(1.04)}

.compare-card{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.compare-row{
  display:grid;
  grid-template-columns:1.15fr 1fr 1.35fr .55fr;
  gap:14px;
  align-items:center;
  padding:18px 22px;
  border-bottom:1px solid rgba(0,0,0,.07);
}
.compare-row:last-child{border-bottom:0}
.compare-head{
  background:#0b0b0b;
  color:#fff;
  font-weight:900;
}
.compare-row span:first-child{font-weight:900}
.compare-row a{font-weight:900;color:var(--gold-dark)}

.room-hero{
  padding:74px 0;
  background:linear-gradient(135deg,#fff,var(--cream));
}
.room-hero-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:34px;
}
.room-hero h1{font-size:clamp(46px,6.5vw,84px);color:#111}
.room-hero p{font-size:18px;color:var(--muted);max-width:610px;margin:0 0 28px}
.room-hero-img{
  border:0;
  padding:0;
  background:#111;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.room-hero-img img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.detail-grid{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:24px;
  align-items:start;
}
.contact-mini{
  background:#0a0a0a;
  color:#fff;
  border-radius:var(--radius);
  padding:26px;
  position:sticky;
  top:112px;
}
.contact-mini h3{font-size:25px;margin:0 0 8px}
.contact-mini p{color:rgba(255,255,255,.72);margin:0 0 18px}
.contact-mini .contact-row{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.13);color:#fff}
.contact-mini .contact-row i{background:rgba(214,177,93,.16)}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}
.contact-list{display:grid;gap:12px;margin-top:22px}
.contact-row{
  display:flex;
  align-items:center;
  gap:14px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  padding:15px;
  background:#fff;
}
.contact-row>i{
  width:46px;
  height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:rgba(214,177,93,.16);
  color:var(--gold-dark);
  font-size:20px;
  flex:0 0 auto;
}
.contact-row span span{display:block;color:var(--muted);font-size:14px}
.contact-visual{
  border:0;
  padding:0;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#111;
}
.contact-visual img{width:100%;height:100%;object-fit:cover;aspect-ratio:16/10}

.form-shell{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:start;
}
.contact-form{display:grid;gap:14px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
input,textarea,select{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  padding:14px 16px;
  outline:none;
  background:#fff;
}
input:focus,textarea:focus,select:focus{border-color:var(--gold-dark);box-shadow:0 0 0 4px rgba(214,177,93,.12)}
.form-whatsapp{width:max-content}

.map-section{
  background:#fff;
}
.map-shell{
  overflow:hidden;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.08);
}
.map-shell iframe{
  display:block;
  width:100%;
  height:430px;
  border:0;
  filter:saturate(.95) contrast(1.02);
}
.map-actions{
  display:flex;
  justify-content:center;
  padding:18px;
  background:linear-gradient(180deg,#fff,var(--cream));
}
@media (max-width:620px){
  .map-shell iframe{height:340px}
  .map-actions .btn{width:100%;justify-content:center}
}

.footer{
  background:#050505;
  color:#fff;
  padding:64px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .9fr 1fr;
  gap:34px;
}
.footer-logo{height:74px;width:auto;margin-bottom:18px}
.footer p{color:rgba(255,255,255,.65);max-width:390px}
.footer h4{margin:0 0 16px;color:var(--gold)}
.footer a,.footer span{
  display:block;
  color:rgba(255,255,255,.72);
  margin:9px 0;
}
.footer i{color:var(--gold);margin-right:8px}
.copyright{
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:rgba(255,255,255,.55);
  font-size:13px;
}

.floating-whatsapp{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1100;
  width:58px;
  height:58px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25d366;
  color:#fff;
  font-size:30px;
  box-shadow:0 18px 40px rgba(0,0,0,.28);
}
.lightbox{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(0,0,0,.88);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox.active{display:flex}
.lightbox img{
  max-width:min(1180px,96vw);
  max-height:86vh;
  width:auto;
  height:auto;
  border-radius:22px;
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}
.lightbox button{
  position:absolute;
  right:26px;
  top:22px;
  width:48px;
  height:48px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.12);
  font-size:22px;
}

@media (max-width:980px){
  .mobile-toggle{display:inline-flex;align-items:center;justify-content:center}
  .nav-menu{
    position:fixed;
    left:17px;
    right:17px;
    top:132px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    background:rgba(0,0,0,.96);
    border:1px solid rgba(214,177,93,.18);
    border-radius:24px;
    padding:14px;
    box-shadow:var(--shadow);
  }
  .nav-menu.open{display:flex}
  .nav-menu a{display:block}
  .nav-item{width:100%}
  .dropdown-toggle{justify-content:space-between}
  .dropdown-menu{
    position:static;
    transform:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    min-width:0;
    width:100%;
    margin:6px 0 2px;
    padding:7px;
    border-radius:18px;
    background:rgba(255,255,255,.06);
    box-shadow:none;
  }
  .dropdown-menu::before{display:none}
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu{transform:none}
  .header-actions .btn{display:none}
  .hero{min-height:720px}
  .impact-grid,.room-cards,.intro-grid,.room-hero-grid,.detail-grid,.contact-grid,.form-shell,.footer-grid{grid-template-columns:1fr}
  .location-head,.location-layout{grid-template-columns:1fr}
  .location-panel{min-height:360px}
  .impact-card{height:280px}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .cta-grid{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
  .contact-mini{position:static}
  .check-list.two-col{grid-template-columns:1fr}
}
@media (max-width:620px){
  .topbar-inner{flex-direction:column;align-items:flex-start;padding:10px 0}
  .navbar{min-height:76px}
  .logo img{height:52px}
  .hero-content{padding:70px 0}
  .section{padding:66px 0}
  .impact-card{height:235px}
  .hero h1{font-size:44px}
  .page-hero{padding:70px 0}
  .page-hero h1,.room-hero h1{font-size:42px}
  .gallery-grid,.stats-grid,.form-row{grid-template-columns:1fr}
  .easy-access-section{padding-top:72px;padding-bottom:72px}
  .easy-access-section::before{inset:10px;border-radius:22px}
  .location-head{gap:18px;margin-bottom:26px}
  .location-head p{font-size:16px}
  .location-panel{padding:26px;min-height:auto}
  .location-panel h3{font-size:32px}
  .location-badge{position:relative;top:auto;left:auto;margin-bottom:24px;align-self:flex-start}
  .location-metrics div{align-items:flex-start;flex-direction:column;gap:5px}
  .location-metrics span{text-align:left}
  .route-item{grid-template-columns:42px minmax(0,1fr) auto;gap:12px;padding:16px;border-radius:22px}
  .route-number{display:none}
  .route-icon{width:42px;height:42px;border-radius:14px;font-size:18px}
  .route-content strong{font-size:21px}
  .route-distance{min-width:auto;padding:8px 10px;font-size:13px}
  .route-arrow{display:none}
  .compare-row{
    grid-template-columns:1fr;
    gap:6px;
  }
  .info-card,.detail-panel,.contact-card,.form-shell{padding:24px}
  .footer{padding-bottom:88px}
  .copyright{flex-direction:column;align-items:flex-start}
}
