@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&display=swap');

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

:root {
  --bg:      #030918;
  --bg2:     #050e24;
  --bg3:     #081230;
  --navy:    #0c1a42;
  --ocean:   #10205e;
  --teal:    #00d4d4;
  --teal2:   #00f0f0;
  --gold:    #c8a84b;
  --white:   #ddeeff;
  --dim:     rgba(221,238,255,0.55);
  --dim2:    rgba(221,238,255,0.28);
  --border:  rgba(0,212,212,0.18);
  --border2: rgba(221,238,255,0.08);
  --glass:   rgba(5,14,36,0.72);
  --glass2:  rgba(3,9,24,0.94);
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Jost', sans-serif;
  --mw: 1200px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior:smooth; font-size:18px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--teal); border-radius:2px; }
::selection { background:var(--teal); color:var(--bg); }

h1,h2,h3,h4 { font-family:var(--fd); font-weight:400; line-height:1.1; }
em { font-style:italic; color:var(--teal); }
a { text-decoration:none; color:inherit; transition:color .3s var(--ease); }
a:hover { color:var(--teal); }
img { max-width:100%; display:block; }
.wrap { max-width:var(--mw); margin:0 auto; padding:0 2rem; }

/* REVEAL */
[data-reveal] {
  opacity:0;
  transform:translateY(24px);
  transition:opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].revealed { opacity:1; transform:translateY(0); }

/* LABEL */
.lbl {
  display:flex; align-items:center; gap:.7rem;
  font-family:var(--fb); font-size:.58rem; font-weight:500;
  letter-spacing:.42em; text-transform:uppercase; color:var(--teal);
  margin-bottom:1.1rem;
}
.lbl::before { content:''; width:28px; height:1px; background:var(--teal); flex-shrink:0; }

/* BUTTONS */
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 2.5rem;
  font-family:var(--fb); font-size:.68rem; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase;
  border:none; cursor:pointer; border-radius:2px;
  transition:all .32s var(--ease); white-space:nowrap;
}
.btn-t { background:var(--teal); color:var(--bg); font-weight:600; }
.btn-t:hover { background:var(--teal2); transform:translateY(-2px); box-shadow:0 10px 32px rgba(0,212,212,.32); color:var(--bg); }
.btn-o { background:transparent; color:var(--white); border:1px solid rgba(221,238,255,.28); }
.btn-o:hover { border-color:rgba(221,238,255,.7); transform:translateY(-2px); }

/* NAV */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:300;
  height:72px; display:flex; align-items:center;
  justify-content:space-between; padding:0 3rem;
  transition:background .4s var(--ease), border-color .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled, .nav.solid {
  background:rgba(3,9,24,.94);
  backdrop-filter:blur(24px);
  border-color:var(--border);
}
.nav-logo { display:flex; align-items:center; gap:.85rem; cursor:pointer; flex-shrink:0; }
.nav-logo img { width:42px; height:42px; border-radius:50%; filter:drop-shadow(0 0 12px rgba(0,212,212,.4)); }
.nav-logo-name { font-family:var(--fd); font-size:1rem; font-style:italic; white-space:nowrap; color:#fff; }
.nav-links { display:flex; list-style:none; gap:2.8rem; }
.nav-link {
  font-family:var(--fb);
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.78);
  position:relative;
  padding-bottom:6px;
  transition:color .25s, text-shadow .25s;
}
.nav-link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px;
  background:linear-gradient(to right, var(--teal), var(--teal2));
  border-radius:2px;
  box-shadow:0 0 10px rgba(0,212,212,.8);
  transition:width .32s var(--ease);
}
.nav-link:hover {
  color:#fff;
  text-shadow:0 0 18px rgba(255,255,255,.35);
}
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-link.active {
  color:#fff;
  text-shadow:0 0 14px rgba(0,212,212,.5);
}
.nav-right { display:flex; align-items:center; gap:1.1rem; flex-shrink:0; }
.lang { display:flex; border:1px solid var(--border); border-radius:20px; overflow:hidden; }
.lang-btn {
  padding:.3rem .9rem; font-size:.6rem; letter-spacing:.12em; text-transform:uppercase;
  background:transparent; color:var(--dim2); border:none; cursor:pointer;
  font-family:var(--fb); transition:all .22s;
}
.lang-btn.active { background:var(--teal); color:var(--bg); font-weight:600; }
.nav-resa {
  padding:.5rem 1.6rem; background:transparent; border:1px solid var(--teal);
  color:var(--teal); font-family:var(--fb); font-size:.64rem; letter-spacing:.15em;
  text-transform:uppercase; cursor:pointer; border-radius:2px; transition:all .28s; white-space:nowrap;
}
.nav-resa:hover { background:var(--teal); color:var(--bg); }
.ham { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; border:none; background:none; }
.ham span { width:24px; height:2px; background:var(--white); border-radius:2px; display:block; transition:all .32s var(--ease); }
.ham.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.ham.active span:nth-child(2) { opacity:0; transform:scaleX(0); }
.ham.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mnav {
  position:fixed; inset:0; z-index:290;
  background:rgba(3,9,24,.97); backdrop-filter:blur(28px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2.8rem;
  transform:translateX(100%); transition:transform .44s cubic-bezier(.7,0,.3,1);
}
.mnav.open { transform:translateX(0); }
.mnav a { font-family:var(--fd); font-size:2.5rem; font-style:italic; color:var(--white); transition:color .2s; }
.mnav a:hover { color:var(--teal); }
.mclose { position:absolute; top:1.5rem; right:2rem; background:none; border:none; color:var(--dim2); font-size:1.8rem; cursor:pointer; }

/* FORMS */
.fg { display:flex; flex-direction:column; gap:.44rem; }
label { font-size:.75rem; letter-spacing:.2em; text-transform:uppercase; color:var(--dim2); font-family:var(--fb); }
input, select, textarea {
  background:rgba(221,238,255,.04); border:1px solid var(--border2);
  border-radius:2px; padding:.84rem 1rem; color:var(--white);
  font-family:var(--fb); font-size:.86rem; font-weight:300;
  outline:none; transition:border-color .3s, background .3s;
  width:100%; -webkit-appearance:none;
}
input:focus, select:focus, textarea:focus {
  border-color:rgba(0,212,212,.44); background:rgba(0,212,212,.03);
}
input::placeholder, textarea::placeholder { color:rgba(221,238,255,.16); }
select option { background:var(--bg2); color:var(--white); }
textarea { resize:vertical; min-height:110px; }

/* FOOTER */
footer {
  background:rgba(3,9,24,.96);
  border-top:1px solid var(--border2);
  position:relative; z-index:2;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:3rem; padding:5rem 3rem 3.5rem; max-width:var(--mw); margin:0 auto;
}
.footer-brand .logo-row { display:flex; align-items:center; gap:.7rem; margin-bottom:1rem; }
.footer-brand .logo-row img { width:34px; height:34px; border-radius:50%; }
.footer-brand .logo-row span { font-family:var(--fd); font-size:1rem; font-style:italic; }
.footer-brand p { font-size:.92rem; color:var(--dim); line-height:1.88; max-width:240px; }
.fcol h5 { font-family:var(--fb); font-size:.7rem; letter-spacing:.32em; text-transform:uppercase; color:var(--teal); margin-bottom:1.4rem; font-weight:500; }
.fcol ul { list-style:none; display:flex; flex-direction:column; gap:.65rem; }
.fcol ul li, .fcol ul li a { font-size:.9rem; color:var(--dim); transition:color .2s; }
.fcol ul li a:hover { color:var(--teal); }
.footer-bottom {
  max-width:var(--mw); margin:0 auto; padding:1.3rem 3rem;
  border-top:1px solid var(--border2);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.8rem;
}
.footer-bottom p { font-size:.75rem; color:rgba(221,238,255,.22); }
.footer-bottom a { font-size:.62rem; color:rgba(221,238,255,.22); }
.footer-bottom a:hover { color:var(--teal); }
.footer-rating { display:flex; align-items:center; gap:.4rem; font-size:.66rem; color:rgba(221,238,255,.32); }
.stars { color:var(--gold); }

/* RESPONSIVE */
@media (max-width:1100px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; padding:4rem 2rem 3rem; }
  .footer-bottom { padding:1.2rem 2rem; }
  .nav { padding:0 2rem; }
}
@media (max-width:768px) {
  .nav { padding:0 1.2rem; height:64px; }
  .nav-links, .nav-resa { display:none; }
  .ham { display:flex; }
  .footer-grid { grid-template-columns:1fr 1fr; padding:3rem 1.5rem 2rem; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; gap:.5rem; padding:1rem 1.5rem; }
}
@media (max-width:520px) {
  .footer-grid { grid-template-columns:1fr; }
  .btn { padding:.85rem 2rem; font-size:.64rem; }
}
