/* ============================================================
   ВИЛЬВЕТ / VILVET — массажный салон, Москва, Китай-Город
   Light premium: ivory + champagne gold + deep emerald
   Type: Prata (display) + Jost (body)
   ============================================================ */

:root {
  --bg:        #FBF7F0;
  --bg-alt:    #F4EDDF;
  --bg-deep:   #EFE6D3;
  --card:      #FFFFFF;
  --ink:       #322817;
  --muted:     #80735A;
  --line:      #E2D7BF;

  --gold:      #B68A33;
  --gold-2:    #D7BC76;
  --gold-3:    #9A7224;
  --gold-grad: linear-gradient(118deg, #c8a14a 0%, #ecd9a2 45%, #b68a33 100%);

  --emerald:   #1C4A3E;
  --emerald-2: #143830;
  --emerald-3: #2E6B5A;

  --serif: 'Prata', 'Georgia', serif;
  --sans:  'Jost', 'Segoe UI', sans-serif;

  --shadow-soft: 0 18px 50px -18px rgba(80, 62, 28, .22);
  --shadow-card: 0 10px 34px -14px rgba(80, 62, 28, .18);
  --arch: 240px 240px 18px 18px;
  --ease: cubic-bezier(.22, .8, .26, .99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 2000;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--gold-2); color: var(--emerald-2); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: .01em;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- eyebrow + headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ''; width: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: ''; width: 38px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); color: var(--ink); }
.section-head h2 em { font-style: italic; color: var(--gold-3); }
.section-head .sub { margin-top: 18px; color: var(--muted); font-size: 18px; font-weight: 300; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 38px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s;
  position: relative; overflow: hidden;
}
.btn-gold {
  background: var(--gold-grad);
  background-size: 160% 100%;
  color: #2E2410;
  box-shadow: 0 12px 30px -10px rgba(182, 138, 51, .55);
}
.btn-gold:hover { transform: translateY(-3px); background-position: 90% 0; box-shadow: 0 18px 38px -10px rgba(182, 138, 51, .65); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.btn-ghost:hover { background: rgba(182, 138, 51, .08); transform: translateY(-3px); }
.btn-emerald { background: var(--emerald); color: #EBDFC2; }
.btn-emerald:hover { background: var(--emerald-2); transform: translateY(-3px); }

/* ---------- top bar + nav ---------- */
.topbar {
  background: var(--emerald-2); color: #CBBE9C;
  font-size: 13.5px; letter-spacing: .04em;
  position: relative; z-index: 60;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 18px; }
.topbar a:hover { color: #F0E3BE; }
.topbar .tb-left { display: flex; gap: 26px; align-items: center; }
.topbar .tb-metro::before {
  content: 'М'; display: inline-flex; align-items: center; justify-content: center;
  width: 17px; height: 17px; margin-right: 8px;
  border-radius: 50%; background: #C8542E; color: #fff;
  font-size: 10.5px; font-weight: 600; vertical-align: -2px;
}
.lang-switch { display: flex; gap: 3px; }
.lang-switch a {
  padding: 2px 9px; border-radius: 3px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
}
.lang-switch a.active { background: var(--gold); color: #1d1505; }
.lang-switch a:not(.active):hover { background: rgba(255,255,255,.1); }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 8px 30px -16px rgba(80,62,28,.25); }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand svg { width: 46px; height: 46px; flex: none; }
.brand .brand-name {
  font-family: var(--serif); font-size: 23px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--ink); line-height: 1;
}
.brand .brand-sub {
  display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase; color: var(--gold-3); margin-top: 5px;
}

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; letter-spacing: .06em;
  position: relative; padding: 6px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--gold-3); }

.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-phone { font-size: 16px; font-weight: 500; letter-spacing: .03em; white-space: nowrap; }
.nav-phone span { display: block; font-size: 11px; font-weight: 400; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; }
.nav .btn { padding: 13px 26px; font-size: 12.5px; }

.burger { display: none; width: 44px; height: 44px; background: none; border: none; cursor: pointer; position: relative; z-index: 70; }
.burger span {
  display: block; width: 26px; height: 2px; background: var(--ink);
  margin: 6px auto; transition: .35s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero .container {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 70px; align-items: center;
  padding-top: 84px; padding-bottom: 110px;
}
.hero-watermark {
  position: absolute; right: -4%; top: -12%;
  font-family: var(--serif); font-size: 560px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(182, 138, 51, .14);
  pointer-events: none; user-select: none;
}
.hero h1 {
  font-size: clamp(46px, 6.2vw, 78px);
  letter-spacing: .04em;
  margin: 6px 0 10px;
}
.hero h1 .accent { color: var(--gold-3); font-style: italic; }
.hero .tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2vw, 24px); color: var(--emerald);
  margin-bottom: 26px;
}
.hero .lead { color: var(--muted); font-weight: 300; font-size: 18px; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.hero-stats .stat strong {
  display: block; font-family: var(--serif);
  font-size: 30px; color: var(--gold-3);
}
.hero-stats .stat span { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.hero-visual { position: relative; }
.hero-visual .frame {
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.hero-visual .frame img { width: 100%; height: 600px; object-fit: cover; transform: scale(1.02); }
.hero-visual::before {
  content: ''; position: absolute; inset: -22px 22px 22px -22px;
  border: 1px solid var(--gold-2);
  border-radius: var(--arch);
  pointer-events: none;
}
.hero-badge {
  position: absolute; left: -34px; bottom: 46px;
  background: var(--emerald); color: #F0E3BE;
  padding: 22px 28px;
  box-shadow: var(--shadow-soft);
  max-width: 240px;
}
.hero-badge strong { font-family: var(--serif); font-size: 26px; display: block; color: #EBD8A2; }
.hero-badge span { font-size: 13px; letter-spacing: .06em; line-height: 1.45; display: block; margin-top: 4px; }

/* marquee */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--card);
  overflow: hidden; white-space: nowrap;
  padding: 16px 0;
}
.marquee-inner { display: inline-block; animation: marquee 38s linear infinite; }
.marquee span {
  font-family: var(--serif); font-size: 15px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
  margin: 0 28px;
}
.marquee i { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- program cards ---------- */
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.prog-card {
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  position: relative;
}
.prog-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -20px rgba(80,62,28,.3); }
.prog-card .pic { overflow: hidden; position: relative; }
.prog-card .pic img { height: 240px; width: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.prog-card:hover .pic img { transform: scale(1.06); }
.prog-card .pic .from {
  position: absolute; right: 0; bottom: 0;
  background: var(--gold-grad); color: #2E2410;
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  padding: 8px 16px;
}
.prog-card .body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.prog-card h3 { font-size: 22px; margin-bottom: 12px; }
.prog-card p { color: var(--muted); font-size: 15.5px; font-weight: 300; flex: 1; }
.prog-card .more {
  margin-top: 22px; font-size: 13px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-3);
  display: inline-flex; align-items: center; gap: 10px;
}
.prog-card .more::after { content: '→'; transition: transform .3s var(--ease); }
.prog-card:hover .more::after { transform: translateX(6px); }

/* ---------- price table ---------- */
.price-block { background: var(--card); box-shadow: var(--shadow-card); padding: 44px 48px; }
.price-block + .price-block { margin-top: 26px; }
.price-block h3 {
  font-size: 24px; margin-bottom: 6px;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.price-block h3 .note { font-family: var(--sans); font-size: 13.5px; color: var(--muted); letter-spacing: .04em; }
.price-rows { margin-top: 20px; }
.price-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 0;
  font-size: 17px;
}
.price-row .dur { color: var(--ink); font-weight: 400; white-space: nowrap; }
.price-row .dots { flex: 1; border-bottom: 1.5px dotted var(--gold-2); transform: translateY(-4px); }
.price-row .val { font-family: var(--serif); font-size: 20px; color: var(--emerald); white-space: nowrap; }
.price-row .val small { font-size: 14px; color: var(--muted); font-family: var(--sans); }
.price-free .val { color: var(--gold-3); text-transform: uppercase; font-size: 16px; letter-spacing: .14em; }

/* ---------- team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { text-align: center; }
.team-card .pic {
  border-radius: var(--arch);
  overflow: hidden; box-shadow: var(--shadow-card);
  margin-bottom: 24px; position: relative;
}
.team-card .pic img { height: 420px; width: 100%; object-fit: cover; object-position: top; transition: transform .7s var(--ease); }
.team-card:hover .pic img { transform: scale(1.05); }
.team-card h3 { font-size: 24px; }
.team-card .role { color: var(--gold-3); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; margin: 8px 0 12px; }
.team-card p { color: var(--muted); font-size: 15px; font-weight: 300; max-width: 320px; margin: 0 auto; }

/* ---------- reviews ---------- */
.reviews-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.review-slide {
  display: none;
  text-align: center;
  animation: fadeUp .7s var(--ease);
}
.review-slide.active { display: block; }
.review-slide .stars { color: var(--gold); font-size: 19px; letter-spacing: 8px; margin-bottom: 26px; }
.review-slide blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.55;
  color: var(--ink);
}
.review-slide .author { margin-top: 28px; font-size: 14px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.review-slide .author b { color: var(--gold-3); font-weight: 600; }
.review-nav { display: flex; justify-content: center; gap: 12px; margin-top: 44px; }
.review-nav button {
  width: 34px; height: 4px; border: none; cursor: pointer;
  background: var(--line); transition: background .3s;
}
.review-nav button.active { background: var(--gold); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--emerald-2);
  color: #E9DCBC;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'V';
  position: absolute; right: 4%; top: 50%; transform: translateY(-54%);
  font-family: var(--serif); font-size: 380px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(215, 188, 118, .18);
}
.cta-band .container {
  padding-top: 90px; padding-bottom: 90px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(28px, 3.6vw, 42px); color: #F4E9C8; max-width: 560px; }
.cta-band h2 em { color: var(--gold-2); font-style: italic; }
.cta-band p { margin-top: 14px; color: #B9AD8C; font-weight: 300; max-width: 520px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero .container { padding-top: 80px; padding-bottom: 80px; position: relative; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); max-width: 800px; }
.page-hero h1 em { color: var(--gold-3); font-style: italic; }
.page-hero .crumbs { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.page-hero .crumbs a:hover { color: var(--gold-3); }
.page-hero .crumbs i { font-style: normal; color: var(--gold); margin: 0 10px; }
.page-hero .lead { margin-top: 20px; color: var(--muted); font-weight: 300; font-size: 18px; max-width: 640px; }
.page-hero::after {
  content: 'V';
  position: absolute; right: -2%; bottom: -45%;
  font-family: var(--serif); font-size: 340px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(182, 138, 51, .12);
  pointer-events: none;
}

/* ---------- program detail ---------- */
.prog-detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.prog-detail .pic { border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-soft); position: sticky; top: 120px; }
.prog-detail .pic img { width: 100%; height: 560px; object-fit: cover; }
.prog-detail h2 { font-size: 30px; margin-bottom: 18px; }
.prog-detail .text p { color: var(--muted); font-weight: 300; margin-bottom: 16px; }
.benefits { margin: 30px 0 36px; }
.benefits li {
  padding: 13px 0 13px 38px; position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.benefits li::before {
  content: '◆'; position: absolute; left: 4px; top: 13px;
  color: var(--gold); font-size: 12px;
}
.prog-price-card {
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 30px 34px; margin: 34px 0;
}
.prog-price-card h3 { font-size: 19px; margin-bottom: 6px; }

/* ---------- about split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .pic { border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.split .pic img { width: 100%; height: 560px; object-fit: cover; }
.split .pic.frame-off::before {
  content: ''; position: absolute; inset: 18px;
  border: 1px solid rgba(255,255,255,.55); border-radius: 220px 220px 10px 10px;
  pointer-events: none; z-index: 2;
}
.split h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 22px; }
.split h2 em { color: var(--gold-3); font-style: italic; }
.split p { color: var(--muted); font-weight: 300; margin-bottom: 16px; }

.ticks li { padding: 10px 0 10px 36px; position: relative; font-size: 16.5px; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 18px; height: 10px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step::before {
  counter-increment: step; content: '0' counter(step);
  font-family: var(--serif); font-size: 54px; color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: block; margin-bottom: 14px; line-height: 1;
}
.step h3 { font-size: 17px; font-family: var(--sans); font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); font-weight: 300; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery .g-item { overflow: hidden; box-shadow: var(--shadow-card); }
.gallery .g-item img { width: 100%; height: 300px; object-fit: cover; transition: transform .7s var(--ease); }
.gallery .g-item:hover img { transform: scale(1.07); }
.gallery .g-tall img { height: 100%; min-height: 622px; }

/* ---------- contacts ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-list li { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list .ico {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt); border: 1px solid var(--gold-2); color: var(--gold-3);
}
.contact-list b { display: block; font-size: 12.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 4px; }
.contact-list span, .contact-list a.val { font-size: 18px; }
.contact-list a.val:hover { color: var(--gold-3); }

.form-card { background: var(--card); box-shadow: var(--shadow-card); padding: 46px 50px; }
.form-card h3 { font-size: 26px; margin-bottom: 10px; }
.form-card .hint { color: var(--muted); font-size: 15px; font-weight: 300; margin-bottom: 30px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line);
  transition: border .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 138, 51, .14);
}
.form-ok {
  display: none; text-align: center; padding: 40px 0;
}
.form-ok .big { font-family: var(--serif); font-size: 26px; color: var(--emerald); margin-bottom: 10px; }

.map-frame { border: 0; width: 100%; height: 440px; filter: sepia(.22) saturate(.86); }

/* ---------- footer ---------- */
.footer { background: var(--emerald-2); color: #A99F82; font-size: 15px; }
.footer .top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 44px;
  padding: 70px 0 54px;
}
.footer .brand .brand-name { color: #F0E3BE; }
.footer .brand .brand-sub { color: var(--gold-2); }
.footer p.about { margin-top: 18px; font-weight: 300; max-width: 320px; }
.footer h4 {
  font-family: var(--sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: #D7BC76;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 11px; }
.footer a:hover { color: #F0E3BE; }
.footer .bottom {
  border-top: 1px solid rgba(215, 188, 118, .18);
  padding: 24px 0;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px;
}

/* ---------- reveal animations ---------- */
.rv { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .12s; } .rv-d2 { transition-delay: .24s; } .rv-d3 { transition-delay: .36s; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; inset: 0; z-index: 60;
    background: var(--bg);
    padding: 130px 40px 40px;
  }
  .nav-links.mobile-open a { font-size: 24px; font-family: var(--serif); padding: 16px 0; border-bottom: 1px solid var(--line); }
  .hero .container { grid-template-columns: 1fr; gap: 50px; padding-bottom: 80px; }
  .hero-visual .frame img { height: 460px; }
  .hero-watermark { display: none; }
  .prog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .prog-detail { grid-template-columns: 1fr; }
  .prog-detail .pic { position: static; }
  .prog-detail .pic img { height: 420px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer .top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .topbar .tb-left { gap: 14px; font-size: 12.5px; }
  .topbar .tb-hours { display: none; }
  .nav-phone { display: none; }
  .nav .btn { display: none; }
  .prog-grid, .team-grid, .gallery { grid-template-columns: 1fr; }
  .gallery .g-tall img { min-height: 300px; height: 300px; }
  .hero-badge { left: 12px; bottom: 18px; padding: 16px 20px; }
  .hero-visual .frame img { height: 380px; }
  .price-block { padding: 30px 24px; }
  .form-card { padding: 34px 26px; }
  .steps { grid-template-columns: 1fr; }
  .footer .top { grid-template-columns: 1fr; gap: 34px; }
}

/* ---------- WP additions ---------- */
body.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .nav { top: 46px; } }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
