*,
*::before,
*::after{box-sizing:border-box}

:root{
  --panel:rgba(255,255,255,.07);
  --panel-2:rgba(255,255,255,.10);
  --line:rgba(255,255,255,.13);
  --text:#ffffff;
  --muted:rgba(255,255,255,.78);
  --gold:#d4af37;
  --shadow:0 20px 60px rgba(0,0,0,.38);
  --radius:26px;
  --container:1180px;
}

html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.10), transparent 22%),
    radial-gradient(circle at bottom right, rgba(103,19,41,.24), transparent 24%),
    linear-gradient(180deg, #060606 0%, #0c090a 48%, #140b0f 100%);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
img{max-width:100%;display:block}

.container{
  width:min(calc(100% - 2rem), var(--container));
  margin:0 auto;
}

.section{padding:96px 0; position:relative}

.section-heading{
  max-width:800px;
  margin:0 auto 38px;
  text-align:center;
}
.eyebrow{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.78rem;
  color:var(--gold);
}
h1,h2,h3{
  font-family:'Cormorant Garamond',serif;
  line-height:1.02;
  margin:0 0 14px;
}
h1{font-size:clamp(3rem, 7vw, 6rem)}
h2{font-size:clamp(2.3rem, 5vw, 4.2rem)}
h3{font-size:clamp(1.45rem, 3vw, 2rem)}
p{line-height:1.75; color:var(--muted); margin:0 0 16px}

.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0;
  background:linear-gradient(90deg, var(--gold), #fff3c7);
  z-index:80;
}

.page-glow{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  z-index:-1;
  opacity:.18;
  pointer-events:none;
}
.glow-1{width:260px;height:260px;background:#d4af37;left:-70px;top:8%}
.glow-2{width:320px;height:320px;background:#7a1735;right:-80px;bottom:0}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px min(3vw,24px);
  background:rgba(8,8,8,.34);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:.3s ease;
}
.site-header.scrolled{
  background:rgba(8,8,8,.82);
  border-bottom-color:var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.logo-img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:50%;
  border:2px solid rgba(212,175,55,.35);
  box-shadow:0 0 25px rgba(212,175,55,.16), 0 0 60px rgba(212,175,55,.08);
  flex-shrink:0;
}
.mobile-logo{
  width:52px;
  height:52px;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-copy strong{font-size:1rem}
.brand-copy small{color:var(--muted)}

.desktop-nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.desktop-nav a,
.mobile-nav a{
  opacity:.86;
  transition:.25s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active{
  opacity:1;
  color:var(--gold);
}

.menu-toggle{
  display:none;
  width:48px;height:48px;
  background:transparent;
  border:0;
  border-radius:14px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.menu-toggle span{
  width:24px;height:2px;background:#fff;border-radius:30px;
}

.mobile-menu{
  position:fixed;
  inset:0;
  z-index:70;
  background:rgba(0,0,0,.62);
  backdrop-filter:blur(8px);
}
.mobile-panel{
  width:min(88vw, 400px);
  height:100%;
  margin-left:auto;
  background:linear-gradient(180deg, rgba(14,14,14,.97), rgba(24,10,15,.98));
  border-left:1px solid var(--line);
  padding:24px;
  box-shadow:var(--shadow);
}
.mobile-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.menu-close{
  width:44px;height:44px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:2rem;
  cursor:pointer;
}
.mobile-nav{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:18px;
  font-size:1.05rem;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  position:relative;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:url('hero.jpg') center top/cover no-repeat;
  opacity:.24;
  filter:blur(1px) brightness(.82);
  transform:scale(1.03);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 42% 26%, rgba(212,175,55,.10), transparent 18%),
    linear-gradient(180deg, rgba(0,0,0,.36), rgba(0,0,0,.70));
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:center;
}
.tagline{
  font-size:1.06rem;
  letter-spacing:.06em;
}
.lead{max-width:720px}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.hero-card{padding:30px}
.hero-points{
  margin:18px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.hero-points li{margin:10px 0}

.glass{
  background:linear-gradient(180deg, var(--panel-2), var(--panel));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
}

.about-layout,
.rates-layout{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}

.about-image-card{
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-img{
  width:100%;
  max-height:640px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 0 30px rgba(212,175,55,.14);
}

.profile-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}
.certificate-wrap{
  grid-column:1 / -1;
  text-align:center;
}
.certificate-img{
  width:100%;
  max-width:760px;
  margin:0 auto;
  border-radius:22px;
  border:1px solid rgba(212,175,55,.28);
  box-shadow:0 0 30px rgba(212,175,55,.14);
}

.profile-list{
  display:grid;
  gap:14px;
}
.profile-list div{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}
.profile-list span{color:var(--muted)}
.profile-list strong{color:#fff}

.chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  list-style:none;
  padding:0;
  margin:18px 0 0;
}
.chip-list li{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

.rate-table{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.rate-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transform:translateX(-12px);
  opacity:.92;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.rate-row:hover{
  transform:translateX(0) translateY(-2px);
  border-color:rgba(212,175,55,.38);
  box-shadow:0 18px 40px rgba(212,175,55,.08);
  background:rgba(255,255,255,.05);
}
.rate-row strong{
  color:var(--gold);
  font-size:1.12rem;
}

.service-list{
  list-style:none;
  margin:0;
  padding:0;
}
.service-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
}
.service-list li:last-child{border-bottom:0}
.extras-title{margin-top:28px}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.gallery-photo{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition:.28s ease;
}
.gallery-photo:hover{
  transform:translateY(-4px) scale(1.01);
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}

.booking-wrap{max-width:980px; margin:0 auto}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
label{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:18px;
}
label span{font-weight:600}
input, textarea, select{
  width:100%;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#fff;
  padding:14px 16px;
  outline:none;
  transition:.25s ease;
}
input:focus, textarea:focus, select:focus{
  border-color:rgba(212,175,55,.52);
  box-shadow:0 0 0 4px rgba(212,175,55,.08);
}
select option{
  color:#000;
}

.terms-list{
  margin:0;
  padding-left:18px;
}
.terms-list li{
  color:var(--muted);
  line-height:1.7;
  margin:12px 0;
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:24px;
}
.review-card .stars{
  color:var(--gold);
  letter-spacing:.16em;
  margin-bottom:12px;
}
.review-card span{
  display:block;
  margin-top:14px;
  font-weight:600;
}

.review-form-card{margin-top:24px}

.contact-grid{
  max-width:820px;
  margin:0 auto;
  display:grid;
  gap:14px;
}
.contact-grid a{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  transition:.25s ease;
}
.contact-grid a:hover{
  transform:translateY(-2px);
  border-color:rgba(212,175,55,.35);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:180px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:600;
  transition:.25s ease;
  color:#fff;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg, rgba(212,175,55,.20), rgba(212,175,55,.10));
  box-shadow:0 14px 34px rgba(212,175,55,.10);
}
.btn-secondary{
  background:rgba(255,255,255,.05);
}

.site-footer{
  padding:24px 0 42px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.18);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .desktop-nav{display:none}
  .menu-toggle{display:flex}
  .hero-grid,
  .about-layout,
  .profile-grid,
  .rates-layout,
  .review-grid,
  .gallery-grid,
  .form-grid{
    grid-template-columns:1fr;
  }
  .certificate-wrap{
    grid-column:auto;
  }
}

@media (max-width: 640px){
  .section{padding:78px 0}
  .glass{padding:22px; border-radius:22px}
  .brand-copy strong{font-size:.96rem}
  .brand-copy small{font-size:.78rem}
  .site-header{padding:14px}
  .logo-img{width:48px;height:48px}
  .gallery-photo{height:280px}
}
