/* ============================================================
   VERA clinic — aesthetic medicine
   Design system: AIRBNB (per ./DESIGN.md)
   Tokens applied verbatim:
     Background:        #ffffff  (pure white canvas)
     Text primary:      #222222  (warm near-black, NOT pure #000)
     Text secondary:    #6a6a6a
     Brand accent:      #ff385c  (Rausch Red — singular CTA accent)
     Accent pressed:    #e00b41  (Deep Rausch)
     Surface:           #f2f2f2  (light surface / circular nav)
     Border ring:       rgba(0,0,0,0.02) 0 0 0 1px
     Card shadow:       rgba(0,0,0,0.02) 0 0 0 1px, rgba(0,0,0,0.04) 0 2px 6px, rgba(0,0,0,0.1) 0 4px 8px
     Hover shadow:      rgba(0,0,0,0.08) 0 4px 12px
   Radii: 4/8/14/20/32/50%
   Font: Figtree (web-safe Cereal VF replacement) + Fraunces italic accent
   ============================================================ */

:root{
  --bg:#ffffff;
  --bg-2:#fafafa;
  --surface:#f2f2f2;
  --ink:#222222;
  --ink-2:#3f3f3f;
  --muted:#6a6a6a;
  --line:rgba(0,0,0,.08);
  --line-strong:#c1c1c1;
  --rausch:#ff385c;
  --rausch-d:#e00b41;
  --err:#c13515;

  --shadow-card:
    rgba(0,0,0,.02) 0 0 0 1px,
    rgba(0,0,0,.04) 0 2px 6px 0,
    rgba(0,0,0,.1)  0 4px 8px -2px;
  --shadow-hover:rgba(0,0,0,.08) 0 4px 12px;

  --f-sans:"Figtree","Airbnb Cereal VF",Circular,-apple-system,BlinkMacSystemFont,system-ui,Roboto,"Helvetica Neue",Arial,sans-serif;
  --f-serif:"Fraunces",Georgia,serif;

  --grid:1440px;
  --pad:24px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--f-sans);
  font-size:15px;
  line-height:1.5;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
body.drawer-open,body.mmenu-open{overflow:hidden}
img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer;background:none;border:0;color:inherit;padding:0}
input,select,textarea{font-family:inherit;font-size:inherit;color:inherit}
a{color:inherit;text-decoration:none}
::selection{background:var(--rausch);color:#fff}

h1,h2,h3,h4{margin:0;font-family:var(--f-sans);color:var(--ink);font-weight:700;letter-spacing:-0.01em}
p{margin:0}
em{
  font-family:var(--f-serif);font-style:italic;font-weight:500;
  font-variation-settings:"opsz" 72,"SOFT" 80,"WONK" 1;color:inherit;
}

/* ---------- primitives ---------- */
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:var(--ink);color:#fff;
  padding:14px 24px;border-radius:8px;
  font-family:var(--f-sans);font-size:16px;font-weight:500;line-height:1.25;
  cursor:pointer;transition:background .2s,transform .15s,box-shadow .2s;
  min-height:48px;
}
.btn-primary:hover{background:var(--rausch)}
.btn-primary:active{background:var(--rausch-d);transform:scale(.98)}
.btn-primary:focus-visible{outline:none;box-shadow:0 0 0 2px var(--ink),0 0 0 5px var(--bg)}
.btn-wide{width:100%;padding:16px 24px}
.btn-sm{padding:10px 18px;font-size:14px;min-height:40px}

.link-pill{
  display:inline-flex;align-items:center;justify-content:center;gap:6px;
  padding:10px 20px;border-radius:8px;
  background:transparent;color:var(--ink);
  border:1px solid var(--ink);
  font-family:var(--f-sans);font-size:14px;font-weight:500;line-height:1.25;
  cursor:pointer;transition:background .2s,color .2s;
  white-space:nowrap;
}
.link-pill:hover{background:var(--ink);color:#fff}
.link-pill--dark{background:var(--ink);color:#fff;border-color:var(--ink)}
.link-pill--dark:hover{background:var(--rausch);border-color:var(--rausch)}

/* ============================================================
   NAV (Airbnb white, sticky) — classic links layout
   ============================================================ */
.nav{
  position:sticky;top:0;z-index:40;
  background:var(--bg);border-bottom:1px solid var(--line);
}
.nav-row{
  max-width:var(--grid);margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.brand{
  display:inline-flex;align-items:center;gap:4px;
  color:var(--rausch);
  font-family:var(--f-sans);font-size:24px;font-weight:700;letter-spacing:-0.03em;
  flex:0 0 auto;
}
.brand-mark{color:var(--rausch);flex:0 0 auto}
.brand-txt{color:var(--rausch);letter-spacing:-0.02em;line-height:1}
.brand--white{color:var(--ink)}
.brand--white .brand-mark{color:var(--rausch)}
.brand--white span{color:var(--ink)}

.nav-links{
  display:flex;gap:4px;
  flex:1 1 auto;justify-content:center;
}
.nav-links a{
  font-size:14px;font-weight:500;color:var(--ink);
  padding:10px 16px;border-radius:32px;
  transition:background .2s,color .2s;
  white-space:nowrap;
}
.nav-links a:hover{background:var(--surface);color:var(--rausch)}

.nav-right{
  display:flex;align-items:center;gap:12px;flex:0 0 auto;
}
.nav-phone{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13px;font-weight:500;color:var(--ink);
  padding:8px 12px;border-radius:32px;transition:background .2s;
}
.nav-phone svg{color:var(--rausch)}
.nav-phone:hover{background:var(--surface)}

/* burger (mobile only) */
.burger{
  display:none;width:44px;height:44px;border-radius:50%;
  border:1px solid var(--line-strong);background:var(--bg);
  position:relative;flex:0 0 auto;
  transition:background .2s,box-shadow .2s;
}
.burger:hover{background:var(--surface);box-shadow:var(--shadow-hover)}
.burger span{
  position:absolute;left:11px;right:11px;height:1.8px;background:var(--ink);
  border-radius:2px;
  transition:transform .3s cubic-bezier(.77,0,.175,1),top .3s cubic-bezier(.77,0,.175,1),opacity .2s;
}
.burger span:nth-child(1){top:15px}
.burger span:nth-child(2){top:21px}
.burger span:nth-child(3){top:27px}

/* Category pill bar — flex layout, arrows DON'T overlap cats */
.cats-wrap{
  max-width:var(--grid);margin:0 auto;padding:0 16px;
  display:flex;align-items:center;gap:10px;
}
.cats{
  display:flex;gap:28px;
  overflow-x:auto;padding:10px 0;
  scrollbar-width:none;-ms-overflow-style:none;
  scroll-behavior:smooth;
  flex:1 1 auto;min-width:0;
  mask-image:linear-gradient(90deg,transparent 0,#000 12px,#000 calc(100% - 12px),transparent 100%);
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 12px,#000 calc(100% - 12px),transparent 100%);
}
.cats::-webkit-scrollbar{display:none}
.cat{
  display:inline-flex;flex-direction:column;align-items:center;gap:6px;
  padding:10px 4px 14px;
  font-size:12px;font-weight:500;color:var(--muted);
  border-bottom:2px solid transparent;
  flex:0 0 auto;opacity:.78;
  transition:opacity .2s,color .2s,border-color .2s;
  white-space:nowrap;
}
.cat svg{stroke:currentColor;color:var(--muted)}
.cat:hover{opacity:1;color:var(--ink)}
.cat:hover svg{color:var(--ink)}
.cat.is-on{color:var(--ink);opacity:1;border-bottom-color:var(--ink)}
.cat.is-on svg{color:var(--ink)}

.cats-arrow{
  flex:0 0 auto;
  width:32px;height:32px;border-radius:50%;
  background:var(--bg);color:var(--ink);
  border:1px solid var(--line-strong);
  display:inline-flex;align-items:center;justify-content:center;
  box-shadow:rgba(0,0,0,.06) 0 2px 6px;
  transition:transform .15s,box-shadow .2s;
}
.cats-arrow:hover{transform:scale(1.06);box-shadow:var(--shadow-hover)}
.cats-arrow:disabled{opacity:.35;cursor:not-allowed;transform:none;box-shadow:none}

/* ============================================================
   MMENU (mobile overlay with visible close)
   ============================================================ */
.mmenu{
  position:fixed;inset:0;z-index:55;
  background:var(--bg);
  transform:translateY(-100%);opacity:0;
  transition:transform .45s cubic-bezier(.77,0,.175,1),opacity .3s;
  overflow-y:auto;
  display:flex;flex-direction:column;
}
body.mmenu-open .mmenu{transform:translateY(0);opacity:1}
.mmenu-head{
  position:sticky;top:0;z-index:2;
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 20px;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}
.mmenu-close{
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--line-strong);background:var(--bg);
  display:inline-flex;align-items:center;justify-content:center;
  color:var(--ink);
  transition:background .2s,box-shadow .2s;
}
.mmenu-close:hover{background:var(--surface);box-shadow:var(--shadow-hover)}
.mmenu-nav{
  display:flex;flex-direction:column;padding:16px 24px 0;
}
.mmenu-nav a{
  font-size:22px;font-weight:600;line-height:1.18;letter-spacing:-0.44px;color:var(--ink);
  padding:18px 0;border-bottom:1px solid var(--line);
  opacity:0;transform:translateY(10px);
  transition:opacity .4s ease,transform .4s ease,color .2s;
}
.mmenu-nav a:hover{color:var(--rausch)}
body.mmenu-open .mmenu-nav a{opacity:1;transform:translateY(0);transition-delay:calc(var(--i,1) * 45ms + 180ms)}
.mmenu-foot{
  display:flex;flex-direction:column;gap:14px;
  padding:28px 24px 32px;margin-top:auto;
  font-size:15px;color:var(--muted);
  opacity:0;transform:translateY(10px);
  transition:opacity .4s ease,transform .4s ease;
}
.mmenu-foot a{display:inline-flex;align-items:center;gap:8px;color:var(--ink);font-weight:500}
.mmenu-foot .btn-primary{margin-top:8px}
body.mmenu-open .mmenu-foot{opacity:1;transform:translateY(0);transition-delay:450ms}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  max-width:var(--grid);margin:0 auto;padding:32px 24px 48px;
  display:grid;grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);gap:48px;align-items:center;
}
.hero-ph{
  position:relative;border-radius:32px;overflow:hidden;
  aspect-ratio:4/3;background:var(--surface);
  box-shadow:var(--shadow-card);
}
.hero-ph img{width:100%;height:100%;object-fit:cover;display:block}
.hero-tag{
  position:absolute;bottom:20px;left:20px;
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 16px;background:rgba(255,255,255,.95);
  -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
  border-radius:32px;
  font-size:13px;font-weight:500;color:var(--ink);
  box-shadow:var(--shadow-hover);
}
.hero-tag svg{color:var(--rausch)}

.hero-text{display:flex;flex-direction:column;gap:20px}
.hero-text h1{
  font-size:clamp(32px,3.6vw,56px);
  font-weight:700;line-height:1.05;letter-spacing:-0.03em;
  color:var(--ink);
}
.hero-text p{
  font-size:17px;line-height:1.5;color:var(--muted);max-width:52ch;
}
.hero-meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-top:10px}
.hm{display:inline-flex;align-items:center;gap:4px;font-size:14px;color:var(--muted);font-weight:400}
.hm b{color:var(--ink);font-weight:600}
.hm svg{color:var(--rausch)}
.hm-div{width:3px;height:3px;border-radius:50%;background:var(--line-strong)}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-h{max-width:var(--grid);margin:0 auto 32px;padding:0 24px;display:flex;flex-direction:column;gap:6px}
.section-h h2{
  font-size:28px;font-weight:700;line-height:1.14;letter-spacing:-0.44px;color:var(--ink);
}
.section-h p{font-size:15px;color:var(--muted);max-width:56ch}

/* ============================================================
   SERVICES / LISTINGS (Airbnb card grid)
   ============================================================ */
.services{padding:32px 0 64px}
.listings{
  max-width:var(--grid);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.card{
  display:flex;flex-direction:column;gap:12px;
  transition:transform .25s ease;
  background:transparent;
}
.card.is-filtered-out{display:none}
.card-media{
  position:relative;aspect-ratio:1/1;border-radius:12px;overflow:hidden;background:var(--surface);
}
.card-media img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s ease;
}
.card:hover .card-media img{transform:scale(1.03)}
.card-fav{
  position:absolute;top:12px;right:12px;
  width:32px;height:32px;border-radius:50%;
  background:transparent;color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .15s ease,color .2s;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.3));
}
.card-fav:hover{transform:scale(1.1)}
.card-fav.is-on{color:var(--rausch)}
.card-fav.is-on svg{fill:var(--rausch);stroke:var(--rausch)}
.card-pin{
  position:absolute;top:12px;left:12px;
  padding:6px 10px;background:#fff;color:var(--ink);
  border-radius:14px;
  font-size:12px;font-weight:600;
  box-shadow:rgba(0,0,0,.08) 0 2px 6px;
}
.card-pin--lux{background:#460479;color:#fff}

.card-body{display:flex;flex-direction:column;gap:2px}
.card-head{display:flex;justify-content:space-between;align-items:baseline;gap:10px}
.card-head h3{
  font-size:16px;font-weight:600;line-height:1.25;letter-spacing:-0.1px;color:var(--ink);
  flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.card-rate{
  display:inline-flex;align-items:center;gap:3px;
  font-size:14px;font-weight:500;color:var(--ink);flex:0 0 auto;
}
.card-rate svg{color:var(--ink)}
.card-body p{font-size:14px;color:var(--muted);line-height:1.43;margin-top:2px}
.card-more{font-size:13px;color:var(--muted);margin-top:4px}
.card-foot{
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  margin-top:10px;
}
.card-price{font-size:14px;color:var(--ink)}
.card-price b{font-weight:600}
.card-price i{font-style:normal;color:var(--muted);font-weight:400}

/* ============================================================
   TIER (Airbnb Plus-style)
   ============================================================ */
.tier{max-width:var(--grid);margin:48px auto;padding:0 24px}
.tier-card{
  display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);
  gap:48px;align-items:center;
  background:var(--surface);border-radius:32px;overflow:hidden;
  min-height:400px;
}
.tier-copy{padding:56px 48px;display:flex;flex-direction:column;gap:16px;align-items:flex-start}
.tier-kicker{
  font-family:var(--f-sans);font-size:11px;font-weight:700;letter-spacing:.32px;
  text-transform:uppercase;color:#460479;
}
.tier-copy h2{
  font-size:clamp(24px,2.8vw,36px);font-weight:700;line-height:1.15;letter-spacing:-0.44px;color:var(--ink);
}
.tier-copy p{font-size:15px;color:var(--muted);line-height:1.5;max-width:46ch}
.tier-cta{display:flex;align-items:center;gap:20px;margin-top:8px;flex-wrap:wrap}
.tier-price{font-size:15px;color:var(--muted)}
.tier-price b{font-family:var(--f-sans);font-size:22px;font-weight:700;color:var(--ink);letter-spacing:-0.44px}
.tier-price i{font-style:normal}
.tier-img{margin:0;height:100%;aspect-ratio:4/5;overflow:hidden}
.tier-img img{width:100%;height:100%;object-fit:cover;display:block}

/* ============================================================
   HOSTS / DOCTORS
   ============================================================ */
.hosts{padding:48px 0 64px}
.hosts-row{
  max-width:var(--grid);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.host{
  display:flex;flex-direction:column;gap:14px;
  padding:20px;border-radius:20px;
  box-shadow:var(--shadow-card);
  background:var(--bg);
  transition:box-shadow .25s;
}
.host:hover{box-shadow:rgba(0,0,0,.02) 0 0 0 1px,rgba(0,0,0,.06) 0 6px 14px,rgba(0,0,0,.12) 0 10px 20px -6px}
.host-img{
  aspect-ratio:1/1;border-radius:14px;overflow:hidden;background:var(--surface);
}
.host-img img{width:100%;height:100%;object-fit:cover}
.host-meta{display:flex;flex-direction:column;gap:4px;flex:1}
.host-meta h3{font-size:18px;font-weight:700;line-height:1.18;letter-spacing:-0.18px;color:var(--ink)}
.host-role{font-size:14px;color:var(--rausch);font-weight:600}
.host-stats{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--muted);margin-top:4px}
.host-stats svg{color:var(--ink)}
.host-meta p{font-size:14px;color:var(--muted);line-height:1.43;margin:6px 0 12px}
.host-meta .link-pill{align-self:stretch}

/* ============================================================
   RESULTS — before/after
   ============================================================ */
.results{padding:48px 0 64px}
.res-grid{
  max-width:var(--grid);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.res{margin:0;display:flex;flex-direction:column;gap:12px}
.res-ba{
  position:relative;aspect-ratio:4/5;
  border-radius:20px;overflow:hidden;background:var(--surface);
  box-shadow:var(--shadow-card);
  user-select:none;touch-action:pan-y;
}
.res-ba img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;pointer-events:none}
.res-before{clip-path:inset(0 50% 0 0);transition:clip-path .12s ease}
.res-divider{
  position:absolute;top:0;bottom:0;left:50%;width:2px;background:#fff;
  box-shadow:0 0 10px rgba(0,0,0,.3);
  pointer-events:none;transform:translateX(-50%);
  transition:left .12s ease;
}
.res-divider::before{
  content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:40px;height:40px;border-radius:50%;background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
}
.res-divider::after{
  content:"⇆";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  color:var(--ink);font-size:14px;font-weight:700;
}
.res-slider{
  position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:ew-resize;margin:0;
}
.res-lbl{
  position:absolute;top:14px;
  padding:4px 12px;border-radius:14px;
  background:rgba(0,0,0,.7);color:#fff;
  font-size:12px;font-weight:600;pointer-events:none;
}
.res-lbl--l{left:14px}
.res-lbl--r{right:14px}
.res figcaption{font-size:14px;color:var(--muted);padding:0 4px;line-height:1.43}
.res figcaption b{color:var(--ink);font-weight:600}

/* ============================================================
   PRICING
   ============================================================ */
.pricing{padding:48px 0 64px;background:var(--bg-2)}
.price-cats{
  max-width:var(--grid);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
}
.pc{
  background:var(--bg);border-radius:20px;padding:32px 28px;
  box-shadow:var(--shadow-card);
}
.pc h3{
  font-size:18px;font-weight:700;letter-spacing:-0.18px;color:var(--ink);
  margin-bottom:18px;padding-bottom:14px;border-bottom:1px solid var(--line);
}
.pc ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.pc li{
  display:flex;justify-content:space-between;align-items:baseline;gap:16px;
  font-size:14px;color:var(--muted);line-height:1.43;
}
.pc li i{
  font-style:normal;font-weight:600;color:var(--ink);font-size:15px;flex:0 0 auto;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews{padding:48px 0 64px}
.section-h .rev-total{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--ink);font-weight:700;
}
.section-h .rev-total svg{color:var(--ink)}
.section-h .rev-count{color:var(--muted);font-weight:500}
.rev-grid{
  max-width:var(--grid);margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:24px;
}
.rev{
  margin:0;padding:28px;
  background:var(--bg);border-radius:20px;
  box-shadow:var(--shadow-card);
  display:flex;flex-direction:column;gap:16px;
}
.rev-head{display:flex;align-items:center;gap:12px}
.rev-ava{
  width:44px;height:44px;border-radius:50%;
  background:var(--rausch);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--f-sans);font-size:18px;font-weight:700;
  flex:0 0 auto;
}
.rev-head div:last-child{display:flex;flex-direction:column;gap:2px;min-width:0}
.rev-name{font-size:15px;font-weight:600;color:var(--ink);line-height:1.3}
.rev-date{font-size:13px;color:var(--muted)}
.rev blockquote{
  margin:0;font-size:15px;line-height:1.5;color:var(--ink);
}
.rev-stars{display:inline-flex;gap:2px;color:var(--ink)}

/* ============================================================
   FOOTER
   ============================================================ */
.foot{background:var(--bg-2);padding:64px 24px 24px;border-top:1px solid var(--line)}
.foot-cta-block{
  max-width:var(--grid);margin:0 auto 40px;
  padding:48px 40px;background:var(--bg);border-radius:32px;
  box-shadow:var(--shadow-card);
  display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;
}
.foot-cta-block h2{
  font-size:clamp(24px,2.4vw,32px);font-weight:700;line-height:1.2;letter-spacing:-0.44px;color:var(--ink);
}
.foot-map{
  max-width:var(--grid);margin:0 auto 48px;border-radius:20px;overflow:hidden;
  aspect-ratio:4/1;box-shadow:var(--shadow-card);
}
.foot-grid{
  max-width:var(--grid);margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;
  padding:24px 0 32px;border-bottom:1px solid var(--line);
}
.foot-col{display:flex;flex-direction:column;gap:10px}
.foot-h{font-size:13px;font-weight:700;color:var(--ink);margin-bottom:4px}
.foot-col a,.foot-col span{
  display:inline-flex;align-items:center;gap:6px;
  font-size:14px;color:var(--muted);line-height:1.43;
  transition:color .2s;
}
.foot-col a:hover{color:var(--ink);text-decoration:underline}
.foot-bot{
  max-width:var(--grid);margin:24px auto 0;padding-top:8px;
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  font-size:13px;color:var(--muted);
}

/* ============================================================
   DRAWER
   ============================================================ */
.drawer{position:fixed;inset:0;z-index:60}
.drawer[hidden]{display:none}
.drawer-back{
  position:absolute;inset:0;background:rgba(0,0,0,.5);
  opacity:0;transition:opacity .3s ease;
}
.drawer.is-open .drawer-back{opacity:1}
.drawer-panel{
  position:absolute;top:0;right:0;bottom:0;
  width:min(480px,100%);background:var(--bg);
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(.77,0,.175,1);
  display:flex;flex-direction:column;
  box-shadow:-8px 0 30px rgba(0,0,0,.14);
  overflow-y:auto;
}
.drawer.is-open .drawer-panel{transform:translateX(0)}

.drawer-head{
  position:sticky;top:0;z-index:2;
  display:flex;align-items:center;gap:16px;
  padding:18px 24px;
  background:rgba(255,255,255,.94);-webkit-backdrop-filter:saturate(180%) blur(14px);backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}
.drawer-head h2{
  font-size:16px;font-weight:600;color:var(--ink);margin:0;flex:1;text-align:center;
}
.drawer-close{
  width:32px;height:32px;border-radius:50%;
  background:transparent;color:var(--ink);
  display:inline-flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.drawer-close:hover{background:var(--surface)}

.drawer-form{padding:24px;display:flex;flex-direction:column;gap:16px}
.df-row{display:flex;gap:12px}
.df-row .df{flex:1}

.df{display:flex;flex-direction:column;gap:6px}
.df > span{
  font-size:13px;font-weight:600;color:var(--ink);
  display:flex;gap:6px;align-items:baseline;
}
.df > span i{font-family:var(--f-serif);font-style:italic;font-weight:400;color:var(--muted)}
.df input[type=text],.df input[type=tel],.df input[type=email],.df input[type=date],.df select,.df textarea{
  padding:14px 16px;
  background:var(--bg);
  border:1px solid var(--line-strong);
  border-radius:8px;
  font-size:15px;line-height:1.43;color:var(--ink);
  transition:border-color .2s,box-shadow .2s;
  font-family:var(--f-sans);width:100%;
}
.df select{
  appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,var(--ink) 50%),linear-gradient(-45deg,transparent 50%,var(--ink) 50%);
  background-position:calc(100% - 18px) 52%,calc(100% - 12px) 52%;
  background-size:6px 6px;background-repeat:no-repeat;padding-right:36px;
}
.df input:focus,.df select:focus,.df textarea:focus{
  outline:none;border-color:var(--ink);box-shadow:0 0 0 2px var(--ink);
}
.df.is-invalid input,.df.is-invalid select{border-color:var(--err);box-shadow:0 0 0 1px var(--err)}
.df-err{
  font-family:var(--f-sans);font-style:normal;font-size:13px;color:var(--err);
  display:none;
}
.df.is-invalid .df-err{display:block}
.df--check{flex-direction:row;align-items:flex-start;gap:10px;font-size:14px;color:var(--muted);line-height:1.4}
.df--check input{margin-top:3px;accent-color:var(--rausch);width:18px;height:18px}
.df--check a{color:var(--ink);font-weight:500;text-decoration:underline}

.drawer-sum{
  background:var(--bg-2);border-radius:14px;padding:16px;
  display:flex;flex-direction:column;gap:6px;margin-top:4px;
}
.ds-row{display:flex;justify-content:space-between;font-size:14px;color:var(--muted)}
.ds-row b{color:var(--ink);font-weight:600}
.ds-free{color:var(--ink);background:#d4f4dd;padding:2px 8px;border-radius:8px;font-size:12px}

.drawer-hint{font-size:12px;color:var(--muted);text-align:center;line-height:1.4;margin-top:-4px}

.drawer-ok{padding:40px 24px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:14px}
.dok-ic{
  width:64px;height:64px;border-radius:50%;
  background:var(--rausch);color:#fff;
  display:inline-flex;align-items:center;justify-content:center;
}
.drawer-ok h3{font-size:22px;font-weight:700;letter-spacing:-0.44px;color:var(--ink)}
.drawer-ok p{font-size:15px;color:var(--muted);line-height:1.5;max-width:36ch}
.drawer-ok b{color:var(--ink);font-weight:600}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1128px){
  .listings{grid-template-columns:repeat(3,1fr)}
  .hosts-row{grid-template-columns:repeat(3,1fr)}
  .hosts-row > .host:nth-child(n+4){display:none}
  .res-grid{grid-template-columns:repeat(2,1fr)}
  .res-grid > .res:nth-child(3){display:none}
  .price-cats{grid-template-columns:repeat(2,1fr)}
  .tier-card{grid-template-columns:1fr}
  .tier-img{aspect-ratio:16/9}
  .foot-grid{grid-template-columns:repeat(2,1fr)}
  .hero{grid-template-columns:1fr;gap:24px}
  .hero-ph{aspect-ratio:16/10}
}

@media (max-width:950px){
  .nav-links{display:none}
  .nav-phone span{display:none}
  .nav-phone{padding:8px;width:40px;height:40px;justify-content:center;border:1px solid var(--line-strong);border-radius:50%}
  .nav-right .btn-primary{display:none}
  .burger{display:inline-block}
  .listings{grid-template-columns:repeat(2,1fr)}
  .rev-grid{grid-template-columns:1fr}
}

@media (max-width:744px){
  .nav-row{gap:10px;padding:12px 16px}
  .brand{font-size:22px}
  .cats-wrap{padding:0 12px;gap:6px}
  .cats{gap:22px}
  .cats-arrow{display:none}

  .hero{padding:20px 16px 32px}

  .section-h{margin-bottom:24px}
  .section-h h2{font-size:24px}

  .services,.hosts,.results,.pricing,.reviews{padding:32px 0 48px}
  .listings,.hosts-row,.res-grid,.price-cats,.rev-grid{padding:0 16px;gap:16px}
  .hosts-row,.res-grid{grid-template-columns:1fr}
  .hosts-row > .host:nth-child(n+3){display:block}

  .tier{padding:0 16px;margin:32px auto}
  .tier-copy{padding:32px 24px}

  .foot{padding:48px 16px 24px}
  .foot-cta-block{padding:32px 24px;flex-direction:column;align-items:flex-start}
  .foot-grid{grid-template-columns:1fr;gap:24px}
  .foot-map{aspect-ratio:4/3;margin-bottom:32px}
}

@media (max-width:520px){
  .listings{grid-template-columns:1fr}
  .price-cats{grid-template-columns:1fr}
  .drawer-panel{width:100%}
  .df-row{flex-direction:column}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s !important;transition-duration:.001s !important}
}
