  :root {
    /* Palette matched to simpa.kiev.ua logo — warm orange */
    --rose: #f28b1c;
    --rose-deep: #d97208;
    --rose-soft: #fcd6a5;
    --rose-pale: #fff0db;
    --cream: #fffaf2;
    --cream-2: #fff;
    --ink: #2a1f2b;
    --ink-2: #5a4856;
    --muted: #9a8693;
    --line: rgba(42,31,43,0.08);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Manrope', system-ui, sans-serif;
    --shadow-card: 0 30px 60px -30px rgba(217,114,8,0.20), 0 8px 24px -12px rgba(31,26,38,0.08);
    --r-sm: 14px;
    --r-md: 22px;
    --r-lg: 32px;
    --r-xl: 48px;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; }

  /* === Floating background shapes === */
  .bg-shapes {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  }
  .blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
    animation: float 18s ease-in-out infinite;
  }
  .blob.b1 { width: 520px; height: 520px; background: radial-gradient(circle, #fcd6a5, transparent 70%); top: -180px; left: -160px; }
  .blob.b2 { width: 460px; height: 460px; background: radial-gradient(circle, #ffe2b0, transparent 70%); top: 30%; right: -180px; animation-delay: -6s; }
  .blob.b3 { width: 400px; height: 400px; background: radial-gradient(circle, #ffd9a0, transparent 70%); bottom: -120px; left: 30%; animation-delay: -12s; }
  @keyframes float {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(40px,-30px) scale(1.06); }
    66% { transform: translate(-30px,40px) scale(0.96); }
  }

  /* === Layout === */
  .container { width: min(1200px, 92%); margin: 0 auto; position: relative; z-index: 1; }
  .header .container { width: min(1400px, 96%); }
  section { position: relative; z-index: 1; }

  /* === Header / Nav === */
  .header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,245,247,0.78);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
  }
  .header.scrolled { border-color: var(--line); background: rgba(255,245,247,0.92); }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; gap: 24px;
  }
/*  .logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 28px; color: var(--ink); letter-spacing: -0.5px; }
  .logo-img img { height: 78px; width: auto; display: block; transition: transform .3s; }
  .logo-img:hover img { transform: rotate(-4deg) scale(1.05); }
  .header .nav { padding: 12px 0; }
  .footer .logo-img img { height: 88px; margin-bottom: 4px; }
  @media (max-width: 640px) {
    .logo-img img { height: 60px; }
  }
  .logo-mark {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, #ffb56b 100%);
    display: grid; place-items: center; color: white; font-family: var(--serif); font-size: 22px;
    box-shadow: 0 8px 20px -6px rgba(242,139,28,0.5);
    position: relative;
  }
  .logo-mark::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 1.5px dashed rgba(242,139,28,0.35);
    animation: spin 18s linear infinite;
  } */





.logo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 28px; color: var(--ink); letter-spacing: -0.5px; }
.logo-img img {
  height: 56px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  transition: transform .3s;
}
.logo-img:hover img { transform: rotate(-2deg) scale(1.04); }
.header .nav { padding: 12px 0; }
.footer .logo-img img {
  height: 64px;
  max-width: 230px;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .logo-img img { height: 44px; max-width: 160px; }
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, #ffb56b 100%);
  display: grid; place-items: center; color: white; font-family: var(--serif); font-size: 22px;
  box-shadow: 0 8px 20px -6px rgba(242,139,28,0.5);
  position: relative;
}
.logo-mark::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px dashed rgba(242,139,28,0.35);
  animation: spin 18s linear infinite;
}











  @keyframes spin { to { transform: rotate(360deg); } }

  .nav-links { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
  .nav-links a {
    padding: 10px 12px; border-radius: 999px; font-weight: 500; font-size: 14px; color: var(--ink-2);
    transition: color .2s, background .2s;
    position: relative; white-space: nowrap;
  }
  .nav-links a:hover { color: var(--rose-deep); background: rgba(242,139,28,0.08); }
  .has-dropdown { position: relative; }
  .has-dropdown > a::after {
    content: ''; display: inline-block; width: 6px; height: 6px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translate(-2px,-2px); margin-left: 8px;
    transition: transform .2s;
  }
  .dropdown {
    position: absolute; top: 100%; left: 50%; transform: translate(-50%,8px);
    background: white; border-radius: var(--r-md);
    box-shadow: 0 20px 50px -15px rgba(31,26,38,0.18);
    padding: 10px; min-width: 260px;
    opacity: 0; visibility: hidden; transition: all .25s ease;
  }
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translate(-50%,0);
  }
  .dropdown a {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px;
    font-size: 14.5px; color: var(--ink); transition: background .15s;
  }
  .dropdown a:hover { background: var(--cream); }
  .dropdown a .pin {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--rose-soft); color: var(--rose-deep);
    display: grid; place-items: center; font-size: 12px; font-weight: 700;
    flex-shrink: 0;
  }

  .nav-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .lang { 
	  display: flex; 
	  background: rgba(255,255,255,0.7); 
	  border: 1px solid var(--line); 
	  border-radius: 999px; 
	  padding: 3px; 
	  font-size: 12px; 
	  font-weight: 700; 
	}

	.lang button,
	.lang a { 
	  padding: 6px 10px; 
	  border-radius: 999px; 
	  color: var(--muted); 
	  text-decoration: none;
	  line-height: 1;
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	}

	.lang button.active,
	.lang a.active { 
	  background: var(--ink); 
	  color: white; 
	}

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
    transition: transform .2s, box-shadow .2s, background .2s;
    cursor: pointer; white-space: nowrap;
  }
  .btn-primary {
    background: var(--ink); color: white;
    box-shadow: 0 12px 28px -10px rgba(31,26,38,0.4);
  }
  .btn-primary:hover { background: var(--rose); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(242,139,28,0.5); }
  .btn-primary .arrow { transition: transform .25s; }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-ghost {
    background: transparent; color: var(--ink); border: 1.5px solid var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: white; }

  .hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; background: white; box-shadow: var(--shadow-card); }
  .hamburger span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: transform .25s, opacity .2s; }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* === HERO === */
  .hero { padding: 40px 0 50px; }
  .hero-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 1px solid var(--line);
    padding: 8px 14px; border-radius: 999px;
    font-size: 13px; font-weight: 600; color: var(--rose-deep);
    margin-bottom: 28px;
  }
  .pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 0 rgba(242,139,28,0.6); animation: pulse 2s infinite; }
  @keyframes pulse {
    70% { box-shadow: 0 0 0 10px rgba(242,139,28,0); }
    100% { box-shadow: 0 0 0 0 rgba(242,139,28,0); }
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 88px);
    line-height: 0.98;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--ink);
  }
  .hero h1 .accent { color: var(--rose); font-style: italic; }
  .hero h1 .swoosh {
    display: inline-block; position: relative;
  }
  .hero h1 .swoosh::after {
    content: ''; position: absolute; left: -4%; right: -4%; bottom: 6%; height: 14px;
    background: var(--rose-soft); border-radius: 99px; z-index: -1; transform: skewX(-8deg);
  }

  .hero p.lead {
    font-size: 18px; color: var(--ink-2); max-width: 520px; margin-bottom: 36px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .hero-meta {
    margin-top: 44px; display: flex; gap: 32px; flex-wrap: wrap;
  }
  .hero-meta .item .num { font-family: var(--serif); font-size: 36px; color: var(--ink); line-height: 1; }
  .hero-meta .item .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* Hero visual */
  .hero-visual { position: relative; aspect-ratio: 4/5; }
  .hero-photo {
    position: absolute; inset: 0;
    /* organic asymmetric blob shape */
    border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(217,114,8,0.4), inset 0 0 0 8px rgba(255,255,255,0.6);
    animation: heroFloat 7s ease-in-out infinite, blobMorph 14s ease-in-out infinite;
    background: #ffe7c4;
    z-index: 0;
  }
  @keyframes blobMorph {
    0%,100% { border-radius: 62% 38% 54% 46% / 48% 56% 44% 52%; }
    33% { border-radius: 44% 56% 38% 62% / 56% 42% 58% 44%; }
    66% { border-radius: 52% 48% 60% 40% / 42% 58% 44% 56%; }
  }
  .hero-photo .slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center top;
    opacity: 0; transition: opacity 1.6s ease-in-out;
  }
  .hero-photo .slide.active { opacity: 1 !important; }
  .hero-photo .slide::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%);
  }

  /* Decorative objects around hero photo */
  .hero-deco { position: absolute; pointer-events: none; z-index: 3; filter: drop-shadow(0 8px 16px rgba(42,31,43,0.18)); }
  .hero-deco.scissors { top: 6%; right: 4%; width: 96px; animation: spinSlow 16s linear infinite; }
  .hero-deco.sparkle-1 { top: 22%; left: 4%; width: 38px; animation: twinkle 2.6s ease-in-out infinite; }
  .hero-deco.sparkle-2 { bottom: 24%; right: 10%; width: 32px; animation: twinkle 3.2s ease-in-out infinite .8s; }
  .hero-deco.heart { bottom: 6%; left: 2%; width: 64px; animation: heartFloat 5s ease-in-out infinite; }
  .hero-deco.dots { top: 44%; right: -4%; width: 74px; animation: spinSlow 22s linear infinite reverse; }
  .hero-deco.star { top: 2%; left: 30%; width: 48px; animation: twinkle 3.5s ease-in-out infinite .3s; }
  @keyframes spinSlow { to { transform: rotate(360deg); } }
  @keyframes twinkle {
    0%,100% { transform: scale(1) rotate(0); opacity: 1; }
    50% { transform: scale(1.25) rotate(20deg); opacity: 0.7; }
  }
  @keyframes heartFloat {
    0%,100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-14px) rotate(6deg); }
  }
  @keyframes heroFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .hero-photo .placeholder-label {
    position: absolute; left: 50%; bottom: 18%; transform: translateX(-50%);
    background: rgba(255,255,255,0.85); padding: 8px 16px; border-radius: 999px;
    font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-2);
    white-space: nowrap;
  }
  .hero-photo svg.kid {
    position: absolute; left: 50%; top: 12%; transform: translateX(-50%);
    width: 75%; height: auto;
  }

  /* Floating cards on hero */
  .float-card {
    position: absolute; background: white; border-radius: var(--r-md);
    padding: 14px 18px; box-shadow: var(--shadow-card);
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 600;
    animation: cardFloat 7s ease-in-out infinite;
  }
  @keyframes cardFloat {
    0%,100% { transform: translateY(0) rotate(var(--rot,0)); }
    50% { transform: translateY(-10px) rotate(var(--rot,0)); }
  }
  .float-card.fc1 { top: 8%; left: -8%; --rot: -4deg; animation-delay: -1s; }
  .float-card.fc2 { top: 55%; right: -10%; --rot: 4deg; animation-delay: -3s; }
  .float-card.fc3 { bottom: 6%; left: 10%; --rot: -2deg; animation-delay: -5s; }
  .fc-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-size: 18px; }
  .fc-icon.green { background: #e2f5e8; }
  .fc-icon.pink { background: #ffead0; }
  .fc-icon.yellow { background: #fff2cc; }
  .float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 11px; }

  /* === Nav phone widget === */
  .nav-phone {
    position: relative; display: flex; align-items: center;
    background: var(--cream); border: 1px solid var(--line);
    border-radius: 999px; padding: 4px 6px 4px 10px; gap: 6px;
    transition: border-color .2s, background .2s;
    cursor: pointer; user-select: none;
  }
  .nav-phone:hover { border-color: var(--rose); background: white; }
  .nav-phone-ico {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--rose-pale); color: var(--rose-deep);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .nav-phone-text {
    display: flex; flex-direction: column; line-height: 1.1; min-width: 0;
  }
  .nav-phone-loc { font-size: 10px; color: var(--muted); font-weight: 500; transition: opacity .35s ease; white-space: nowrap; }
  .nav-phone-num { font-size: 13.5px; color: var(--ink); font-weight: 700; letter-spacing: 0.2px; transition: opacity .35s ease; white-space: nowrap; }
  .nav-phone.swapping .nav-phone-loc,
  .nav-phone.swapping .nav-phone-num { opacity: 0; }
  .nav-phone-toggle {
    width: 22px; height: 22px; border-radius: 50%;
    color: var(--ink-2);
    display: grid; place-items: center; flex-shrink: 0;
    transition: transform .25s, background .2s, color .2s;
  }
  .nav-phone.open .nav-phone-toggle { transform: rotate(180deg); }
  .nav-phone:hover .nav-phone-toggle { background: var(--rose-pale); color: var(--rose-deep); }
  .nav-phone-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: white; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: 0 24px 50px -20px rgba(42,31,43,0.25);
    padding: 8px; min-width: 260px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .2s, visibility .2s, transform .2s;
    z-index: 50;
  }
  .nav-phone.open .nav-phone-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-phone-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 12px;
    text-decoration: none; color: var(--ink);
    transition: background .15s;
  }
  .nav-phone-item:hover { background: var(--cream); }
  .nav-phone-item .npi-pin {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--rose-pale); color: var(--rose-deep);
    display: grid; place-items: center; font-weight: 800; font-size: 12px;
    flex-shrink: 0;
  }
  .nav-phone-item:hover .npi-pin { background: var(--rose); color: white; }
  .nav-phone-item .npi-text { display: flex; flex-direction: column; line-height: 1.15; }
  .nav-phone-item .npi-loc { font-size: 11px; color: var(--muted); }
  .nav-phone-item .npi-num { font-size: 14px; font-weight: 700; }
  @media (max-width: 1200px) { .nav-phone-text { display: none; } .nav-phone { padding: 4px; } }


  /* Mobile drawer phones list */
  .drawer-phones { margin-top: 18px; padding: 14px; background: white; border-radius: 14px; border: 1px solid var(--line); }
  .drawer-phones-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
  .drawer-phones-title svg { color: var(--rose-deep); }
  .drawer-panel .drawer-phone-item { display: flex !important; align-items: center; gap: 12px; padding: 12px 6px !important; border-bottom: 1px solid var(--line); border-radius: 0 !important; text-decoration: none; color: var(--ink); background: transparent !important; font-size: inherit; font-weight: inherit; }
  .drawer-panel .drawer-phone-item:last-child { border-bottom: none; }
  .drawer-phone-item .dpi-pin { width: 36px; height: 36px; border-radius: 50%; background: var(--rose-pale); color: var(--rose-deep); display: grid; place-items: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
  .drawer-phone-item .dpi-text { display: flex; flex-direction: column; line-height: 1.2; }
  .drawer-phone-item .dpi-loc { font-size: 12px; color: var(--muted); font-weight: 500; }
  .drawer-phone-item .dpi-num { font-size: 16px; font-weight: 700; color: var(--ink); }

  /* === Quick call strip === */
  .call-strip {
    background: linear-gradient(180deg, var(--cream) 0%, #fff3df 100%);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 18px 0; position: relative; z-index: 2;
  }
  .call-inner { display: flex; flex-direction: column; gap: 10px; }
  .call-title { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--muted); }
  .call-title strong { color: var(--ink); }
  .call-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  }
  .call-chip {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px 10px 10px; border-radius: 14px;
    background: white; border: 1px solid var(--line);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    min-width: 0;
  }
  .call-chip:hover { transform: translateY(-2px); border-color: var(--rose); box-shadow: 0 12px 24px -10px rgba(217,114,8,0.3); }
  .call-pin {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--rose-pale); color: var(--rose-deep);
    display: grid; place-items: center; font-weight: 800; font-size: 14px;
    flex-shrink: 0;
  }
  .call-chip:hover .call-pin { background: var(--rose); color: white; }
  .call-info { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
  .call-name { font-size: 11px; color: var(--muted); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .call-num { font-size: 14px; color: var(--ink); font-weight: 700; letter-spacing: 0.2px; white-space: nowrap; }
  @media (max-width: 980px) {
    .call-row { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 640px) {
    .call-row { grid-template-columns: repeat(2, 1fr); }
    .call-name { font-size: 10.5px; }
    .call-num { font-size: 13px; }
  }

  /* === Marquee === */
  .marquee {
    overflow: hidden; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.5);
  }
  .marquee-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-family: var(--serif); font-size: 22px; color: var(--ink-2);
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
  .marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); display: inline-block; }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* === Section common === */
  .section { padding: 100px 0; }
  .section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
  .section-head .kicker {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    color: var(--rose); margin-bottom: 14px;
  }
  .section-head h2 {
    font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.5px;
  }
  .section-head h2 em { font-style: italic; color: var(--rose); }
  .section-head p { margin-top: 18px; color: var(--ink-2); font-size: 17px; }

  /* === Why us === */
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
  .why-card {
    background: white; border-radius: var(--r-lg); padding: 36px 30px;
    border: 1px solid var(--line);
    transition: transform .35s, box-shadow .35s;
    position: relative; overflow: hidden;
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
  .why-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--cream); opacity: 0; transition: opacity .35s;
  }
  .why-card:hover::before { opacity: 1; }
  .why-icon {
    width: 64px; height: 64px; border-radius: 20px;
    background: linear-gradient(135deg, var(--rose-soft), #fff0db);
    display: grid; place-items: center; margin-bottom: 24px;
    position: relative; z-index: 1;
    transition: transform .4s;
  }
  .why-card:hover .why-icon { transform: rotate(-6deg) scale(1.08); }
  .why-card h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 12px; position: relative; z-index: 1; }
  .why-card p { color: var(--ink-2); font-size: 15px; position: relative; z-index: 1; }

  /* === Salons === */
  .salons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .salon-card {
    grid-column: span 1;
    background: white; border-radius: var(--r-lg); overflow: hidden;
    box-shadow: 0 2px 0 var(--line);
    transition: transform .35s, box-shadow .35s;
    cursor: pointer; position: relative;
    border: 1px solid var(--line);
  }
  .salon-card:nth-child(1), .salon-card:nth-child(2) { grid-column: span 1.5; }
	 .salon-card:hover { 
	  transform: translateY(-4px); 
	  box-shadow: var(--shadow-card); 
	}
  .salon-img {
    aspect-ratio: 16/10; position: relative; overflow: hidden;
    background: #f0e6d8;
  }
  .salon-img img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform .6s ease;
  }
  .salon-card:hover .salon-img img { transform: scale(1.06); }
  
  
  .salon-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.salon-card-link:hover,
.salon-card-link:focus,
.salon-card-link:active {
  color: inherit;
  text-decoration: none;
}

.salon-card-link:hover {
  transform: translateY(-4px);
}

.salon-card-link:hover h3,
.salon-card-link:hover p,
.salon-card-link:hover span {
  text-decoration: none;
}

.salon-card-link .phone {
  color: var(--ink);
}

.salon-card-link:hover .phone {
  color: var(--ink);
}
  
  
  .salon-img::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
  }
  .salon-tag {
    position: absolute; top: 14px; left: 14px; z-index: 2; background: white; padding: 6px 12px;
    border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--ink);
  }
  .salon-body { padding: 22px 24px 24px; }
  .salon-body h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
  .salon-body .addr { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
  .salon-body .phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; color: var(--ink); font-size: 15px;
    transition: color .2s;
  }
  .salon-body .phone:hover { color: var(--rose-deep); }
  .salon-body .phone svg { width: 16px; height: 16px; }

  /* === Services strip === */
  .services {
    background: var(--ink); color: white; border-radius: var(--r-xl); padding: 80px 64px; overflow: hidden;
    position: relative;
  }
  .services::before {
    content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(242,139,28,0.35), transparent 65%);
  }
  .services-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
  .services h2 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; margin-bottom: 18px; }
  .services h2 em { font-style: italic; color: var(--rose-soft); }
  .services .lead { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
  .services-list { display: flex; flex-direction: column; gap: 12px; }
  .service-item {
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 20px 24px; background: rgba(255,255,255,0.06); border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background .2s, transform .2s;
  }
  .service-item:hover { background: rgba(255,255,255,0.12); transform: translateX(6px); }
  .service-item .name { font-weight: 600; font-size: 16px; }
  .service-item .desc { color: rgba(255,255,255,0.6); font-size: 13px; margin-top: 4px; }
  .service-item .price { font-family: var(--serif); font-size: 22px; color: var(--rose-soft); white-space: nowrap; }

  /* === Achievements === */
  .achievements {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center;
  }
  .ach {
    background: white; border-radius: var(--r-lg); padding: 40px 24px;
    border: 1px solid var(--line);
    transition: transform .3s;
  }
  .ach:hover { transform: translateY(-4px); }
  .ach .big {
    font-family: var(--serif); font-size: clamp(48px, 6vw, 72px); color: var(--rose);
    line-height: 1; letter-spacing: -2px;
  }
  .ach .lbl { margin-top: 10px; color: var(--ink-2); font-size: 14.5px; }

  /* === Reviews carousel === */
  .reviews-carousel { position: relative; }
  .reviews-viewport {
    overflow: hidden;
    margin: 0 -12px;
    padding: 8px 12px 16px;
    cursor: grab;
  }
  .reviews-viewport:active { cursor: grabbing; }
  .reviews-track {
    display: flex;
    gap: 24px;
    transition: transform .6s cubic-bezier(.4, .2, .2, 1);
    will-change: transform;
  }
  .reviews-track.no-anim { transition: none; }
  .review {
    background: white; border-radius: var(--r-lg); padding: 30px;
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .3s, box-shadow .3s;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    box-sizing: border-box;
  }
  .review:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .review .stars { color: #ffb800; letter-spacing: 2px; font-size: 16px; }
  .review .text { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; }
  .review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .review .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--rose-soft); display: grid; place-items: center;
    font-family: var(--serif); color: var(--rose-deep); font-size: 20px;
    flex-shrink: 0;
  }
  .review .name { font-weight: 700; font-size: 14.5px; }
  .review .meta { font-size: 12.5px; color: var(--muted); }

  /* Carousel controls */
  .reviews-controls {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-top: 28px;
  }
  .reviews-arrows { display: flex; gap: 10px; }
  .reviews-arrow {
    width: 52px; height: 52px; border-radius: 50%;
    background: white; color: var(--ink);
    border: 1.5px solid var(--line);
    display: grid; place-items: center;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  }
  .reviews-arrow:hover:not(:disabled) {
    background: var(--ink); color: white; border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(31,26,38,0.35);
  }
  .reviews-arrow:active:not(:disabled) { transform: translateY(0); }
  .reviews-arrow:disabled {
    opacity: 0.35; cursor: not-allowed;
  }
  .reviews-arrow svg { width: 18px; height: 18px; transition: transform .2s; }
  .reviews-arrow.prev:hover:not(:disabled) svg { transform: translateX(-2px); }
  .reviews-arrow.next:hover:not(:disabled) svg { transform: translateX(2px); }

  /* Dots */
  .reviews-dots {
    display: flex; gap: 8px; align-items: center;
  }
  .reviews-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose-soft); cursor: pointer;
    border: 0; padding: 0;
    transition: width .3s, background .3s;
  }
  .reviews-dot.active {
    background: var(--rose); width: 28px; border-radius: 999px;
  }
  .reviews-dot:hover:not(.active) { background: var(--rose); opacity: 0.6; }

  @media (max-width: 1060px) {
    .review { flex: 0 0 calc((100% - 24px) / 2); }
  }
  @media (max-width: 640px) {
    .review { flex: 0 0 100%; padding: 24px; }
    .reviews-viewport { margin: 0 -16px; padding: 8px 16px 16px; }
    .reviews-arrow { width: 44px; height: 44px; }
    .reviews-arrow svg { width: 16px; height: 16px; }
    .reviews-controls { margin-top: 22px; }
  }

  /* === Booking === */
  .booking {
    background: linear-gradient(135deg, #ffe4bf 0%, #ffd0a3 60%, #fcc391 100%);
    border-radius: var(--r-xl); padding: 64px;
    color: var(--ink); position: relative; overflow: hidden;
  }
  .booking::before {
    content: ''; position: absolute; right: -80px; bottom: -80px; width: 320px; height: 320px;
    border-radius: 50%; border: 30px solid rgba(255,255,255,0.45);
  }
  .booking::after {
    content: ''; position: absolute; left: 30%; top: -60px; width: 140px; height: 140px;
    border-radius: 50%; background: rgba(255,255,255,0.5);
  }
  .booking-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
  .booking h2 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 54px); line-height: 1.05; margin-bottom: 18px; color: var(--ink); }
  .booking h2 em { color: var(--rose-deep); font-style: italic; }
  .booking p.lead { color: var(--ink-2); margin-bottom: 28px; }
  .booking-perks { display: flex; flex-direction: column; gap: 12px; }
  .booking-perks li {
    list-style: none; display: flex; align-items: center; gap: 10px; font-size: 15px;
  }
  .check {
    width: 22px; height: 22px; border-radius: 50%; background: var(--rose); color: white;
    display: grid; place-items: center; font-weight: 800; flex-shrink: 0; font-size: 12px;
  }
  .booking-form {
    background: white; border-radius: var(--r-lg); padding: 36px;
    box-shadow: 0 40px 80px -30px rgba(0,0,0,0.25);
    color: var(--ink);
  }
  .booking-form h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 6px; }
  .booking-form .sub { color: var(--muted); margin-bottom: 22px; font-size: 14px; }
  .form-row { margin-bottom: 14px; }
  .form-row label {
    display: block; font-size: 12.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.5px;
  }
  .form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 13px 16px; border-radius: 14px; border: 1.5px solid var(--line);
    font-family: inherit; font-size: 15px; color: var(--ink);
    background: var(--cream); transition: border-color .2s, background .2s;
  }
  .form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--rose); background: white;
  }
  .form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip {
    padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line);
    font-size: 13.5px; font-weight: 600; color: var(--ink-2); background: white;
    transition: all .2s;
  }
  .chip:hover { border-color: var(--rose); color: var(--rose-deep); }
  .chip.active { background: var(--ink); color: white; border-color: var(--ink); }
  .form-submit { width: 100%; margin-top: 8px; padding: 16px; font-size: 15px; }
  .form-success {
    display: none; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    padding: 30px 10px; text-align: center;
  }
  .form-success.active { display: flex; }
  .success-mark {
    width: 64px; height: 64px; border-radius: 50%; background: #e2f5e8; color: #2d8c4e;
    display: grid; place-items: center; font-size: 28px;
    animation: pop .4s ease-out;
  }
  @keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }

  /* === Footer === */
  .footer {
    background: var(--ink); color: rgba(255,255,255,0.7); padding: 80px 0 30px; margin-top: 100px;
    position: relative; overflow: hidden;
  }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
  .footer h4 { color: white; font-family: var(--serif); font-size: 20px; margin-bottom: 18px; }
  .footer a { display: block; padding: 6px 0; font-size: 14.5px; color: rgba(255,255,255,0.7); transition: color .2s; }
  .footer a:hover { color: var(--rose-soft); }
  .footer .logo { color: white; margin-bottom: 18px; }
  .footer .desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; max-width: 320px; }
  .socials { display: flex; gap: 10px; }
  .socials a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: grid; place-items: center; padding: 0;
    transition: background .2s, transform .2s;
  }
  .socials a:hover { background: var(--rose); transform: translateY(-3px); }
  .copy {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 13px; color: rgba(255,255,255,0.45);
  }

  /* Floating chat button */
  .fab {
    position: fixed; right: 24px; bottom: 24px; z-index: 60;
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--rose); color: white;
    display: grid; place-items: center;
    box-shadow: 0 18px 40px -10px rgba(242,139,28,0.6);
    animation: pulse 2.2s infinite;
    transition: transform .25s;
  }
  .fab:hover { transform: scale(1.08); }

  /* Scroll-to-top button */
  .to-top {
    position: fixed; right: 24px; bottom: 96px; z-index: 60;
    width: 50px; height: 50px; border-radius: 50%;
    background: white; color: var(--ink);
    display: grid; place-items: center;
    box-shadow: 0 12px 28px -10px rgba(42,31,43,0.25), 0 0 0 1px var(--line);
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s, background .2s, color .2s;
    cursor: pointer;
  }
  .to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .to-top:hover { background: var(--rose); color: white; transform: translateY(-4px); box-shadow: 0 16px 32px -10px rgba(242,139,28,0.5); }
  .to-top svg { transition: transform .25s; }
  .to-top:hover svg { transform: translateY(-2px); }

  /* Reveal animations */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal[data-d="1"] { transition-delay: .1s; }
  .reveal[data-d="2"] { transition-delay: .2s; }
  .reveal[data-d="3"] { transition-delay: .3s; }
  .reveal[data-d="4"] { transition-delay: .4s; }

  /* === Mobile menu drawer === */
  .drawer {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(31,26,38,0.5); backdrop-filter: blur(8px);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .drawer.open { opacity: 1; visibility: visible; }
  .drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 88%);
    background: var(--cream); padding: 28px 24px;
    transform: translateX(100%); transition: transform .35s ease;
    overflow-y: auto;
  }
  .drawer.open .drawer-panel { transform: translateX(0); }
  .drawer-close { position: absolute; right: 18px; top: 18px; width: 40px; height: 40px; border-radius: 50%; background: white; }
  .drawer-lang {
	  margin-top: 54px;
	  margin-bottom: 18px;
	  padding: 14px 16px;
	  background: rgba(255,255,255,0.72);
	  border: 1px solid var(--line);
	  border-radius: 18px;
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
	  gap: 14px;
	}

	.drawer-lang-label {
	  font-size: 12px;
	  font-weight: 700;
	  color: var(--muted);
	  text-transform: uppercase;
	  letter-spacing: 0.08em;
	}

	.drawer-lang-switch {
	  display: flex;
	  background: var(--cream);
	  border: 1px solid var(--line);
	  border-radius: 999px;
	  padding: 3px;
	  flex-shrink: 0;
	}

	.drawer-lang-switch a {
	  min-width: 42px;
	  padding: 7px 12px;
	  border-radius: 999px;
	  font-size: 12px;
	  font-weight: 800;
	  line-height: 1;
	  color: var(--muted);
	  text-align: center;
	  text-decoration: none;
	  transition: background .2s, color .2s;
	}

	.drawer-lang-switch a.active {
	  background: var(--ink);
	  color: white;
	}
  .drawer-panel nav { margin-top: 0; display: flex; flex-direction: column; gap: 4px; }
  .drawer-panel nav a {
    display: block; padding: 14px 16px; border-radius: 14px; font-size: 17px; font-weight: 600;
    color: var(--ink); transition: background .15s;
  }
  .drawer-panel nav a:hover { background: white; }
  .drawer-panel nav a.btn-primary { color: white; background: var(--ink); }
  .drawer-panel nav a.btn-primary:hover { background: var(--rose); color: white; }
  .drawer-panel .sub { padding-left: 16px; }
  .drawer-panel .sub a { font-size: 14px; font-weight: 500; color: var(--ink-2); padding: 8px 16px; }
  .drawer-panel .btn { margin-top: 20px; justify-content: center; width: 100%; }

  /* === Responsive === */
  @media (max-width: 1180px) {
    .nav-links a { padding: 9px 9px; font-size: 13px; }
    .nav-links { gap: 0; }
  }
  @media (max-width: 1060px) {
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .salons-grid { grid-template-columns: 1fr 1fr; }
    .services { padding: 60px 36px; }
    .services-grid { grid-template-columns: 1fr; gap: 36px; }
    .achievements { grid-template-columns: 1fr 1fr; }
    .booking { padding: 48px 36px; }
    .booking-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
	.nav-links { display: none; }
	.hamburger { display: block; }
	/* На мобільному ховаємо ВСІ кнопки в nav-cta, але залишаємо nav-phone */
	.nav-cta .btn { display: none; }
	.lang { display: none; }
	/* nav-phone — більш помітний на мобільному */
	.nav-phone {
	  background: var(--rose-pale);
	  border-color: transparent;
	  padding: 6px;
	}
	.nav-phone:hover { background: var(--rose-pale); border-color: transparent; }
	.nav-phone-ico {
	  background: var(--rose);
	  color: white;
	  width: 32px;
	  height: 32px;
	}
	.nav-phone-toggle { color: var(--rose-deep); }
	/* Випадаюче меню телефонів — обмежуємо ширину, щоб не виходило за межі екрана */
	.nav-phone-menu {
	  right: 0;
	  min-width: 280px;
	  max-width: calc(100vw - 24px);
	}
  }
  @media (max-width: 640px) {
    .section { padding: 70px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .salons-grid { grid-template-columns: 1fr; }
    .achievements { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .booking { padding: 36px 22px; border-radius: 28px; }
    .booking-form { padding: 24px; }
    .services { padding: 50px 22px; border-radius: 28px; }
    .float-card { padding: 10px 14px; font-size: 12px; }
    .float-card.fc1 { left: -4%; }
    .float-card.fc2 { right: -4%; }
    .hero { padding: 24px 0 32px; }
    .nav { padding: 14px 0; }
    .logo { font-size: 24px; }
    .form-grid-2 { grid-template-columns: 1fr; }
	.nav { padding: 14px 0; gap: 12px; }
	/* nav-phone максимально компактний — лише іконка та chevron */
	.nav-phone { padding: 4px; gap: 4px; }
	.nav-phone-ico { width: 36px; height: 36px; }
	.nav-phone-toggle { width: 20px; height: 20px; }
	/* Випадаюче меню — на повну ширину екрана з відступами */
	.nav-phone-menu {
	  right: -4px;
	  min-width: 260px;
	  max-width: calc(100vw - 16px);
	}
	.nav-phone-item { padding: 12px 10px; }
  }