:root{
  --bg:#062f2c;
  --surface:#073a36;
  --card:#0a4742;
  --border:rgba(255,255,255,.10);
  --text:#f6faf9;
  --muted:rgba(246,250,249,.70);
  --gold:#d6b36a;
  --gold2:#f0d494;
  --shadow:0 18px 50px rgba(0,0,0,.30);
  --ring:0 0 0 4px rgba(214,179,106,.14);
  --radius:18px;
  --gap:16px;
  --pad:18px;
}

*{box-sizing:border-box}

html,body{
  overflow-x:hidden;
  max-width:100vw;
}

body{
  margin:0;
  font-family:Manrope,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:radial-gradient(900px 500px at 15% 0%, rgba(214,179,106,.18), transparent 60%),
             radial-gradient(800px 500px at 85% 10%, rgba(214,179,106,.12), transparent 55%),
             var(--bg);
  color:var(--text);
}

/* Admin UI refinements */
body.admin{
  background:radial-gradient(900px 520px at 10% 0%, rgba(214,179,106,.16), transparent 60%),
             radial-gradient(800px 520px at 90% 10%, rgba(214,179,106,.10), transparent 55%),
             #052a27;
}
body.admin .header{background:rgba(5,36,33,.85)}
@media (max-width: 768px){
  body.admin .header{padding:6px 0}
  body.admin .header .container{padding:8px 12px}
  body.admin .brand__logo{width:28px;height:28px}
  body.admin .brand__title{font-size:14px}
  body.admin .brand__subtitle{font-size:10px}
  body.admin .nav{display:none}
  body.admin .burger{display:flex}
}

/* Mobile menu styles */
.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,.8);
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  opacity:0;
  pointer-events:none;
  transition:opacity .3s ease;
  z-index:100;
}
.mobile-menu.is-open{opacity:1;pointer-events:auto}
.mobile-menu__panel{
  background:rgba(6,47,44,.98);
  border-left:1px solid var(--border);
  width:280px;
  height:100vh;
  transform:translateX(100%);
  transition:transform .3s ease;
  overflow-y:auto;
}
.mobile-menu.is-open .mobile-menu__panel{transform:translateX(0)}
.mobile-menu__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px;
  border-bottom:1px solid var(--border);
}
.mobile-menu__close{
  width:32px;
  height:32px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(6,47,44,.4);
  color:var(--text);
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.mobile-menu__close:hover{background:rgba(255,255,255,.08)}
.mobile-menu__nav{
  display:flex;
  flex-direction:column;
  padding:16px;
  gap:4px;
}
.mobile-menu__nav a,
.mobile-menu__nav button{
  color:var(--text);
  text-decoration:none;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid transparent;
  white-space:nowrap;
  background:none;
  font-size:14px;
  cursor:pointer;
  width:100%;
  text-align:left;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav button:hover{
  background:rgba(255,255,255,.06);
}
.mobile-menu__nav a.active{
  background:rgba(214,179,106,.12);
  border-color:rgba(214,179,106,.25);
  color:var(--gold2);
}

/* Burger button styles */
.burger{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(6,47,44,.4);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  cursor:pointer;
}
.burger span{
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:1px;
  transition:all .3s ease;
}
.burger:hover{background:rgba(255,255,255,.08)}
body.admin .brand__subtitle{letter-spacing:.2px}
body.admin .container{max-width:1200px}
@media (max-width: 768px){body.admin .container{max-width:100%;padding:12px}}
body.admin .card{background:linear-gradient(180deg, rgba(8,56,52,.88), rgba(6,43,40,.86))}
body.admin .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
@media (max-width: 768px){body.admin .grid{grid-template-columns:1fr}}
body.admin .big{font-size:30px}
@media (max-width: 768px){body.admin .big{font-size:24px}}
body.admin .filters{background:rgba(6,47,44,.25);padding:12px;border-radius:14px;border:1px solid var(--border)}
body.admin .filters label{display:flex;flex-direction:column;gap:6px}
@media (max-width: 768px){
  body.admin .filters{padding:8px}
  body.admin .filters label{gap:4px}
  body.admin .filters button{width:100%;margin-top:8px}
}
body.admin .table{gap:12px}
body.admin .table .row{
  grid-template-columns:180px 200px 1fr 120px 140px 1fr;
  padding:12px 10px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(6,47,44,.22);
}
@media (max-width: 1024px){
  body.admin .table .row{grid-template-columns:160px 180px 1fr 100px 120px 1fr}
}
@media (max-width: 768px){
  body.admin .table .row{grid-template-columns:1fr;gap:8px;padding:16px}
  body.admin .table .row > div{padding:4px 0}
  body.admin .table .row > div::before{content:attr(data-label);font-weight:600;color:var(--gold2);display:block;font-size:12px;margin-bottom:2px}
}
body.admin .table .row.head{
  background:transparent;
  border:none;
  padding:0 10px;
}
@media (max-width: 768px){
  body.admin .table .row.head{display:none}
}
body.admin .table .row:hover{background:rgba(214,179,106,.08)}
body.admin .table .row select{width:100%}
body.admin .news-files-preview{gap:8px}
body.admin .file-thumb{width:56px;height:56px}
body.admin .file-badge{max-width:140px}
body.admin .row{margin:10px 0}
body.admin .hint{margin-top:6px}

body.admin .status-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(214,179,106,.3);
  color:var(--gold2);
  background:rgba(214,179,106,.12);
}

html{scroll-behavior:smooth}

/* Better default typography */
h1{font-size:clamp(26px, 3.8vw, 44px)}
h2{font-size:clamp(18px, 2.2vw, 24px)}
p{line-height:1.6}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important;transition:none !important;animation:none !important}
}

.container{
  max-width:1080px;
  margin:0 auto;
  padding:var(--pad);
  padding-left:calc(var(--pad) + env(safe-area-inset-left));
  padding-right:calc(var(--pad) + env(safe-area-inset-right));
  overflow-x:hidden;
  width:100%;
}

.header{
  background:rgba(6,47,44,.65);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  backdrop-filter:blur(10px);
  z-index:20;
  padding:8px 0;
}

.header .container{display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{flex-shrink:0}
.nav{flex-grow:1;display:flex;justify-content:flex-end;gap:8px;align-items:center;flex-wrap:wrap}
.burger{flex-shrink:0}

.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.brand__logo{width:42px;height:42px;border-radius:12px;object-fit:cover;box-shadow:0 10px 25px rgba(0,0,0,.25);flex:0 0 auto}
.brand__title{font-weight:800;letter-spacing:.3px;font-size:16px;line-height:1}
.brand__subtitle{font-size:12px;color:var(--muted);margin-top:2px}

.nav{display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.nav a{color:var(--text);text-decoration:none;padding:10px 12px;border-radius:12px;border:1px solid transparent;white-space:nowrap}
.nav a.active{background:rgba(214,179,106,.12);border-color:rgba(214,179,106,.25);color:var(--gold2)}
.nav a:hover{background:rgba(255,255,255,.06)}
.nav a:focus-visible{outline:none;box-shadow:var(--ring)}

.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(6,47,44,.4);
  align-items:center;
  justify-content:center;
  gap:4px;
  cursor:pointer;
}
.burger span{display:block;width:20px;height:2px;background:var(--text);border-radius:999px}

.mobile-menu{position:fixed;inset:0;background:rgba(6,47,44,.55);backdrop-filter:blur(6px);opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:40}
.mobile-menu__panel{position:absolute;right:0;top:0;height:100%;width:min(320px, 90vw);background:rgba(6,47,44,.95);border-left:1px solid var(--border);padding:16px;transform:translateX(100%);transition:transform .2s ease}
.mobile-menu__header{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.mobile-menu__title{font-weight:900}
.mobile-menu__close{width:36px;height:36px;border-radius:10px;border:1px solid rgba(255,255,255,.12);background:rgba(6,47,44,.35);color:var(--text);cursor:pointer}
.mobile-menu__links{display:flex;flex-direction:column;gap:8px}
.mobile-menu__links a{color:var(--text);text-decoration:none;padding:10px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.08)}
.mobile-menu__links a:hover{background:rgba(255,255,255,.06)}
.mobile-menu.is-open{opacity:1;pointer-events:auto}
.mobile-menu.is-open .mobile-menu__panel{transform:translateX(0)}

@media (max-width: 640px){
  .header{padding:4px 0}
  .header .container{flex-direction:row;align-items:center;justify-content:space-between;gap:8px}
  .brand__logo{width:32px;height:32px}
  .brand__title{font-size:13px}
  .brand__subtitle{font-size:9px}
  .brand{gap:8px}

  .burger{display:flex;width:38px;height:38px}
  .burger span{width:18px;height:2px}
  .nav{display:none}

  .mobile-menu__panel{width:min(260px, 84vw);padding:12px}
  .mobile-menu__links a{padding:8px 9px;font-size:13px}
  .mobile-menu__close{width:28px;height:28px}
}

.footer{padding:28px 0;color:var(--muted)}
.footer__grid{display:grid;grid-template-columns:1fr auto 1fr;gap:14px;align-items:center}
.footer__brand{font-weight:900;letter-spacing:.3px}
.footer__muted{color:var(--muted);font-size:12px}
.footer__links{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
.footer__links a{color:var(--muted);text-decoration:none;padding:8px 10px;border-radius:12px;border:1px solid transparent}
.footer__links a:hover{color:var(--text);background:rgba(255,255,255,.06)}
@media (max-width: 900px){.footer__grid{grid-template-columns:1fr;justify-items:start}.footer__links{justify-content:flex-start}}

.hero{padding:18px 0 6px;max-width:100%;overflow:hidden}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:center;background:linear-gradient(180deg, rgba(10,71,66,.80), rgba(7,58,54,.55));border:1px solid var(--border);border-radius:var(--radius);padding:22px;box-shadow:var(--shadow);overflow:hidden;max-width:100%}
.hero__content{display:flex;flex-direction:column;gap:0}
.hero__image{position:relative;border-radius:16px;overflow:hidden;height:100%;max-height:340px}
.hero__image img{width:100%;height:100%;object-fit:cover;border-radius:16px;box-shadow:0 20px 50px rgba(0,0,0,.35)}
@media (max-width: 900px){.hero__inner{grid-template-columns:1fr}.hero__image{max-height:260px}}
.badge{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;border:1px solid rgba(214,179,106,.35);color:var(--gold2);background:rgba(214,179,106,.10);font-weight:700;font-size:12px;text-transform:lowercase;width:fit-content}
.hero__kicker{margin-top:10px;color:var(--gold2);font-weight:800;letter-spacing:.4px;text-transform:uppercase;font-size:11px}
.hero__title{margin:12px 0 8px;font-size:clamp(26px, 4vw, 40px);line-height:1.05;letter-spacing:-.6px}
.hero__subtitle{margin:0 0 16px;color:var(--muted);font-size:15px;max-width:58ch}
.hero__actions{display:flex;gap:10px;flex-wrap:wrap}
.hero__facts{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:16px}
.fact{border:1px solid var(--border);border-radius:14px;padding:12px;background:rgba(6,47,44,.35)}
.fact__t{font-weight:800}
.fact__d{color:var(--muted);font-size:12px;margin-top:3px}
@media (max-width: 800px){.hero__facts{grid-template-columns:1fr}}

.card{background:linear-gradient(180deg, rgba(10,71,66,.85), rgba(7,58,54,.70));border:1px solid var(--border);border-radius:var(--radius);padding:18px;margin:16px 0;box-shadow:0 12px 34px rgba(0,0,0,.22);max-width:100%;overflow:hidden}
.card h1,.card h2{margin:0 0 10px}

.section-head{display:flex;flex-direction:column;gap:8px;margin-bottom:10px}

.lead{color:var(--muted);max-width:75ch;line-height:1.6;margin:0 0 14px}

.features{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:10px}
.feature{border:1px solid var(--border);border-radius:16px;padding:14px;background:rgba(6,47,44,.28)}
.feature__t{font-weight:900}
.feature__d{color:var(--muted);font-size:12px;line-height:1.5;margin-top:6px}
@media (max-width: 900px){.features{grid-template-columns:1fr}}

.intro__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:10px}
.intro__item{border:1px solid var(--border);border-radius:16px;padding:14px;background:rgba(6,47,44,.28)}
.intro__title{font-weight:900}
.intro__desc{color:var(--muted);font-size:12px;line-height:1.5;margin-top:6px}
.intro__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
@media (max-width: 900px){.intro__grid{grid-template-columns:1fr}}

.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:10px}
.contact{border:1px solid var(--border);border-radius:16px;padding:14px;background:rgba(6,47,44,.28)}
.contact__k{color:var(--muted);font-size:12px;font-weight:800}
.contact__v{font-weight:900;margin-top:6px}
.contact__v a{color:var(--text);text-decoration:none}
.contact__v a:hover{color:var(--gold2)}
.contact__hint{color:rgba(246,250,249,.55);font-size:12px;margin-top:6px}
.contact-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
@media (max-width: 900px){.contact-grid{grid-template-columns:1fr}}

.map{margin-top:16px;border-radius:16px;overflow:hidden;border:1px solid var(--border);background:rgba(6,47,44,.25);max-width:100%}
.map iframe{display:block;border:0;width:100%;max-width:100%}

.grid{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)}
@media (max-width: 900px){.grid{grid-template-columns:1fr}}

/* Tablet 600-900px */
@media (max-width: 900px) and (min-width: 601px){
  :root{--pad:16px;--gap:14px}
  .hero__inner{padding:18px;gap:16px}
  .hero__title{font-size:28px}
  .hero__subtitle{font-size:14px}
  .hero__image{max-height:220px}
  .card{padding:16px}
  .gallery-grid img{height:180px}
}

/* Small phones 320-480px */
@media (max-width: 480px){
  :root{--pad:12px;--gap:10px;--radius:14px}
  body{font-size:14px}
  .hero{padding:12px 0 4px}
  .hero__inner{padding:14px;gap:14px}
  .hero__content{padding:0}
  .hero__title{font-size:22px;margin:8px 0 6px}
  .hero__subtitle{font-size:13px;margin-bottom:12px}
  .hero__image{max-height:180px}
  .badge{font-size:10px;padding:6px 10px}
  .hero__kicker{font-size:10px;margin-top:8px}
  .card{padding:14px;margin:12px 0}
  .card h2{font-size:18px}
  .lead{font-size:13px;margin-bottom:10px}
  .fact{padding:10px}
  .fact__t{font-size:13px}
  .fact__d{font-size:11px}
  .feature,.intro__item,.contact{padding:12px}
  .feature__t,.intro__title{font-size:14px}
  .feature__d,.intro__desc{font-size:11px}
  .primary,.ghost{padding:12px 14px;font-size:14px;min-height:46px}
  .contact-actions{flex-direction:column}
  .contact-actions a{width:100%;text-align:center}
  input,select,textarea{font-size:16px;padding:14px 12px;min-height:48px}
  select{padding-right:32px}
  .form-grid{gap:6px}
  .row{margin:6px 0}
  .gallery-grid{gap:10px}
  .gallery-grid img{height:160px;border-radius:12px}
  .review{padding:14px}
  .review__name{font-size:14px}
  .review__text{font-size:13px}
  .map{margin-top:12px;border-radius:12px}
}

/* Very small phones <360px */
@media (max-width: 360px){
  :root{--pad:10px;--gap:8px;--radius:12px}
  body{font-size:13px}
  .hero__title{font-size:20px}
  .hero__subtitle{font-size:12px}
  .hero__image{max-height:150px}
  .badge{font-size:9px;padding:5px 8px}
  .card{padding:12px;margin:10px 0}
  .card h2{font-size:16px}
  .fact{padding:8px}
  .fact__t{font-size:12px}
  .fact__d{font-size:10px}
  .primary,.ghost{padding:11px 12px;font-size:13px;min-height:44px}
  input,select,textarea{font-size:16px;padding:12px 10px;min-height:46px}
  .gallery-grid img{height:140px}
}

details{border:1px solid var(--border);border-radius:14px;background:rgba(6,47,44,.28);margin:10px 0;overflow:hidden}
summary{cursor:pointer;padding:12px 14px;font-weight:800;list-style:none}
summary::-webkit-details-marker{display:none}

.list{display:flex;flex-direction:column;gap:10px;padding:12px}
.item{display:flex;justify-content:space-between;gap:12px;padding:12px 12px;border:1px solid rgba(255,255,255,.08);background:rgba(6,47,44,.32);border-radius:14px;cursor:pointer;text-align:left;color:var(--text);transition:transform .12s ease,border-color .12s ease,background .12s ease,box-shadow .12s ease}
.item:hover{border-color:rgba(214,179,106,.30);transform:translateY(-1px)}
.item:active{transform:translateY(0)}
.item:focus-visible{outline:none;box-shadow:var(--ring)}
.item.is-selected{border-color:rgba(240,212,148,.65);background:rgba(214,179,106,.10);box-shadow:0 0 0 1px rgba(240,212,148,.15) inset}

.row{display:flex;flex-direction:column;gap:8px;margin:12px 0}
label{font-size:12px;color:var(--muted);font-weight:700}

.booking-form{display:flex;flex-direction:column;gap:6px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form-note{color:rgba(246,250,249,.6);font-size:11px;margin-top:8px}
@media (max-width: 720px){.form-grid{grid-template-columns:1fr}}

input,select,textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(6,47,44,.35);
  color:var(--text);
  font:inherit;
  outline:none;
}
input:focus,select:focus,textarea:focus{border-color:rgba(214,179,106,.45);box-shadow:var(--ring)}

.primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(214,179,106,.45);
  background:linear-gradient(180deg, rgba(240,212,148,.95), rgba(214,179,106,.95));
  color:#0b2f2c;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  transition:transform .12s ease,filter .12s ease,box-shadow .12s ease;
}
.primary:disabled{opacity:.6;cursor:not-allowed}
.primary:hover{filter:saturate(1.05) brightness(1.02);transform:translateY(-1px)}
.primary:active{transform:translateY(0)}
.primary:focus-visible{outline:none;box-shadow:var(--ring)}

.ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(6,47,44,.28);
  color:var(--text);
  font-weight:700;
  text-decoration:none;
  transition:background .12s ease,transform .12s ease;
}
.ghost:hover{background:rgba(255,255,255,.07);transform:translateY(-1px)}
.ghost:active{transform:translateY(0)}
.ghost:focus-visible{outline:none;box-shadow:var(--ring)}

.form-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-top:8px}
.hint{color:var(--muted);font-size:12px}
.form-status{margin-top:10px;color:var(--gold2);font-size:12px;min-height:16px}
.error{color:#ffb4b4}

.big{font-size:28px;font-weight:800}

.table{display:flex;flex-direction:column;gap:10px}
.table .row{display:grid;grid-template-columns:70px 170px 1fr 160px 170px 1fr;gap:10px;align-items:center;margin:0}
.table .row.head{font-weight:800;color:var(--muted)}
@media (max-width: 900px){
  .table .row{grid-template-columns:1fr;gap:6px;padding:12px;border:1px solid var(--border);border-radius:14px;background:rgba(6,47,44,.22)}
  .table .row.head{display:none}
}

.filters{display:flex;gap:12px;flex-wrap:wrap;align-items:end}

.slider{display:grid;grid-template-columns:40px 1fr 40px;gap:10px;align-items:center;margin-top:12px}
.slider__track{display:grid;grid-auto-flow:column;grid-auto-columns:100%;overflow:hidden;border-radius:16px;border:1px solid var(--border);background:rgba(6,47,44,.25)}
.slider__track img{width:100%;height:300px;object-fit:cover}
.slider__btn{width:40px;height:40px;border-radius:12px;border:1px solid rgba(255,255,255,.12);background:rgba(6,47,44,.4);color:var(--text);cursor:pointer}
.slider__btn:hover{background:rgba(255,255,255,.08)}
@media (max-width: 640px){.slider{grid-template-columns:32px 1fr 32px}.slider__track img{height:220px}}

.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:12px 0}
.review{
  border:1px solid rgba(240,212,148,.2);
  border-radius:18px;
  padding:16px;
  background:linear-gradient(180deg, rgba(12,84,78,.6), rgba(7,58,54,.55));
  box-shadow:0 20px 40px rgba(0,0,0,.22);
}
.review__badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  color:var(--gold2);
  border:1px solid rgba(240,212,148,.3);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}
.review__head{display:flex;align-items:center;justify-content:space-between;gap:8px}
.review__name{font-weight:900}
.review__rating{color:var(--gold2)}
.review__rating-muted{color:rgba(240,212,148,.35)}
.review__service{color:var(--muted);font-size:12px;margin-top:6px}
.review__text{margin-top:8px;line-height:1.6}
.review-form{margin-top:14px}
@media (max-width: 900px){.reviews-grid{grid-template-columns:1fr}}

.steps__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.step{display:flex;gap:12px;border:1px solid var(--border);border-radius:16px;padding:14px;background:rgba(6,47,44,.28)}
.step__num{width:32px;height:32px;border-radius:10px;background:rgba(214,179,106,.16);color:var(--gold2);display:flex;align-items:center;justify-content:center;font-weight:900}
.step__title{font-weight:900}
.step__desc{color:var(--muted);font-size:12px;line-height:1.5;margin-top:6px}
@media (max-width: 900px){.steps__grid{grid-template-columns:1fr}}

.compare{position:relative;border-radius:18px;overflow:hidden;border:1px solid var(--border);background:rgba(6,47,44,.25);height:320px}
.compare__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.compare__img.is-after{clip-path:inset(0 0 0 50%)}
.compare__range{position:absolute;left:10px;right:10px;bottom:12px}
@media (max-width: 640px){.compare{height:240px}}

button.link{background:none;border:0;color:var(--text);cursor:pointer;padding:10px 12px;border-radius:12px}
button.link:hover{background:rgba(255,255,255,.06)}

.price-list{display:flex;flex-direction:column;gap:8px;margin-top:10px}
.price-item{display:flex;align-items:baseline;gap:8px;padding:10px 14px;border-radius:12px;border:1px solid var(--border);background:rgba(6,47,44,.25)}
.price-item__name{font-weight:700}
.price-item__dots{flex:1;border-bottom:1px dotted rgba(255,255,255,.2);margin:0 4px 4px}
.price-item__price{font-weight:800;color:var(--gold2);white-space:nowrap}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.gallery-grid img{width:100%;height:220px;object-fit:cover;border-radius:16px;border:1px solid var(--border);box-shadow:0 12px 30px rgba(0,0,0,.25);transition:transform .2s ease}
.gallery-grid img:hover{transform:scale(1.02)}
@media (max-width: 800px){.gallery-grid{grid-template-columns:1fr}.gallery-grid img{height:200px}}

.news-list{display:flex;flex-direction:column;gap:16px;margin-top:12px}
.news-item{border:1px solid var(--border);border-radius:16px;padding:18px;background:rgba(6,47,44,.28)}
.news-item__date{color:var(--gold2);font-size:12px;font-weight:700;margin-bottom:6px}
.news-item__title{font-size:18px;font-weight:900;margin:0 0 10px}
.news-item__content{color:var(--muted);line-height:1.6;white-space:pre-line}
@media (max-width: 480px){.news-item{padding:14px}.news-item__title{font-size:16px}}

.news-files{margin-top:16px;padding-top:14px;border-top:1px solid var(--border)}
.file-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:12px;margin-top:10px}
.file-item{display:flex;flex-direction:column;gap:8px;padding:10px;background:rgba(10,71,66,.45);border-radius:12px;border:1px solid var(--border);transition:transform .2s}
.file-item:hover{transform:translateY(-2px)}
.file-thumbnail{width:100%;height:130px;object-fit:cover;border-radius:8px;background:rgba(0,0,0,.2)}
.file-icon{width:100%;height:130px;display:flex;align-items:center;justify-content:center;font-size:48px;background:rgba(0,0,0,.15);border-radius:8px}
.file-link{color:var(--gold2);text-decoration:none;font-size:13px;word-break:break-word;text-align:center}
.file-link:hover{text-decoration:underline}
@media (max-width:640px){.file-list{grid-template-columns:repeat(auto-fill,minmax(140px,1fr))}.file-thumbnail,.file-icon{height:100px}}

.news-files-preview{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}
.file-thumb{width:50px;height:50px;object-fit:cover;border-radius:6px;border:1px solid var(--border)}
.file-badge{display:inline-block;padding:4px 8px;background:rgba(10,71,66,.5);border-radius:6px;font-size:11px;color:var(--gold2);text-decoration:none;max-width:100px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.file-badge:hover{background:rgba(10,71,66,.7)}

input[type="file"]{padding:10px;background:rgba(10,71,66,.3);border:1px dashed var(--border);border-radius:8px;color:var(--text);width:100%;cursor:pointer}
input[type="file"]:hover{background:rgba(10,71,66,.4)}
.hint{font-size:12px;color:var(--muted);margin-top:4px}

.booking-alternatives{margin-top:20px;padding-top:16px;border-top:1px solid var(--border)}
.booking-alternatives h3{font-size:16px;margin-bottom:12px;color:var(--gold2)}
.time-slots{display:grid;grid-template-columns:repeat(auto-fit,minmax(80px,1fr));gap:8px;margin-top:8px}
.time-slot{
  padding:8px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:rgba(6,47,44,.25);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
  transition:all .2s ease;
}
.time-slot:hover{background:rgba(214,179,106,.15);border-color:rgba(214,179,106,.3);transform:translateY(-1px)}
.time-slot:active{transform:translateY(0)}
@media (max-width: 480px){.time-slots{grid-template-columns:repeat(auto-fit,minmax(70px,1fr))}}

/* Touch-friendly controls on mobile */
@media (max-width: 640px){
  input,select,textarea{
    padding:14px 14px;
    font-size:16px;
    width:100%;
    max-width:100%;
    min-height:48px;
    -webkit-appearance:none;
    appearance:none;
  }
  select{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f6faf9' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 14px center;
    padding-right:36px;
  }
  .primary,.ghost{
    padding:14px 18px;
    font-size:15px;
    min-height:48px;
    width:100%;
  }
  .booking-form{gap:4px}
  .form-grid{gap:8px}
  .row{margin:8px 0}
  label{font-size:13px}
  .hint{font-size:12px}
  .form-actions{flex-direction:column;gap:10px}
  .form-actions .primary{width:100%}
}

/* Minimalist Footer Styles */
.footer{
  background:linear-gradient(180deg, rgba(10,71,66,.95), rgba(7,58,54,.90));
  border-top:1px solid var(--border);
  padding:40px 0 20px;
  margin-top:40px;
}

.footer__content{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:32px;
  margin-bottom:32px;
  align-items:start;
}

.footer__brand{
  text-align:left;
}

.footer__logo-text{
  font-size:24px;
  font-weight:900;
  letter-spacing:0.3px;
  color:var(--text);
  margin-bottom:4px;
}

.footer__tagline{
  font-size:13px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:0.2px;
}

.footer__nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer__nav a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  padding:6px 0;
  transition:color 0.2s ease;
  border:none;
  background:none;
}

.footer__nav a:hover{
  color:var(--gold2);
}

.footer__contacts{
  display:flex;
  flex-direction:column;
  gap:8px;
  text-align:right;
}

.footer__phone{
  color:var(--text);
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  transition:color 0.2s ease;
}

.footer__phone:hover{
  color:var(--gold2);
}

.footer__address{
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
}

.footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer__copyright{
  font-size:12px;
  color:var(--muted);
  font-weight:500;
}

.footer__social{
  display:flex;
  gap:12px;
}

.footer__social-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:32px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(6,47,44,.4);
  color:var(--muted);
  text-decoration:none;
  font-size:11px;
  font-weight:700;
  transition:all 0.2s ease;
}

.footer__social-link:hover{
  background:rgba(214,179,106,.15);
  border-color:rgba(214,179,106,.3);
  color:var(--gold2);
}

/* Responsive Footer */
@media (max-width: 900px){
  .footer__content{
    grid-template-columns:1fr 1fr;
    gap:24px;
  }
  
  .footer__contacts{
    grid-column:1 / -1;
    text-align:left;
  }
}

@media (max-width: 640px){
  .footer{
    padding:32px 0 16px;
    margin-top:32px;
  }
  
  .footer__content{
    grid-template-columns:1fr;
    gap:20px;
    text-align:center;
  }
  
  .footer__brand{
    text-align:center;
  }
  
  .footer__nav{
    text-align:center;
  }
  
  .footer__contacts{
    text-align:center;
  }
  
  .footer__bottom{
    flex-direction:column;
    gap:16px;
    text-align:center;
  }
}
