
*{box-sizing:border-box}
:root{
  --bg:#f3f6f8;
  --surface:#ffffff;
  --text:#14202b;
  --muted:#667482;
  --line:#d9e0e6;
  --accent:#ff6b4a;
  --accent-soft:#fff0eb;
  --navy:#112535;
  --navy-2:#18384d;
  --radius:24px;
  --shadow:0 18px 50px rgba(17,37,53,.10);
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{display:block;width:100%}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}

.site-header{
  position:absolute;
  top:0;left:0;right:0;
  z-index:50;
  background:transparent;
  border:0;
}
.nav-wrap{
  min-height:86px;
  display:flex;
  align-items:center;
  gap:28px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:white;
  font-weight:800;
  letter-spacing:-.02em;
}
.brand-mark{
  width:42px;height:42px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--accent);
  color:white;
  font-size:.82rem;
}
.main-nav{
  margin-left:auto;
  display:flex;
  gap:28px;
  color:rgba(255,255,255,.82);
  font-size:.94rem;
}
.main-nav a:hover{color:white}
.lang-switcher{
  display:flex;
  gap:2px;
  padding:3px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(12px);
}
.lang{
  border:0;
  background:transparent;
  color:rgba(255,255,255,.78);
  padding:7px 10px;
  border-radius:999px;
  font:inherit;
  font-size:.77rem;
  font-weight:800;
  cursor:pointer;
}
.lang.active{background:white;color:var(--navy)}

.hero{
  min-height:720px;
  position:relative;
  display:grid;
  align-items:end;
  background-image:
    linear-gradient(90deg,rgba(10,31,44,.92) 0%,rgba(10,31,44,.72) 37%,rgba(10,31,44,.18) 68%,rgba(10,31,44,.03) 100%),
    url("assets/hero-sea.jpg");
  background-size:cover;
  background-position:center right;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(8,23,33,.34),transparent 50%);
}
.hero-content{
  position:relative;
  z-index:2;
  color:white;
  padding-bottom:84px;
}
.eyebrow{
  margin:0 0 14px;
  font-size:.76rem;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.19em;
  font-weight:900;
  color:var(--accent);
}
.hero h1{
  margin:0;
  max-width:770px;
  font-size:clamp(3rem,6vw,6rem);
  line-height:.96;
  letter-spacing:-.055em;
}
.hero-text{
  max-width:660px;
  margin:26px 0 0;
  color:rgba(255,255,255,.82);
  font-size:1.14rem;
}
.hero-actions{
  display:flex;flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}
.btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;justify-content:center;
  padding:0 22px;
  border-radius:999px;
  font-weight:800;
}
.btn-primary{background:var(--accent);color:white}
.btn-ghost{
  border:1px solid rgba(255,255,255,.35);
  color:white;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.quick-info{
  position:relative;
  z-index:4;
  margin-top:-34px;
  background:transparent;
  border:0;
}
.quick-grid{
  display:grid;
  grid-template-columns:1.5fr .8fr 1fr;
  gap:0;
  padding:0;
  background:white;
  border-radius:20px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.quick-grid>div{padding:22px 24px}
.quick-grid>div+div{border-left:1px solid var(--line)}
.quick-label{
  display:block;
  color:var(--muted);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:5px;
}
.quick-grid a{font-weight:800;word-break:break-word}

.section{padding:100px 0}
.section-muted{
  background:var(--navy);
  color:white;
}
.section-head{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:end;
  margin-bottom:38px;
}
.section h2{
  margin:0;
  max-width:760px;
  font-size:clamp(2.15rem,4vw,4rem);
  line-height:1.02;
  letter-spacing:-.045em;
}
.section-head>p{margin:0;color:var(--muted);max-width:570px}

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.room-card{
  position:relative;
  overflow:hidden;
  background:white;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:none;
  transition:transform .2s ease,box-shadow .2s ease;
}
.room-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.room-card img{
  aspect-ratio:16/10;
  object-fit:cover;
}
.room-body{padding:24px}
.pill{
  display:inline-block;
  padding:6px 10px;
  background:var(--accent-soft);
  color:#a73720;
  border-radius:999px;
  font-size:.76rem;
  font-weight:900;
}
.room-body h3{margin:12px 0 7px;font-size:1.45rem}
.room-body p{margin:0;color:var(--muted)}
.room-note{
  margin-top:22px;
  padding:20px 22px;
  border:0;
  border-radius:18px;
  background:var(--navy);
  color:white;
  display:flex;
  gap:8px 16px;
  flex-wrap:wrap;
}

.about-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:80px;
  align-items:start;
}
.section-muted .eyebrow{color:#ff9a83}
.section-muted .about-copy{color:rgba(255,255,255,.74)}
.about-copy{font-size:1.1rem}

.transport-section{background:#eaf0f4}
.transport-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:52px;
  align-items:center;
}
.transport-image{
  overflow:hidden;
  border-radius:30px 8px 30px 8px;
  box-shadow:var(--shadow);
}
.transport-image img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
}
.transport-copy p{color:var(--muted);font-size:1.06rem}
.transport-copy h2{margin-bottom:22px}
.transport-highlight{
  margin-top:26px;
  padding:18px 20px;
  border-radius:16px;
  background:var(--accent);
  color:white;
  border:0;
}

.full-map-section{
  width:100%;
  height:540px;
  background:#dfe6eb;
  padding:0;
}
.full-map-section iframe{display:block;width:100%;height:100%;border:0}

.contact-card{
  background:white;
  color:var(--text);
  border-radius:30px;
  padding:46px;
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:56px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.contact-card .eyebrow{color:var(--accent)}
.contact-card h2{color:var(--text)}
.contact-card p{color:var(--muted);max-width:600px}
.contact-actions{display:grid;gap:12px}
.contact-link{
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#f8fafb;
}
.contact-link:hover{border-color:#c4d0d9}
.contact-link span{
  display:block;
  font-size:.72rem;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.09em;
}
.contact-link strong{font-size:1rem}

footer{
  margin-top:20px;
  background:var(--navy);
  color:rgba(255,255,255,.62);
  padding:34px 0;
}
.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:.9rem;
}

@media(max-width:820px){
  .site-header{position:absolute}
  .main-nav{display:none}
  .lang-switcher{margin-left:auto}
  .hero{min-height:650px;background-position:61% center}
  .hero-content{padding-bottom:76px}
  .hero h1{font-size:clamp(2.7rem,12vw,4.3rem)}
  .quick-info{margin-top:-24px}
  .quick-grid,
  .section-head,
  .about-grid,
  .transport-grid,
  .contact-card{
    grid-template-columns:1fr;
  }
  .quick-grid>div+div{
    border-left:0;
    border-top:1px solid var(--line);
  }
  .section{padding:74px 0}
  .section-head,.about-grid,.transport-grid,.contact-card{gap:28px}
  .rooms-grid{grid-template-columns:1fr}
  .contact-card{padding:30px}
  .full-map-section{height:420px}
}
@media(max-width:520px){
  .container{width:min(100% - 24px,1180px)}
  .brand span:last-child{display:none}
  .nav-wrap{min-height:74px}
  .hero{min-height:610px}
  .hero-content{padding-bottom:64px}
  .hero-text{font-size:1rem}
  .quick-grid>div{padding:18px}
}
