
:root{
  --bg:#FAF8F4;
  --surface:#FFFFFF;
  --ink:#22221F;
  --muted:#6B6A64;
  --line:#E7E2D9;
  --art:#C9622D;
  --capsule:#1B7A72;
  --casino:#D9A441;
  --ice:#3B6E9E;
  --accent:var(--ink);
  --r:12px;
  --shadow:0 1px 2px rgba(34,34,31,.04), 0 8px 24px rgba(34,34,31,.05);
  --shadow-lift:0 2px 4px rgba(34,34,31,.05), 0 16px 36px rgba(34,34,31,.09);
}
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;background:var(--bg);color:var(--ink);
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  font-size:17px;line-height:1.7;font-weight:400;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4{font-family:"Inter Tight","Inter",sans-serif;color:var(--ink);margin:0;
  letter-spacing:-.02em;line-height:1.18;font-weight:600;}
p{margin:0 0 1.15em;}
a{color:inherit;}
img{max-width:100%;display:block;}

.theme-art{--accent:var(--art);}
.theme-capsule{--accent:var(--capsule);}
.theme-casino{--accent:var(--casino);}
.theme-ice{--accent:var(--ice);}

.wrap{width:100%;max-width:1140px;margin:0 auto;padding:0 32px;}
.narrow{max-width:720px;}

/* ---------------- header ---------------- */
.site-head{position:sticky;top:0;z-index:40;background:rgba(250,248,244,.88);
  backdrop-filter:saturate(180%) blur(12px);-webkit-backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid transparent;transition:border-color .2s ease, box-shadow .2s ease;}
.site-head.is-stuck{border-bottom-color:var(--line);box-shadow:0 1px 12px rgba(34,34,31,.05);}
.head-in{display:flex;align-items:center;justify-content:space-between;gap:32px;height:74px;}
.logo{font-family:"Inter Tight",sans-serif;font-weight:700;font-size:20px;letter-spacing:-.035em;
  text-decoration:none;color:var(--ink);display:inline-flex;align-items:center;gap:9px;}
.logo .dot{width:9px;height:9px;border-radius:50%;background:var(--art);display:inline-block;}
.nav{display:flex;align-items:center;gap:6px;}
.nav a{position:relative;text-decoration:none;color:var(--muted);font-size:15px;font-weight:500;
  padding:9px 14px;border-radius:8px;transition:color .16s ease,background-color .16s ease;}
.nav a::after{content:"";position:absolute;left:14px;right:14px;bottom:4px;height:2px;border-radius:2px;
  background:var(--c);transform:scaleX(0);transform-origin:left;transition:transform .2s ease;}
.nav a:hover{color:var(--ink);}
.nav a:hover::after{transform:scaleX(1);}
.nav a[aria-current="page"]{color:var(--ink);font-weight:600;}
.nav a[aria-current="page"]::after{transform:scaleX(1);}
.nav a.c-art{--c:var(--art);} .nav a.c-capsule{--c:var(--capsule);}
.nav a.c-casino{--c:var(--casino);} .nav a.c-ice{--c:var(--ice);}
.nav-toggle{display:none;}

/* ---------------- hero ---------------- */
.hero{padding:88px 0 8px;}
.hero h1{font-size:clamp(34px,5.2vw,58px);font-weight:700;max-width:16ch;}
.hero .sub{margin:22px 0 0;font-size:19px;color:var(--muted);max-width:58ch;}
.eyebrow{display:inline-block;font-size:13px;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--accent);margin:0 0 18px;}

.hero-split{display:flex;align-items:center;justify-content:space-between;gap:48px;}
.hero-split .hero-copy{flex:1 1 auto;min-width:0;}
.hero-visual{margin:0;flex:0 0 240px;width:240px;}
.hero-visual img{width:100%;height:auto;border-radius:var(--r);border:1px solid var(--line);
  box-shadow:var(--shadow);background:#EFEBE3;}
.theme-casino .hero-visual{flex-basis:200px;width:200px;}

/* ---------------- sections ---------------- */
section{padding:64px 0;}
.sec-head{max-width:620px;margin:0 0 38px;}
.sec-head h2{font-size:clamp(24px,3vw,32px);}
.sec-head p{margin:14px 0 0;color:var(--muted);font-size:17px;}

/* category cards */
.cat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;}
.cat{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);
  padding:26px 24px 24px;text-decoration:none;display:flex;flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
.cat:hover{transform:translateY(-3px);box-shadow:var(--shadow-lift);border-color:#DCD5C8;}
.cat .bar{width:34px;height:4px;border-radius:4px;background:var(--accent);margin-bottom:20px;}
.cat h3{font-size:19px;}
.cat p{margin:10px 0 0;font-size:15px;color:var(--muted);line-height:1.6;}
.cat .go{margin-top:20px;font-size:14px;font-weight:600;color:var(--accent);
  display:inline-flex;align-items:center;gap:7px;}
.cat:hover .go .arw{transform:translateX(3px);}
.arw{display:inline-block;transition:transform .2s ease;}

/* method columns */
.method{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;}
.method .ic{width:40px;height:40px;border-radius:10px;background:#F1EDE5;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--muted);}
.method h3{font-size:17px;}
.method p{margin:8px 0 0;color:var(--muted);font-size:15.5px;line-height:1.65;}

/* ---------------- hotel cards ---------------- */
.hotels{display:grid;grid-template-columns:repeat(2,1fr);gap:26px;}
.hotel{background:var(--surface);border:1px solid var(--line);border-radius:14px;
  padding:30px 30px 26px;display:flex;flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;}
.hotel:hover{transform:translateY(-2px);box-shadow:var(--shadow-lift);}
.pill{align-self:flex-start;font-size:12.5px;font-weight:600;letter-spacing:.02em;
  color:var(--accent);background:color-mix(in srgb, var(--accent) 11%, white);
  border:1px solid color-mix(in srgb, var(--accent) 26%, white);
  padding:5px 12px;border-radius:999px;margin-bottom:18px;}
.hotel h3{font-size:22px;}
.hotel .loc{margin:7px 0 18px;font-size:14.5px;color:var(--muted);font-weight:500;}
.hotel p{font-size:16px;color:#3A3A35;}
.hotel p:last-of-type{margin-bottom:0;}
.chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px;padding-top:22px;border-top:1px solid var(--line);}
.chips span{font-size:13px;color:var(--muted);background:#F5F2EC;border:1px solid var(--line);
  padding:5px 11px;border-radius:8px;}

/* ---------------- long-form doc ---------------- */
.doc{max-width:720px;padding:74px 0 30px;}
.doc h1{font-size:clamp(30px,4vw,42px);font-weight:700;}
.doc .stand{margin:18px 0 44px;font-size:18.5px;color:var(--muted);}
.doc h2{font-size:21px;margin:44px 0 14px;}
.doc ul{padding-left:20px;margin:0 0 1.15em;}
.doc li{margin-bottom:9px;}
.doc strong{font-weight:600;}
.doc a{color:var(--accent);}

/* ---------------- footer ---------------- */
.site-foot{border-top:1px solid var(--line);margin-top:40px;padding:64px 0 44px;}
.foot-grid{display:grid;grid-template-columns:2.2fr 1fr 1fr;gap:48px;}
.foot-grid h4{font-size:13px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  color:var(--muted);margin-bottom:16px;}
.foot-about p{color:var(--muted);font-size:15.5px;max-width:42ch;margin:14px 0 0;}
.foot-grid ul{list-style:none;margin:0;padding:0;}
.foot-grid li{margin-bottom:11px;}
.foot-grid li a{text-decoration:none;color:var(--ink);font-size:15.5px;opacity:.82;}
.foot-grid li a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px;}
.foot-base{margin-top:52px;padding-top:24px;border-top:1px solid var(--line);
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
  font-size:14px;color:var(--muted);}

@media(max-width:980px){
  .cat-grid{grid-template-columns:repeat(2,1fr);}
  .hotels{grid-template-columns:1fr;}
  .method{grid-template-columns:1fr;gap:30px;}
  .foot-grid{grid-template-columns:1fr 1fr;}
  .foot-about{grid-column:1 / -1;}
}
@media(max-width:760px){
  html,body{overflow-x:hidden;}
  body{font-size:16.5px;}
  .wrap{padding:0 20px;max-width:100%;}
  .head-in{flex-wrap:wrap;align-items:center;height:auto;min-height:64px;gap:0;padding:8px 0;min-width:0;}
  .logo{font-size:18px;}
  .nav-toggle{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;
    width:44px;height:44px;padding:0;border:0;background:transparent;cursor:pointer;
    color:var(--ink);-webkit-tap-highlight-color:transparent;flex:none;}
  .nav-toggle span{display:block;width:20px;height:2px;border-radius:2px;background:currentColor;
    transition:transform .2s ease,opacity .2s ease;}
  .site-head.is-open .nav-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .site-head.is-open .nav-toggle span:nth-child(2){opacity:0;}
  .site-head.is-open .nav-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
  .nav{display:none;flex-direction:column;align-items:stretch;width:100%;gap:2px;
    padding:6px 0 14px;border-top:1px solid var(--line);}
  .site-head.is-open .nav{display:flex;}
  .nav a{padding:12px 4px;font-size:16px;}
  .nav a::after{left:4px;right:auto;width:18px;bottom:8px;}
  .hero{padding:56px 0 4px;}
  .hero h1{max-width:none;}
  .hero-split{flex-direction:column;align-items:flex-start;gap:28px;max-width:100%;}
  .hero-visual,.theme-casino .hero-visual{flex:0 1 auto;width:min(180px,100%);}
  section{padding:48px 0;}
  .cat-grid{grid-template-columns:1fr;}
  .hotel{padding:24px 22px;}
  .foot-grid{grid-template-columns:1fr;gap:32px;}
}
