:root {
  --bg: #f6f7fb;
  --bg2: #ffffff;
  --ink: #0b1220;
  --muted: rgba(11, 18, 32, 0.68);
  --muted2: rgba(11, 18, 32, 0.54);
  --line: rgba(11, 18, 32, 0.10);
  --shadow: 0 18px 55px rgba(11, 18, 32, 0.10);
  --shadow2: 0 12px 30px rgba(11, 18, 32, 0.10);
  --radius: 18px;
  --radius2: 24px;
  --accent: #2f6df6;
  --good: #13a87a;
  --warm: #c9a35c;
  --focus: 0 0 0 4px rgba(47, 109, 246, 0.18);
  --serif: "Playfair Display", ui-serif, Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: radial-gradient(900px 500px at 18% -10%, rgba(47, 109, 246, 0.10), transparent 60%),
    radial-gradient(900px 520px at 90% 5%, rgba(201, 163, 92, 0.10), transparent 58%), var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; border: 0 !important; }
.skip-link { position: absolute; left: 14px; top: 14px; padding: 10px 14px; border-radius: 12px; background: var(--bg2); box-shadow: var(--shadow2); transform: translateY(-160%); transition: transform 180ms ease; z-index: 9999; }
.skip-link:focus { transform: translateY(0); outline: none; box-shadow: var(--shadow2), var(--focus); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  margin: 12px 12px 0;
  padding: 0 0 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(232, 228, 218, 0.72), rgba(218, 228, 210, 0.65));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(91, 140, 76, 0.12);
  box-shadow: 0 12px 48px rgba(11, 18, 32, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header[data-elevate="true"] {
  background: linear-gradient(135deg, rgba(232, 228, 218, 0.88), rgba(218, 228, 210, 0.82));
  box-shadow: 0 16px 56px rgba(11, 18, 32, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 10px 20px 6px 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.nav { position: relative; display: flex; justify-content: flex-end; align-items: center; min-width: 0; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; overflow: hidden; flex-shrink: 0; display: grid; place-items: center; background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(91, 140, 76, 0.15); box-shadow: 0 8px 24px rgba(11, 18, 32, 0.06); }
.brand-logo { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: grid; }
.brand-name { font-weight: 700; letter-spacing: -0.02em; }
.brand-sub { font-size: 12.5px; color: var(--muted2); }
.nav { position: relative; }
.nav-links { display: flex; align-items: center; gap: 12px; padding: 6px 12px 6px 16px; border-radius: 999px; border: 1px solid rgba(91, 140, 76, 0.10); background: rgba(255, 255, 255, 0.45); flex-shrink: 0; }
.nav-links a { font-weight: 600; font-size: 13.5px; color: rgba(11, 18, 32, 0.78); padding: 8px 10px; border-radius: 12px; transition: background 160ms ease, color 160ms ease; }
.nav-links a:hover { background: rgba(11, 18, 32, 0.06); color: rgba(11, 18, 32, 0.92); }
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-btn {
  font: inherit;
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(11, 18, 32, 0.78);
  padding: 8px 10px;
  border-radius: 12px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.nav-dropdown-btn:hover { background: rgba(11, 18, 32, 0.06); color: rgba(11, 18, 32, 0.92); }
.nav-dropdown-btn { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-caret { font-size: 10px; color: rgba(11, 18, 32, 0.55); line-height: 1; }
.nav-dropdown-menu {
  position: absolute;
  top: 46px;
  left: 0;
  width: min(320px, 92vw);
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 60px rgba(11, 18, 32, 0.14);
  padding: 10px;
  z-index: 100;
}
.nav-dropdown-menu--animate {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-dropdown-menu--animate.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-group { padding: 8px 6px; }
.nav-dropdown-group:first-child { padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid rgba(11, 18, 32, 0.08); }
.nav-dropdown-group-title {
  font-weight: 1000;
  letter-spacing: -0.02em;
  font-size: 13.2px;
  color: rgba(11, 18, 32, 0.70);
  margin-bottom: 6px;
}
.nav-dropdown-link {
  display: block;
  padding: 9px 10px;
  border-radius: 14px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.80);
}
.nav-dropdown-link:hover { background: rgba(11, 18, 32, 0.06); color: rgba(11, 18, 32, 0.96); }

.nav-dropdown-header {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: rgba(11, 18, 32, 0.88);
  padding: 10px 12px 8px;
  margin: 0 2px 6px;
  border-bottom: 1px solid rgba(91, 140, 76, 0.18);
}
.nav-dropdown-menu[hidden] { display: none !important; }
.nav-toggle { display: none; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(255, 255, 255, 0.70); border-radius: 14px; width: 40px; height: 40px; box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08); cursor: pointer; }
.nav-toggle:focus { outline: none; box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08), var(--focus); }
.nav-toggle-lines { display: inline-block; width: 18px; height: 12px; position: relative; }
.nav-toggle-lines::before, .nav-toggle-lines::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: rgba(11, 18, 32, 0.74); border-radius: 2px; transition: transform 160ms ease, top 160ms ease; }
.nav-toggle-lines::before { top: 2px; }
.nav-toggle-lines::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after { top: 5px; transform: rotate(-45deg); }
.nav-links .btn-booking {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, #5B8C4C, #6B9C5C);
  color: white;
  border: 1px solid rgba(91, 140, 76, 0.35);
  box-shadow: 0 10px 32px rgba(91, 140, 76, 0.28);
}
.nav-links .btn-booking:hover { background: linear-gradient(135deg, #528a44, #5B8C4C); box-shadow: 0 12px 38px rgba(91, 140, 76, 0.32); color: white; }
.header-cta { display: flex; align-items: center; gap: 10px; }

/* Lang */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 10px; height: 40px; padding: 0 12px; border-radius: 999px; border: 1px solid rgba(11, 18, 32, 0.12); background: rgba(255, 255, 255, 0.70); box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08); cursor: pointer; font-weight: 950; color: rgba(11, 18, 32, 0.82); }
.lang-btn:focus { outline: none; box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08), var(--focus); }
.lang-caret { width: 10px; height: 10px; display: inline-block; border-right: 2px solid rgba(11, 18, 32, 0.58); border-bottom: 2px solid rgba(11, 18, 32, 0.58); transform: rotate(45deg) translateY(-1px); margin-left: 2px; }
.lang-menu { position: absolute; top: 52px; right: 0; width: 180px; border-radius: 18px; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(255, 255, 255, 0.96); box-shadow: 0 12px 36px rgba(11, 18, 32, 0.10); padding: 8px; display: grid; gap: 6px; z-index: 80; }
.lang-menu[hidden] { display: none !important; }
.lang-item { text-align: left; border-radius: 14px; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(246, 247, 251, 0.70); padding: 10px; cursor: pointer; font-weight: 850; }
.lang-item:focus { outline: none; }
.lang-item:hover { background: rgba(255, 255, 255, 0.92); }
.lang-item[aria-selected="true"] { background: rgba(255, 255, 255, 0.95); border-color: rgba(47, 109, 246, 0.22); }
.lang-item:focus-visible { box-shadow: 0 0 0 2px rgba(47, 109, 246, 0.25); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; border-radius: 999px; font-weight: 700; letter-spacing: -0.01em; border: 1px solid transparent; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; user-select: none; cursor: pointer; font-family: inherit; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn:focus { outline: none; box-shadow: var(--focus); }
.btn-primary { background: linear-gradient(135deg, var(--accent), rgba(47, 109, 246, 0.82)); color: white; box-shadow: 0 18px 40px rgba(47, 109, 246, 0.22); }
.btn-primary:hover { box-shadow: 0 22px 46px rgba(47, 109, 246, 0.28); }
.btn-ghost { background: rgba(255, 255, 255, 0.70); border-color: rgba(11, 18, 32, 0.12); color: rgba(11, 18, 32, 0.86); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.92); }

/* Hero / About CTA: two equal buttons — brand green + Instagram gradient */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 18px;
}
.about-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.hero-actions .btn,
.about-actions .btn {
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  min-width: 0;
}
.btn-hero-book {
  background: linear-gradient(135deg, #5B8C4C, #6B9C5C);
  color: white;
  border: 1px solid rgba(91, 140, 76, 0.35);
  box-shadow: 0 10px 32px rgba(91, 140, 76, 0.28);
}
.btn-hero-book:hover {
  background: linear-gradient(135deg, #528a44, #5B8C4C);
  color: white;
  box-shadow: 0 12px 38px rgba(91, 140, 76, 0.32);
}
.btn-hero-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background-size: 200% 200%;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 32px rgba(220, 39, 67, 0.35);
}
.btn-hero-ig:hover {
  color: white;
  box-shadow: 0 12px 38px rgba(220, 39, 67, 0.4);
  filter: brightness(1.06);
}
.btn-ig-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-ig-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.btn-soft { background: linear-gradient(135deg, rgba(201, 163, 92, 0.18), rgba(47, 109, 246, 0.12)); border-color: rgba(11, 18, 32, 0.10); color: rgba(11, 18, 32, 0.88); }
.btn-soft:hover { background: linear-gradient(135deg, rgba(201, 163, 92, 0.22), rgba(47, 109, 246, 0.14)); }

/* Messenger buttons — same weight, brand colors (muted), icons, hover */
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.btn-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  color: #fff;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}
.btn-messenger:hover { transform: scale(1.02); filter: brightness(1.08); }
.btn-messenger:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.btn-messenger-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; flex-shrink: 0; }
.btn-messenger-icon svg { width: 18px; height: 18px; display: block; }
.btn-messenger--whatsapp { background: #22b859; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 14px rgba(34, 184, 89, 0.28); }
.btn-messenger--telegram { background: #1e8bc4; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 14px rgba(30, 139, 196, 0.28); }
.btn-messenger--instagram { background: linear-gradient(135deg, #d8437a 0%, #e57b4a 100%); border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 14px rgba(216, 67, 122, 0.25); }
.btn-messenger--facebook { background: #166fe5; border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 14px rgba(22, 111, 229, 0.28); }
.btn-messenger--messenger { background: linear-gradient(135deg, #0084ff 0%, #7b5cbf 100%); border-color: rgba(0,0,0,0.08); box-shadow: 0 4px 14px rgba(0, 132, 255, 0.25); }

/* Sections */
.section { padding: 72px 0; scroll-margin-top: 88px; }
.section.alt { background: rgba(255, 255, 255, 0.72); border-top: 1px solid rgba(11, 18, 32, 0.06); border-bottom: 1px solid rgba(11, 18, 32, 0.06); }
.section-head { display: grid; gap: 10px; margin-bottom: 26px; }
.section-head.tight { margin-bottom: 18px; }
.section-head h2 { margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(26px, 2.4vw, 40px); }
.section-head p { margin: 0; max-width: 72ch; color: var(--muted); font-size: 16px; }

/* Hero */
.hero {
  position: relative;
  padding: 76px 0 52px;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.png") center / cover no-repeat;
  transform: scale(1.02);
}
/* Multi-layer overlay: soft overall gradient + darker "pocket" under title/lead */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% 42%, rgba(11, 18, 32, 0.5), rgba(11, 18, 32, 0.2) 50%, transparent 72%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.1) 0%, rgba(11, 18, 32, 0.26) 35%, rgba(11, 18, 32, 0.36) 52%, rgba(11, 18, 32, 0.34) 70%, rgba(11, 18, 32, 0.28) 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  text-align: center;
  justify-items: center;
}
.hero-grid > div:first-child {
  width: 100%;
  max-width: 980px;
  display: grid;
  justify-items: center;
}
.hero-visual { display: none; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.20); background: rgba(0, 0, 0, 0.24); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18); color: rgba(255, 255, 255, 0.92); font-weight: 650; font-size: 13.5px; }
.pill-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--good); box-shadow: 0 0 0 4px rgba(19, 168, 122, 0.18); }
/* Hero title: premium soft depth — white, lifted, no heavy 3D */
.hero-title {
  margin: 14px 0 12px;
  font-family: var(--serif);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(38px, 4.8vw, 64px);
  color: #fff;
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.12),
    0 0 1px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 4px 14px rgba(0, 0, 0, 0.12),
    0 10px 32px rgba(0, 0, 0, 0.16),
    0 2px 6px rgba(48, 42, 36, 0.08);
}
/* Hero lead: readable, lighter effect than title */
.hero-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17.5px;
  max-width: 72ch;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18), 0 4px 20px rgba(0, 0, 0, 0.22);
}
.hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 20px; width: min(980px, 100%); }
.trust-item { border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); background: rgba(0, 0, 0, 0.20); padding: 12px 14px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18); text-align: center; }
.trust-kicker { display: block; font-weight: 850; letter-spacing: -0.02em; color: rgba(255, 255, 255, 0.92); }
.trust-text { display: block; color: rgba(255, 255, 255, 0.78); font-size: 14.5px; margin-top: 2px; }
.hero-visual { position: relative; min-height: 430px; border-radius: var(--radius2); border: 1px solid rgba(11, 18, 32, 0.08); background: radial-gradient(520px 340px at 30% 18%, rgba(47, 109, 246, 0.15), transparent 60%), radial-gradient(520px 340px at 70% 72%, rgba(201, 163, 92, 0.14), transparent 62%), linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)); box-shadow: var(--shadow); overflow: hidden; }
.hero-media { position: absolute; inset: 14px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(255, 255, 255, 0.25); }
.hero-media-grid { position: absolute; inset: 0; display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-rows: 1fr 1fr; gap: 10px; padding: 12px; }
.hero-shot { margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(246, 247, 251, 0.85); box-shadow: 0 18px 55px rgba(11, 18, 32, 0.10); min-height: 0; }
.hero-shot-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.hero-shot-link:focus { outline: none; }
.hero-shot-link:focus-visible {
  outline: 3px solid rgba(47, 109, 246, 0.45);
  outline-offset: 2px;
  border-radius: 16px;
}
.hero-shot img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-shot-a { grid-row: 1 / span 2; }
.hero-shot-b { grid-row: 1; }
.hero-shot-c { grid-row: 2; }
.hero-media-overlay { position: absolute; inset: 0; display: grid; align-items: end; padding: 12px; background: linear-gradient(180deg, rgba(11, 18, 32, 0), rgba(11, 18, 32, 0.06) 55%, rgba(11, 18, 32, 0.10)); }
.hero-media .glass-card { position: relative; left: auto; right: auto; bottom: auto; }
.glass-card { border-radius: 20px; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(255, 255, 255, 0.70); backdrop-filter: blur(10px); padding: 18px; box-shadow: 0 20px 60px rgba(11, 18, 32, 0.16); }
.mini-title { font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.mini-list { margin: 0; padding-left: 18px; color: rgba(11, 18, 32, 0.78); display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.mini-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.mini-badge { font-size: 12px; font-weight: 800; padding: 8px 10px; border-radius: 999px; background: rgba(11, 18, 32, 0.06); border: 1px solid rgba(11, 18, 32, 0.08); }
.hero-shape { position: absolute; border-radius: 999px; opacity: 0.85; }
.shape-a { width: 290px; height: 290px; left: -70px; top: -70px; background: radial-gradient(circle at 30% 30%, rgba(47, 109, 246, 0.55), transparent 65%); }
.shape-b { width: 360px; height: 360px; right: -120px; bottom: -120px; background: radial-gradient(circle at 40% 40%, rgba(201, 163, 92, 0.58), transparent 65%); }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { border-radius: var(--radius2); border: 1px solid rgba(11, 18, 32, 0.08); background: rgba(255, 255, 255, 0.72); box-shadow: 0 20px 60px rgba(11, 18, 32, 0.06); padding: 18px; transition: transform 180ms ease, box-shadow 180ms ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 26px 70px rgba(11, 18, 32, 0.09); }
.card-top { display: flex; align-items: center; gap: 12px; }
.card-icon { width: 38px; height: 38px; border-radius: 14px; display: grid; place-items: center; font-weight: 900; color: rgba(11, 18, 32, 0.78); background: linear-gradient(135deg, rgba(47, 109, 246, 0.14), rgba(201, 163, 92, 0.14)); border: 1px solid rgba(11, 18, 32, 0.10); }
.card h3 { margin: 0; font-size: 17px; letter-spacing: -0.02em; }
.card p { margin: 10px 0 12px; color: var(--muted); font-size: 14.8px; }
.card-list { margin: 0; padding-left: 18px; display: grid; gap: 6px; color: rgba(11, 18, 32, 0.74); font-weight: 650; font-size: 13.8px; }
.note { margin-top: 16px; border-radius: var(--radius2); border: 1px solid rgba(201, 163, 92, 0.22); background: linear-gradient(135deg, rgba(201, 163, 92, 0.14), rgba(255, 255, 255, 0.76)); padding: 16px; color: rgba(11, 18, 32, 0.78); }
.note p { margin: 0; font-size: 14.5px; }
.text-block { display: grid; gap: 12px; }
.text-block h3 { margin: 0; font-size: 18px; font-weight: 800; }
.text-block p, .text-block ul { margin: 0; color: var(--muted); font-size: 15px; }
.text-block ul { padding-left: 20px; }
.text-block-note { margin-top: 8px !important; font-size: 14px !important; color: var(--muted2) !important; }

/* Services (top section) — full-width background band */
.services-band {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 34px 0 40px;
  overflow: hidden;
}
.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/services-bg.png") center / cover no-repeat;
  transform: scale(1.02);
}
.services-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(980px 480px at 18% 18%, rgba(120, 170, 255, 0.10), transparent 62%),
    radial-gradient(920px 440px at 82% 28%, rgba(170, 210, 255, 0.08), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.70), rgba(250, 252, 255, 0.62));
}
.services-band > .container { position: relative; z-index: 1; }

/* Services — 4 cards in one row + centered intro */
#services.section-head { text-align: center; justify-items: center; }
#services.section-head p { max-width: 92ch; margin-left: auto; margin-right: auto; }
.services-block { margin-top: 14px; }
.services-block .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.services-block .note { max-width: 92ch; margin-left: auto; margin-right: auto; text-align: center; }
.services-block {
  padding: 18px 18px 16px;
  border-radius: 28px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background:
    radial-gradient(900px 420px at 18% 12%, rgba(201, 163, 92, 0.14), transparent 62%),
    radial-gradient(820px 380px at 82% 28%, rgba(120, 170, 255, 0.12), transparent 64%),
    radial-gradient(980px 520px at 55% 92%, rgba(201, 163, 92, 0.10), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 255, 0.64));
  box-shadow: 0 22px 70px rgba(11, 18, 32, 0.07);
}
.services-block .card { background: rgba(255, 255, 255, 0.78); }
@media (max-width: 1100px) {
  .services-block .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .services-band { padding: 26px 0 32px; }
  .services-block .cards { grid-template-columns: 1fr; }
  .services-block { padding: 16px 14px 14px; border-radius: 24px; }
}

/* Медицинский педикюр — фон и контент */
#medical-pedicure { position: relative; overflow: hidden; }
#medical-pedicure.section.alt { background: transparent; }
#medical-pedicure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/medical-pedicure-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#medical-pedicure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#medical-pedicure > .container { position: relative; z-index: 1; }

.medical-pedicure-block { max-width: none; }
#medical-pedicure .section-head p { max-width: none; }
.medical-who { margin-top: 16px; padding: 18px 20px; background: linear-gradient(135deg, rgba(47, 109, 246, 0.06), rgba(255, 255, 255, 0.92)); border-radius: var(--radius); border: 1px solid rgba(47, 109, 246, 0.12); }
.medical-who h3 { margin-bottom: 10px !important; }
.medical-who p { margin-bottom: 12px !important; }
.medical-who p:last-of-type { margin-bottom: 0 !important; }
.medical-list { margin: 10px 0 0 !important; padding-left: 20px !important; display: grid; gap: 6px; }
.medical-list li { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.45; }
.medical-who-note { margin-top: 14px !important; font-size: 13.5px !important; color: var(--muted2) !important; font-style: italic; }
.medical-advantages { margin-top: 16px; padding: 18px 20px; background: rgba(255, 255, 255, 0.82); border-radius: var(--radius); border: 1px solid rgba(11, 18, 32, 0.08); }
.medical-advantages h3 { margin-bottom: 12px !important; }
.medical-list--tight { gap: 8px !important; }
.medical-list--tight li { font-size: 14.5px !important; }
.medical-disclaimer { margin-top: 16px !important; }
.medical-vulnerable { margin-top: 20px; padding: 18px 20px; background: rgba(255, 255, 255, 0.78); border-radius: var(--radius); border: 1px solid rgba(11, 18, 32, 0.08); }
.medical-vulnerable h3 { margin-bottom: 12px !important; }
.medical-vulnerable p { margin-bottom: 12px !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.55 !important; }
.medical-vulnerable p:last-of-type { margin-bottom: 0 !important; }
.medical-vulnerable-note { font-size: 13px !important; color: var(--muted2) !important; font-style: italic; margin-top: 10px !important; }
.medical-vulnerable-gallery { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.medical-vulnerable-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.medical-vulnerable-link:hover .medical-vulnerable-fig img { box-shadow: 0 18px 48px rgba(11, 18, 32, 0.14); }
.medical-vulnerable-link:focus { outline: none; }
.medical-vulnerable-link:focus-visible .medical-vulnerable-fig img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.medical-vulnerable-fig { margin: 0; }
.medical-vulnerable-fig img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; transition: box-shadow 0.2s ease; }
@media (max-width: 900px) { .medical-vulnerable-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .medical-vulnerable-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Стерилизация — фон */
#sterilization { position: relative; overflow: hidden; }
#sterilization.section.alt { background: transparent; }
#sterilization::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/sterilization-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#sterilization::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#sterilization > .container { position: relative; z-index: 1; }
#sterilization .section-head p { max-width: none; }

/* Стерилизация и безопасность — текст слева/справа, фото рядом по этапам */
.sterilization-article { max-width: 100%; }
.sterilization-intro { margin: 0 0 24px !important; font-size: 16.5px !important; color: var(--muted) !important; line-height: 1.6 !important; max-width: none; }
.sterilization-row { display: grid; grid-template-columns: 1fr minmax(300px, 420px); gap: 28px; align-items: start; margin-bottom: 28px; }
.sterilization-row--reverse { grid-template-columns: minmax(300px, 420px) 1fr; }
.sterilization-row--reverse .sterilization-text { order: 2; }
.sterilization-row--reverse .sterilization-fig-link { order: 1; }
.sterilization-text { padding-top: 2px; }
.sterilization-text h3 { margin: 0 0 10px !important; font-size: 18px !important; }
.sterilization-text p { margin: 0 0 11px !important; font-size: 15.5px !important; color: var(--muted) !important; line-height: 1.58 !important; }
.sterilization-text p:last-child { margin-bottom: 0 !important; }
.sterilization-fig-link { display: block; color: inherit; text-decoration: none; cursor: pointer; margin-top: -6px; align-self: start; }
.sterilization-fig-link--stage1 { margin-top: 4px; }
.sterilization-fig-link--stage2 { margin-top: -18px; }
.sterilization-fig-link--stage3 { margin-top: 4px; }
.sterilization-fig-link:hover .sterilization-fig img { box-shadow: 0 18px 50px rgba(11, 18, 32, 0.16); }
.sterilization-fig-link:focus { outline: none; }
.sterilization-fig-link:focus-visible .sterilization-fig img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.sterilization-fig { margin: 0; }
.sterilization-fig img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; vertical-align: top; transition: box-shadow 0.2s ease; }
.sterilization-fig figcaption { margin-top: 10px; font-size: 13px; color: var(--muted2); line-height: 1.4; }
.sterilization-full { margin-bottom: 24px; padding: 22px 26px; background: rgba(255, 255, 255, 0.82); border-radius: var(--radius); border: 1px solid rgba(11, 18, 32, 0.08); }
.sterilization-full--disposables { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.sterilization-full-title { grid-column: 1 / -1; }
.sterilization-full h3 { margin: 0 0 12px !important; font-size: 18px !important; }
.sterilization-full p { margin: 0 !important; font-size: 15.5px !important; color: var(--muted) !important; line-height: 1.58 !important; }
.sterilization-full--disposables .sterilization-full-col p { margin-bottom: 12px !important; }
.sterilization-full--disposables .sterilization-full-col p:last-child { margin-bottom: 0 !important; }
.sterilization-close { margin-top: 22px !important; margin-bottom: 0 !important; font-size: 16px !important; color: var(--muted) !important; line-height: 1.55 !important; max-width: none; }
@media (max-width: 820px) {
  .sterilization-row,
  .sterilization-row--reverse { grid-template-columns: 1fr; gap: 18px; margin-bottom: 24px; }
  .sterilization-row--reverse .sterilization-text,
  .sterilization-row--reverse .sterilization-fig-link { order: unset; }
  .sterilization-fig-link { max-width: 360px; margin-top: 0; }
  .sterilization-fig-link--stage1,
  .sterilization-fig-link--stage2,
  .sterilization-fig-link--stage3 { margin-top: 0; }
  .sterilization-fig img { max-width: 100%; }
  .sterilization-full--disposables { grid-template-columns: 1fr; }
}

/* Педикюр VIP — два крупных фото + полоска «ещё примеры», по клику — лайтбокс в полном размере */
#pedicure-vip { position: relative; overflow: hidden; }
#pedicure-vip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/pedicure-vip-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#pedicure-vip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#pedicure-vip > .container { position: relative; z-index: 1; }
#pedicure-vip .section-head { text-align: center; justify-items: center; }
#pedicure-vip .section-head p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.vip-pedicure-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 20px; align-items: start; }
.vip-pedicure-item-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.vip-pedicure-item-link:hover .vip-pedicure-item img { box-shadow: 0 24px 60px rgba(11, 18, 32, 0.14); }
.vip-pedicure-item-link:focus { outline: none; }
.vip-pedicure-item-link:focus-visible .vip-pedicure-item img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.vip-pedicure-item { margin: 0; }
.vip-pedicure-item img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; transition: box-shadow 0.2s ease; }
.vip-pedicure-item figcaption { margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.4; text-align: center; }
.vip-pedicure-more { margin: 28px 0 12px !important; font-size: 13px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted2) !important; text-align: center; }
.vip-pedicure-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 0; }
.vip-pedicure-thumb-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.vip-pedicure-thumb-link:hover .vip-pedicure-thumb img { box-shadow: 0 14px 36px rgba(11, 18, 32, 0.12); }
.vip-pedicure-thumb-link:focus { outline: none; }
.vip-pedicure-thumb-link:focus-visible .vip-pedicure-thumb img { box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.3); }
.vip-pedicure-thumb { margin: 0; }
.vip-pedicure-thumb img { width: 100%; height: auto; max-height: 160px; object-fit: cover; border-radius: var(--radius); box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08); border: 1px solid rgba(11, 18, 32, 0.06); display: block; transition: box-shadow 0.2s ease; }
.vip-pedicure-note { margin-top: 24px !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.55 !important; text-align: center; max-width: 52ch; margin-left: auto !important; margin-right: auto !important; }
@media (max-width: 720px) {
  .vip-pedicure-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .vip-pedicure-grid { grid-template-columns: 1fr; gap: 20px; }
  .vip-pedicure-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vip-pedicure-thumb img { max-height: 140px; }
}

/* Мозоли и гиперкератоз — фон + текст, до/после (палец 3 фото, пятки 2×2), лайтбокс */
#calluses-hyperkeratosis { position: relative; overflow: hidden; }
#calluses-hyperkeratosis.section.alt { background: transparent; }
#calluses-hyperkeratosis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/calluses-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#calluses-hyperkeratosis::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#calluses-hyperkeratosis > .container { position: relative; z-index: 1; }
#calluses-hyperkeratosis .section-head p { max-width: none; }
.calluses-intro { display: grid; gap: 12px; margin-bottom: 28px; max-width: none; }
.calluses-intro p { margin: 0 !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.55 !important; }
.calluses-disclaimer { font-size: 13px !important; color: var(--muted2) !important; font-style: italic; margin-top: 6px !important; }
.calluses-subtitle { margin: 24px 0 6px !important; font-size: 20px !important; font-weight: 700 !important; }
.calluses-sublead { margin: 0 0 14px !important; font-size: 14px !important; color: var(--muted2) !important; }
.calluses-row { display: grid; gap: 16px; align-items: start; }
.calluses-toe { grid-template-columns: repeat(3, 1fr); }
.calluses-heels { grid-template-columns: repeat(4, 1fr); margin-top: 8px; }
.calluses-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.calluses-link:hover .calluses-fig img { box-shadow: 0 20px 50px rgba(11, 18, 32, 0.14); }
.calluses-link:focus { outline: none; }
.calluses-link:focus-visible .calluses-fig img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.calluses-fig { margin: 0; }
.calluses-fig img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; transition: box-shadow 0.2s ease; }
.calluses-fig figcaption { margin-top: 8px; font-size: 13px; color: var(--muted2); font-weight: 600; }
.calluses-fig--after figcaption { color: var(--good); }
@media (max-width: 820px) {
  .calluses-toe { grid-template-columns: 1fr; }
  .calluses-heels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .calluses-heels { grid-template-columns: 1fr; }
}

/* Сложные ногти и индивидуальный подход — фон */
#nails-individual { position: relative; overflow: hidden; }
#nails-individual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/nails-individual-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#nails-individual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#nails-individual > .container { position: relative; z-index: 1; }

#nails-individual .section-head p { max-width: none; }
.nails-intro { display: grid; gap: 14px; margin-bottom: 20px; max-width: none; }
.nails-intro p { margin: 0 !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.58 !important; }
.nails-extra { margin-top: 18px; padding: 16px 18px; background: rgba(255, 255, 255, 0.7); border-radius: var(--radius); border: 1px solid rgba(11, 18, 32, 0.08); max-width: none; }
.nails-extra p { margin: 0 !important; font-size: 14.5px !important; color: var(--muted) !important; line-height: 1.55 !important; }
.nails-extra strong { color: var(--ink); }
.nails-gallery-lead { margin: 24px 0 14px !important; font-size: 13px !important; font-weight: 700 !important; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted2) !important; }
.nails-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 0; }
.nails-gallery-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.nails-gallery-link:hover .nails-gallery-fig img { box-shadow: 0 18px 48px rgba(11, 18, 32, 0.14); }
.nails-gallery-link:focus { outline: none; }
.nails-gallery-link:focus-visible .nails-gallery-fig img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.nails-gallery-fig { margin: 0; }
.nails-gallery-fig img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; transition: box-shadow 0.2s ease; }
.nails-gallery-fig figcaption { margin-top: 6px; font-size: 12px; color: var(--muted2); line-height: 1.35; }
.nails-gallery-fig--tint img { filter: sepia(0.06) hue-rotate(-4deg); }
.nails-gallery-note { margin-top: 18px !important; font-size: 13px !important; color: var(--muted2) !important; line-height: 1.5 !important; font-style: italic; max-width: none; }
@media (max-width: 900px) { .nails-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .nails-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Профессиональная очистка стоп — до и после */
/* Профессиональный уход во время лечения — фон */
#foot-cleaning { position: relative; overflow: hidden; }
#foot-cleaning::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/foot-cleaning-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#foot-cleaning::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#foot-cleaning > .container { position: relative; z-index: 1; }

#foot-cleaning .section-head p { max-width: none; }
#ingrown-nail .section-head p { max-width: none; }
.cleaning-intro { margin-bottom: 24px; max-width: none; }

/* Вросший ноготь — фон */
#ingrown-nail { position: relative; overflow: hidden; }
#ingrown-nail.section.alt { background: transparent; }
#ingrown-nail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/ingrown-nail-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  pointer-events: none;
}
#ingrown-nail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#ingrown-nail > .container { position: relative; z-index: 1; }
.cleaning-intro p { margin: 0 !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.58 !important; }
.cleaning-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cleaning-gallery-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.cleaning-gallery-link:hover .cleaning-gallery-fig img { box-shadow: 0 18px 48px rgba(11, 18, 32, 0.14); }
.cleaning-gallery-link:focus { outline: none; }
.cleaning-gallery-link:focus-visible .cleaning-gallery-fig img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.cleaning-gallery-fig { margin: 0; }
.cleaning-gallery-fig img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; transition: box-shadow 0.2s ease; }
.cleaning-gallery-fig figcaption { margin-top: 6px; font-size: 12px; color: var(--muted2); line-height: 1.35; }
.cleaning-gallery-fig--after figcaption { color: var(--good); font-weight: 600; }
@media (max-width: 900px) { .cleaning-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cleaning-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* Ортониксия — пример 1: три фото в одну линию */
.orthonyxia-title { margin-top: 24px !important; margin-bottom: 8px !important; }
.orthonyxia-intro { margin: 0 0 16px !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.5 !important; max-width: 56ch; }
.orthonyxia-case1 { margin-top: 8px; }
.orthonyxia-case1-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }
.orthonyxia-case1-item { margin: 0; }
.orthonyxia-case1-item img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow2); display: block; }
.orthonyxia-case1-item--after img { border: 1px solid rgba(19, 168, 122, 0.2); }
.orthonyxia-case1-item figcaption { margin-top: 6px; font-size: 12px; color: var(--muted2); line-height: 1.35; }
.orthonyxia-case1-item--after figcaption { color: var(--good); font-weight: 600; }
.orthonyxia-case1-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.orthonyxia-case1-link:focus { outline: none; }
.orthonyxia-case1-link:focus-visible img {
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.35), var(--shadow2);
}
.orthonyxia-reassure { margin-top: 14px; padding: 14px 16px; background: linear-gradient(135deg, rgba(19, 168, 122, 0.08), rgba(255, 255, 255, 0.9)); border-radius: var(--radius); border: 1px solid rgba(19, 168, 122, 0.18); max-width: 520px; }
.orthonyxia-reassure p { margin: 0 !important; font-size: 14px !important; color: var(--muted) !important; line-height: 1.5 !important; }
.orthonyxia-reassure strong { color: var(--good); }
@media (max-width: 640px) {
  .orthonyxia-case1-row { grid-template-columns: 1fr; gap: 12px; }
}

/* Ортониксия — пример 2: фото и подробное описание рядом */
.orthonyxia-title--second { margin-top: 32px !important; }
.orthonyxia-case2 { display: grid; grid-template-columns: minmax(0, 300px) 1fr; gap: 28px; align-items: start; margin-top: 12px; }
.orthonyxia-case2-photo { margin: 0; }
.orthonyxia-case2-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow2); border: 1px solid rgba(11, 18, 32, 0.08); display: block; }
.orthonyxia-case2-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.orthonyxia-case2-photo-link:focus { outline: none; }
.orthonyxia-case2-photo-link:focus-visible img {
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.35), var(--shadow2);
}
.orthonyxia-case2-caption { display: grid; gap: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; min-width: 0; }
.orthonyxia-case2-caption p { margin: 0 !important; }
.orthonyxia-case2-intro { font-size: 14px !important; color: var(--muted) !important; }
.orthonyxia-case2-cta { margin-top: 16px; padding: 16px 0 0; border-top: 1px solid rgba(11, 18, 32, 0.08); display: grid; gap: 12px; }
.orthonyxia-case2-cta p { font-size: 14px !important; color: var(--muted) !important; line-height: 1.55 !important; }
.orthonyxia-case2-cta p:first-child { font-weight: 500; color: var(--ink) !important; }
.orthonyxia-triptych-step { display: block; padding-left: 12px; border-left: 3px solid rgba(11, 18, 32, 0.12); font-size: 13px; color: var(--muted2); margin-top: 2px; }
.orthonyxia-triptych-step strong { color: var(--ink); }
@media (max-width: 720px) {
  .orthonyxia-case2 { grid-template-columns: 1fr; }
  .orthonyxia-case2-photo { max-width: 340px; }
}

/* Ортониксия — информационный блок (результаты после операций в других клиниках) */
.orthonyxia-info-block { margin-top: 28px; padding: 18px 20px; background: rgba(255, 255, 255, 0.6); border-radius: var(--radius); border: 1px solid rgba(11, 18, 32, 0.08); }
.orthonyxia-info-title { margin: 0 0 12px !important; font-size: 17px !important; font-weight: 800 !important; }
.orthonyxia-info-block p { margin: 0 0 16px !important; font-size: 15px !important; color: var(--muted) !important; line-height: 1.55 !important; max-width: none; }
.orthonyxia-info-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.orthonyxia-info-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.orthonyxia-info-link:hover .orthonyxia-info-fig img { box-shadow: 0 14px 40px rgba(11, 18, 32, 0.14); }
.orthonyxia-info-link:focus { outline: none; }
.orthonyxia-info-link:focus-visible .orthonyxia-info-fig img { box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.25); }
.orthonyxia-info-fig { margin: 0; }
.orthonyxia-info-fig img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 1px solid rgba(11, 18, 32, 0.08); display: block; transition: box-shadow 0.2s ease; }
@media (max-width: 700px) { .orthonyxia-info-gallery { grid-template-columns: repeat(2, 1fr); } }

/* About */
.about-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: start; }
.about-photo { margin: 0; border-radius: 26px; overflow: hidden; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(246, 247, 251, 0.85); box-shadow: 0 22px 70px rgba(11, 18, 32, 0.12); }
.about-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-body { display: grid; gap: 14px; }
.about-main { display: grid; gap: 10px; color: var(--muted); font-size: 15px; }
.about-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 10px;
  margin-top: 10px;
}
.about-point { border-radius: var(--radius2); border: 1px solid rgba(11, 18, 32, 0.08); background: rgba(255, 255, 255, 0.86); padding: 14px; box-shadow: 0 20px 60px rgba(11, 18, 32, 0.06); }
.about-title { font-weight: 950; letter-spacing: -0.02em; }
.about-text { margin-top: 6px; color: rgba(11, 18, 32, 0.62); font-size: 13.8px; line-height: 1.5; }
.about-actions { grid-column: 1 / -1; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; justify-content: center; }
.about-actions .btn { justify-content: center; }

/* About section — full-width background image + soft overlay */
#about.section.alt { background: transparent; }
#about { position: relative; overflow: hidden; }
#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/about-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
}
#about::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 520px at 22% 18%, rgba(120, 170, 255, 0.10), transparent 62%),
    radial-gradient(1000px 520px at 82% 26%, rgba(201, 163, 92, 0.10), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.70));
  pointer-events: none;
}
#about > .container { position: relative; z-index: 1; }

/* Reasons */
.reasons-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.reason { border-radius: var(--radius2); border: 1px solid rgba(11, 18, 32, 0.08); background: rgba(255, 255, 255, 0.72); padding: 16px; box-shadow: 0 18px 55px rgba(11, 18, 32, 0.05); }
.reason-title { font-weight: 900; letter-spacing: -0.02em; }
.reason-text { margin-top: 6px; color: var(--muted); font-size: 14.8px; }

/* Medium articles block — inside #reasons .container, same horizontal space as cards above */
.medium-block {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 28px 28px;
  margin-top: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.medium-block h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  color: #0b1220;
}
.medium-block p {
  margin: 0 0 20px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}
.medium-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid #5b9a6e;
  background: #5b9a6e;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.medium-btn:hover {
  background: #4a8559;
  border-color: #4a8559;
  color: white;
}

/* Workspace & pricing guidelines block — after articles, light section */
.section--light { background: rgba(255, 255, 255, 0.72); border-top: 1px solid rgba(11, 18, 32, 0.06); border-bottom: 1px solid rgba(11, 18, 32, 0.06); }
#workspace-pricing{
  position: relative;
  overflow: hidden;
}
#workspace-pricing::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/workspace-bg.png") center / cover no-repeat;
  transform: scale(1.02);
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.04);
  pointer-events: none;
}
#workspace-pricing::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,255,255,0.74));
  pointer-events: none;
}
#workspace-pricing > .container{
  position: relative;
  z-index: 1;
}
.workspace-block {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.workspace-block__img {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.08);
  border: 1px solid rgba(11, 18, 32, 0.08);
}
.workspace-block__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  vertical-align: middle;
}
.workspace-block__img-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.workspace-block__img-link:focus { outline: none; }
.workspace-block__img-link:focus-visible img {
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.35);
}
.workspace-block__body { min-width: 0; }
.workspace-block__title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  color: #0b1220;
  line-height: 1.2;
}
.workspace-block__lead {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.workspace-block__list {
  margin: 0 0 24px;
  padding-left: 1.25em;
  list-style: none;
  color: rgba(11, 18, 32, 0.88);
  font-size: 15px;
  line-height: 1.65;
}
.workspace-block__list li {
  position: relative;
  padding-left: 0.35em;
  margin-bottom: 8px;
}
.workspace-block__list li::before {
  content: "";
  position: absolute;
  left: -0.85em;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(91, 140, 76, 0.6);
}
.workspace-block__list li:last-child { margin-bottom: 0; }
.workspace-block .btn-hero-book { margin-top: 4px; }

@media (max-width: 720px) {
  .workspace-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .workspace-block__img { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

/* Reasons section — full-width background image, scales with section height */
#reasons {
  position: relative;
  overflow: hidden;
}
#reasons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-image: url("images/reasons-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  opacity: 0.92;
  filter: saturate(1.12) contrast(1.06);
  pointer-events: none;
}
#reasons::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 252, 255, 0.52));
  pointer-events: none;
}
#reasons > .container {
  position: relative;
  z-index: 1;
}

#reasons .section-head p {
  max-width: none;
}

#results .section-head p,
#faq .section-head p,
#contact .section-head p { max-width: 68ch; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; }
.gallery-item { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(246, 247, 251, 0.85); box-shadow: 0 20px 60px rgba(11, 18, 32, 0.08); display: block; min-height: 220px; isolation: isolate; }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 220ms ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-chip { position: absolute; left: 12px; top: 12px; padding: 8px 10px; border-radius: 999px; font-weight: 950; font-size: 12.5px; background: rgba(255, 255, 255, 0.88); border: 1px solid rgba(11, 18, 32, 0.14); color: rgba(11, 18, 32, 0.86); box-shadow: 0 18px 55px rgba(11, 18, 32, 0.14); }
.gallery-chip.ghost { background: rgba(11, 18, 32, 0.72); border-color: rgba(11, 18, 32, 0.25); color: rgba(255, 255, 255, 0.92); }
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 8; }
.gallery-item:nth-child(5) { grid-column: span 6; }
.gallery-item:nth-child(6) { grid-column: span 6; }

/* Lightbox */
.lightbox { width: min(980px, calc(100% - 28px)); border: 1px solid rgba(11, 18, 32, 0.14); border-radius: 26px; padding: 0; background: rgba(255, 255, 255, 0.92); box-shadow: 0 40px 140px rgba(11, 18, 32, 0.22); }
.lightbox::backdrop { background: rgba(11, 18, 32, 0.56); backdrop-filter: blur(6px); }
.lightbox-figure { margin: 0; padding: 14px; display: grid; gap: 10px; }
.lightbox-figure img { width: 100%; height: auto; max-height: 75vh; object-fit: contain; border-radius: 18px; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(246, 247, 251, 0.80); }
.lightbox-cap { color: rgba(11, 18, 32, 0.70); font-weight: 700; font-size: 14px; }
.lightbox-close { position: absolute; right: 10px; top: 10px; width: 44px; height: 44px; border-radius: 14px; border: 1px solid rgba(11, 18, 32, 0.12); background: rgba(255, 255, 255, 0.90); cursor: pointer; font-size: 22px; line-height: 1; box-shadow: 0 18px 55px rgba(11, 18, 32, 0.14); }
.lightbox-close:focus { outline: none; box-shadow: 0 18px 55px rgba(11, 18, 32, 0.14), var(--focus); }

/* FAQ */
#faq.section {
  position: relative;
  background-image: url("assets/faq-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#faq.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 247, 251, 0.82);
  pointer-events: none;
}
#faq .container { position: relative; z-index: 1; }
.faq { display: grid; gap: 10px; }
.faq-item { border-radius: var(--radius2); border: 1px solid rgba(11, 18, 32, 0.08); background: rgba(255, 255, 255, 0.72); box-shadow: 0 18px 55px rgba(11, 18, 32, 0.05); padding: 14px; }
.faq-item summary { cursor: pointer; font-weight: 900; letter-spacing: -0.02em; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { margin-top: 8px; color: var(--muted); font-size: 14.8px; }

/* Contact, Location, Footer — soft green-tinted background (no pure white) */
#contact.section.alt {
  background: linear-gradient(180deg, #F5F8F4 0%, #EEF3EC 100%);
  border-top-color: rgba(91, 140, 76, 0.08);
  border-bottom-color: rgba(91, 140, 76, 0.06);
}
#location.section {
  background: linear-gradient(180deg, #EEF3EC 0%, #E8F0E4 100%);
}
.footer {
  background: linear-gradient(180deg, #E8F0E4 0%, #E2EDDF 100%);
  border-top: 1px solid rgba(91, 140, 76, 0.10);
}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.contact-details { margin-top: 16px; border-radius: 14px; border: 1px solid rgba(11, 18, 32, 0.06); background: rgba(255, 255, 255, 0.95); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); padding: 14px; }
.cd-row { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(11, 18, 32, 0.06); }
.cd-row:last-child { border-bottom: none; }
.cd-label { color: var(--muted2); font-weight: 800; font-size: 13px; }
.cd-value a { font-weight: 900; letter-spacing: -0.02em; color: rgba(11, 18, 32, 0.86); }
.legal { margin-top: 14px; color: var(--muted2); font-size: 13.8px; }
.legal strong { color: rgba(11, 18, 32, 0.82); }
.form-wrap { position: relative; }
.form { border-radius: 16px; border: 1px solid rgba(11, 18, 32, 0.06); background: rgba(255, 255, 255, 0.96); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); padding: 18px; overflow: hidden; }
.form-head { display: grid; gap: 4px; margin-bottom: 12px; }
.form-title { font-weight: 1000; letter-spacing: -0.03em; font-size: 18px; }
.form-sub { color: var(--muted2); font-weight: 650; font-size: 13.8px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.field { display: grid; gap: 6px; margin-top: 10px; }
.field-label { font-weight: 900; letter-spacing: -0.02em; font-size: 13px; color: rgba(11, 18, 32, 0.78); }
input, select, textarea { font: inherit; border-radius: 16px; padding: 12px; border: 1px solid rgba(11, 18, 32, 0.14); background: rgba(246, 247, 251, 0.65); transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease; }
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus { outline: none; box-shadow: var(--focus); border-color: rgba(47, 109, 246, 0.40); background: rgba(255, 255, 255, 0.88); }
.field-hint { color: rgba(11, 18, 32, 0.48); font-size: 12.5px; font-weight: 650; }
.field[data-invalid="true"] input, .field[data-invalid="true"] select, .field[data-invalid="true"] textarea { border-color: rgba(226, 72, 72, 0.65); box-shadow: 0 0 0 4px rgba(226, 72, 72, 0.14); }
.field[data-invalid="true"] .field-hint { color: rgba(226, 72, 72, 0.92); }
.check { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px; color: rgba(11, 18, 32, 0.74); font-weight: 650; font-size: 13.8px; }
.check input { margin-top: 4px; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.form-note { margin-top: 10px; color: rgba(11, 18, 32, 0.52); font-size: 12.8px; font-weight: 650; }
.toast { position: absolute; left: 16px; right: 16px; bottom: 16px; border-radius: 18px; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(255, 255, 255, 0.92); box-shadow: 0 18px 55px rgba(11, 18, 32, 0.12); padding: 12px; }
.toast-title { font-weight: 1000; letter-spacing: -0.02em; }
.toast-text { margin-top: 2px; color: var(--muted2); font-weight: 650; font-size: 13.5px; }
.thankyou { position: absolute; inset: 0; display: grid; place-items: center; padding: 18px; }
.thank-card { width: 100%; border-radius: 26px; border: 1px solid rgba(11, 18, 32, 0.08); background: radial-gradient(800px 420px at 20% 0%, rgba(47, 109, 246, 0.14), transparent 55%), radial-gradient(800px 420px at 80% 120%, rgba(201, 163, 92, 0.16), transparent 55%), rgba(255, 255, 255, 0.90); box-shadow: 0 28px 90px rgba(11, 18, 32, 0.12); padding: 18px; }
.thank-title { font-family: var(--serif); font-weight: 700; letter-spacing: -0.03em; font-size: 28px; }
.thank-text { margin-top: 6px; color: var(--muted); font-size: 15.5px; font-weight: 650; }
.thank-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.thank-small { margin-top: 12px; color: rgba(11, 18, 32, 0.56); font-weight: 650; font-size: 13.3px; }
.mono { font-family: ui-monospace, monospace; font-size: 0.98em; }

/* Map */
.map { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 14px; border-radius: 16px; border: 1px solid rgba(11, 18, 32, 0.06); background: rgba(255, 255, 255, 0.95); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); overflow: hidden; }
.map-left { padding: 16px; border-right: 1px solid rgba(11, 18, 32, 0.06); }
.map-title { font-weight: 1000; letter-spacing: -0.02em; }
.map-text { margin-top: 6px; color: rgba(11, 18, 32, 0.80); font-weight: 700; }
.map-sub { margin-top: 10px; color: var(--muted2); font-size: 13.8px; font-weight: 650; }
.map-right { padding: 16px; }
.map-right iframe { border-radius: 12px; }

/* Footer */
.footer { padding: 46px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.8fr 0.8fr; gap: 16px; }
.footer-name { font-weight: 1000; letter-spacing: -0.02em; font-size: 18px; }
.footer-sub { margin-top: 4px; color: var(--muted2); font-weight: 650; font-size: 13.6px; }
.footer-legal { margin-top: 10px; color: rgba(11, 18, 32, 0.56); font-weight: 650; font-size: 13.2px; max-width: 62ch; }
.footer-title { font-weight: 1000; letter-spacing: -0.02em; margin-bottom: 10px; }
.footer-col a { display: block; padding: 8px 0; color: rgba(11, 18, 32, 0.78); font-weight: 750; }
.footer-col a:hover { color: rgba(11, 18, 32, 0.94); }

/* Footer "Message" links — icon, full row clickable, hover shift, stronger contrast */
.footer-msg-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(11, 18, 32, 0.88);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-msg-link:hover { color: rgba(11, 18, 32, 0.98); transform: translateX(4px); }
.footer-msg-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer-msg-icon--whatsapp { background-color: #22b859; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3C/svg%3E") no-repeat center / 18px 18px; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347z'/%3E%3C/svg%3E") no-repeat center / 18px 18px; }
.footer-msg-icon--telegram { background-color: #1e8bc4; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E") no-repeat center / 18px 18px; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11.944 0A12 12 0 0 0 0 12a12 12 0 0 0 12 12 12 12 0 0 0 12-12A12 12 0 0 0 12 0a12 12 0 0 0-.056 0zm4.962 7.224c.1-.002.321.023.465.14a.506.506 0 0 1 .171.325c.016.093.036.306.02.472-.18 1.898-.962 6.502-1.36 8.627-.168.9-.499 1.201-.82 1.23-.696.065-1.225-.46-1.9-.902-1.056-.693-1.653-1.124-2.678-1.8-1.185-.78-.417-1.21.258-1.91.177-.184 3.247-2.977 3.307-3.23.007-.032.014-.15-.056-.212s-.174-.041-.249-.024c-.106.024-1.793 1.14-5.061 3.345-.48.33-.913.49-1.302.48-.428-.008-1.252-.241-1.865-.44-.752-.245-1.349-.374-1.297-.789.027-.216.325-.437.893-.663 3.498-1.524 5.83-2.529 6.998-3.014 3.332-1.386 4.025-1.627 4.476-1.635z'/%3E%3C/svg%3E") no-repeat center / 18px 18px; }
.footer-msg-icon--instagram { background: linear-gradient(135deg, #d8437a 0%, #e57b4a 100%); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07s-3.585-.015-4.849-.074c-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.065-.361 2.235-.42 1.26-.045 1.649-.06 4.849-.06zM12 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z'/%3E%3C/svg%3E") no-repeat center / 18px 18px; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07s-3.585-.015-4.849-.074c-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.065-.361 2.235-.42 1.26-.045 1.649-.06 4.849-.06zM12 5.838a6.162 6.162 0 1 0 0 12.324 6.162 6.162 0 0 0 0-12.324zM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm6.406-11.845a1.44 1.44 0 1 0 0 2.881 1.44 1.44 0 0 0 0-2.881z'/%3E%3C/svg%3E") no-repeat center / 18px 18px; }

.footer-muted { margin-top: 6px; color: rgba(11, 18, 32, 0.56); font-weight: 650; font-size: 13.2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(11, 18, 32, 0.06); color: rgba(11, 18, 32, 0.60); font-weight: 650; font-size: 13.2px; }
.back-top { padding: 8px 10px; border-radius: 14px; border: 1px solid rgba(11, 18, 32, 0.10); background: rgba(246, 247, 251, 0.70); }
.back-top:hover { background: rgba(255, 255, 255, 0.92); }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

@media (max-width: 980px) {
  .hero-trust { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: 1fr auto; grid-template-areas: "brand cta" "nav nav"; }
  .brand { grid-area: brand; }
  .header-cta { grid-area: cta; }
  .nav { grid-area: nav; justify-self: start; }
  .nav-links { width: 100%; justify-content: space-between; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; }
  .cards, .reasons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: row; }
  .two-col, .contact-grid, .map { grid-template-columns: 1fr; }
  .map-left { border-right: none; border-bottom: 1px solid rgba(11, 18, 32, 0.06); }
}

/* Mobile / tablet navigation (≤768px): single-row header, full-width panel under bar, backdrop */
@media (max-width: 768px) {
  .site-header {
    margin: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 22px 22px;
    z-index: 300;
    /* blur on header creates a containing block for fixed children in some browsers — disable on small screens */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "brand nav cta";
    gap: 10px 12px;
    padding: 12px 16px;
    align-items: center;
  }
  .brand { grid-area: brand; min-width: 0; }
  .nav { grid-area: nav; justify-self: end; width: auto; min-width: 0; }
  .header-cta { grid-area: cta; justify-self: end; }

  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    display: none !important;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-panel-top, 88px);
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 8px 0 max(20px, env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: stretch;
    align-content: flex-start;
    gap: 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(11, 18, 32, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 50px rgba(11, 18, 32, 0.12);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 260;
    box-sizing: border-box;
  }
  .nav[data-open="true"] .nav-links {
    display: flex !important;
  }
  .nav-links > a,
  .nav-links > .nav-dropdown {
    width: 100%;
    flex-shrink: 0;
  }
  .nav-links a:not(.btn-booking) {
    font-size: 16px;
    font-weight: 700;
    color: rgba(11, 18, 32, 0.94);
    padding: 14px 20px;
  }
  .nav-dropdown-btn {
    width: 100%;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.55);
    padding: 10px 20px 6px;
    pointer-events: none;
    cursor: default;
  }
  .nav-dropdown-caret { display: none; }
  .nav-dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0 0 6px !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(246, 247, 251, 0.95) !important;
    border-radius: 0 !important;
    z-index: auto !important;
  }
  .nav-dropdown-menu--animate {
    transition: none !important;
  }
  .nav-dropdown-link {
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 650 !important;
    color: rgba(11, 18, 32, 0.88) !important;
  }
  .nav-links .btn-booking {
    margin: 14px 16px 8px;
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }

  .nav-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-panel-top, 88px);
    bottom: 0;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    border: none;
    background: rgba(11, 18, 32, 0.45);
    z-index: 250;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-backdrop[hidden] {
    display: none !important;
  }

  body.nav-open {
    overflow: hidden;
    overflow-x: hidden;
    overscroll-behavior: contain;
  }

  .container { width: min(var(--container), calc(100% - 28px)); }
  .hero { padding-top: 52px; }
  .header-cta .btn.btn-ghost { display: none; }
  .field-grid { grid-template-columns: 1fr; }
  .cards, .reasons-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item { min-height: 210px; grid-column: auto !important; }
  .hero-media-grid { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr 1fr; }
  .hero-shot-a, .hero-shot-b, .hero-shot-c { grid-row: auto; }
  .cd-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lang-menu { width: 200px; }
}
