/* ================================================================
   Components — блоки N1 N3 H5 S1 F2 P1 G1 G2 T1 C1 C3 K1 K2 K4 K5 Q2 FT1
   ================================================================ */

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  padding: 17px 32px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--dark {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--sh-btn);
}
.btn--dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--sh-btn-hv);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--sh-btn);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-btn-hv);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-btn);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--sh-btn-hv); color: var(--accent); }

.btn--sm  { padding: 12px 22px; font-size: .9375rem; }
.btn--lg  { padding: 20px 40px; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ----------------------------------------------------------------
   N1 — Sticky nav
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 252, 249, .78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(26, 22, 20, .05);
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.logo__mark {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 11px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--white);
}
.logo__mark svg { width: 20px; height: 20px; }
.logo span em { font-style: normal; color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}
.nav__links a {
  position: relative;
  font-size: .9688rem;
  font-weight: 500;
  color: var(--ink-2);
  padding-block: 6px;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { margin-left: 12px; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1.5px solid var(--line-strong);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
}
.nav__burger span {
  display: block;
  width: 19px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ----------------------------------------------------------------
   N3 — Full-screen mobile overlay
   ---------------------------------------------------------------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg-hero);
  display: flex;
  flex-direction: column;
  padding: 24px var(--gutter) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
  overflow-y: auto;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; }
body.menu-open { overflow: hidden; }

.menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  margin-bottom: 22px;
}
.menu__close {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.menu__close svg { width: 22px; height: 22px; }

.menu__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: auto;
}
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  padding-block: 12px;
  border-bottom: 1px solid rgba(26, 22, 20, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__links a svg { width: 22px; height: 22px; color: var(--accent); opacity: .55; }

.menu__foot {
  margin-top: 40px;
  display: grid;
  gap: 12px;
}
.menu__meta {
  margin-top: 20px;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  text-align: center;
}
.menu__meta a { font-weight: 600; color: var(--ink); }

/* ----------------------------------------------------------------
   H5 — Hero, colour flood + decorative blobs
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--bg-hero);
  padding-top: calc(var(--nav-h) + clamp(48px, 6vw, 84px));
  padding-bottom: clamp(64px, 7vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.hero__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero__deco--tl { top: -40px;  left: -70px;  width: clamp(180px, 24vw, 330px); opacity: .5; }
.hero__deco--br { bottom: -70px; right: -60px; width: clamp(200px, 26vw, 380px); opacity: .38; }
.hero__deco--dots { top: 40%; left: 46%; width: 120px; opacity: .5; }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(26, 22, 20, .07);
  border-radius: var(--r-pill);
  padding: 8px 17px 8px 10px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 26px;
}
.hero__badge .stars { color: var(--star); display: inline-flex; gap: 1px; }
.hero__badge .stars svg { width: 15px; height: 15px; }

.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero__lead {
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 30em;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  border-radius: 260px 260px var(--r-card) var(--r-card);
  box-shadow: 0 30px 70px rgba(26, 22, 20, .18);
  background: linear-gradient(150deg, #F2DEC8, #E8C9AE);
}
.hero__chip {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 13px 18px;
  box-shadow: 0 12px 34px rgba(26, 22, 20, .14);
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: var(--fs-small);
  line-height: 1.3;
}
.hero__chip svg { width: 22px; height: 22px; color: var(--accent); flex: none; }
.hero__chip b { display: block; color: var(--ink); font-size: .9375rem; font-weight: 600; }
.hero__chip span { color: var(--ink-soft); font-size: .8125rem; }
.hero__chip--a { left: -18px; bottom: 68px; }
.hero__chip--b { right: -10px; top: 44px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__badge { margin-inline: auto; }
  .hero__media { order: -1; max-width: 420px; margin-inline: auto; }
  /* высоту режем, чтобы H1 не уезжал за первый экран.
     px, а не vh — vh ломается при съёмке высоким вьюпортом */
  .hero__media img {
    aspect-ratio: 4 / 3.4;
    max-height: 380px;
    border-radius: 180px 180px var(--r-card) var(--r-card);
  }
  .hero__chip--a { left: -8px; bottom: 24px; }
  .hero__chip--b { right: -8px; top: 20px; }
}
@media (max-width: 520px) {
  .hero__chip { padding: 10px 13px; }
  .hero__chip svg { width: 18px; height: 18px; }
  .hero__chip--a { left: -6px; bottom: 12px; }
  .hero__chip--b { right: -6px; top: 10px; }
}

/* ----------------------------------------------------------------
   S1 — Stat pills
   ---------------------------------------------------------------- */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.stat {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 15px 26px;
  box-shadow: var(--sh-card);
  font-size: var(--fs-small);
  color: var(--ink-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.stat:hover { transform: translateY(-2px); box-shadow: var(--sh-card-hv); }
.stat__icon { display: inline-flex; color: var(--accent); flex: none; }
.stat__icon svg { width: 19px; height: 19px; }
.stat__icon--star { color: var(--star); }
.stat b { color: var(--ink); font-weight: 700; font-family: var(--font-display); font-size: 1.0625rem; }

@media (max-width: 620px) {
  .stats__row { flex-direction: column; align-items: stretch; }
  .stat { justify-content: center; }
}

/* ----------------------------------------------------------------
   F2 — Service cards with photo + price
   ---------------------------------------------------------------- */
.svc {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-card-hv);
  border-color: transparent;
}
.svc__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(150deg, #F2DEC8, #E4C7B4);
}
.svc__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.svc:hover .svc__media img { transform: scale(1.055); }

.svc__price {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 18px rgba(26, 22, 20, .14);
}
.svc__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { margin-bottom: 10px; }
.svc__body p { font-size: var(--fs-small); color: var(--ink-soft); margin-bottom: 18px; }
.svc__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--accent);
}
.svc__meta svg { width: 16px; height: 16px; }

.svc-note {
  margin-top: 36px;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

/* ----------------------------------------------------------------
   P1 — 3 steps
   ---------------------------------------------------------------- */
.steps { position: relative; }
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 38px 30px 34px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-card-hv); }
.step__num {
  width: 54px; height: 54px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 22px;
}
.step__icon {
  position: absolute;
  top: 34px; right: 30px;
  color: var(--accent);
  opacity: .28;
}
.step__icon svg { width: 34px; height: 34px; }
.step h3 { margin-bottom: 12px; }
.step p { font-size: var(--fs-small); color: var(--ink-soft); }

/* ----------------------------------------------------------------
   G1 — Masonry gallery
   ---------------------------------------------------------------- */
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 132px;
  gap: clamp(12px, 1.5vw, 20px);
}
.masonry figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-media);
  background: linear-gradient(150deg, #F2DEC8, #E4C7B4);
}
.masonry img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.masonry figure:hover img { transform: scale(1.06); }
.masonry figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 16px 14px;
  background: linear-gradient(to top, rgba(20, 16, 14, .72), transparent);
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.masonry figure:hover figcaption { opacity: 1; transform: none; }

.masonry .m-tall { grid-row: span 3; }
.masonry .m-std  { grid-row: span 2; }

/* На 2 колонки делаем равные плитки — иначе нижний край рвётся */
@media (max-width: 900px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .masonry figure { aspect-ratio: 1 / 1.12; }
  .masonry .m-tall, .masonry .m-std { grid-row: auto; }
}
@media (max-width: 520px) {
  .masonry figure { aspect-ratio: 1 / 1.15; }
  .masonry figcaption { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------------
   G2 — Before / After slider
   ---------------------------------------------------------------- */
.ba {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.ba__text h2 { margin-bottom: 18px; }
.ba__text p { color: var(--ink-soft); font-size: var(--fs-lead); margin-bottom: 26px; }
.ba__hint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-wash);
  border-radius: var(--r-pill);
  padding: 11px 20px;
}
.ba__hint svg { width: 18px; height: 18px; }

.ba__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-card);
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: linear-gradient(150deg, #F2DEC8, #E4C7B4);
}
.ba__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
  will-change: width;
}
.ba__clip .ba__img {
  width: var(--ba-stage-w, 100%);
  max-width: none;
}
.ba__tag {
  position: absolute;
  top: 16px;
  z-index: 3;
  background: rgba(26, 22, 20, .78);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba__tag--before { left: 16px; }
.ba__tag--after  { right: 16px; background: rgba(217, 119, 87, .92); }

.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(26, 22, 20, .12);
  will-change: left;
}
.ba__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(26, 22, 20, .28);
  color: var(--ink);
}
.ba__grip svg { width: 24px; height: 24px; }
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

@media (max-width: 900px) {
  .ba { grid-template-columns: 1fr; }
  .ba__text { text-align: center; }
  .ba__text p { margin-inline: auto; }
}

/* ----------------------------------------------------------------
   T1 — Testimonials
   ---------------------------------------------------------------- */
.tst {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tst:hover { transform: translateY(-6px); box-shadow: var(--sh-card-hv); }
.tst .stars { display: flex; gap: 3px; color: var(--star); margin-bottom: 20px; }
.tst .stars svg { width: 18px; height: 18px; }
.tst__quote {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 26px;
  flex: 1;
}
.tst__who {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tst__av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  flex: none;
}
.tst__who b { display: block; color: var(--ink); font-size: .9688rem; font-weight: 600; }
.tst__who span { font-size: .8125rem; color: var(--ink-soft); }

/* ----------------------------------------------------------------
   Q2 — Two column FAQ
   ---------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 22px) clamp(24px, 3vw, 48px);
  align-items: start;
}
.faq {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--white);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq.is-open { border-color: var(--accent); box-shadow: var(--sh-card); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 24px 26px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.faq__sign {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent-wash);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease);
}
.faq__sign svg { width: 17px; height: 17px; }
.faq.is-open .faq__sign {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s var(--ease);
}
.faq.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 26px 26px;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  max-width: none;
}

@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------
   C1 — CTA band
   ---------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--ink);
  border-radius: 32px;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  isolation: isolate;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.cta-band::before {
  width: 380px; height: 380px;
  right: -110px; top: -160px;
  background: radial-gradient(circle, rgba(217, 119, 87, .55), transparent 68%);
}
.cta-band::after {
  width: 320px; height: 320px;
  left: -130px; bottom: -180px;
  background: radial-gradient(circle, rgba(247, 233, 215, .3), transparent 68%);
}
.cta-band h2 { color: var(--white); max-width: 15ch; }
.cta-band p {
  color: rgba(255, 255, 255, .68);
  margin-top: 16px;
  font-size: var(--fs-lead);
  max-width: 34ch;
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

@media (max-width: 820px) {
  .cta-band { flex-direction: column; text-align: center; }
  .cta-band h2, .cta-band p { max-width: none; margin-inline: auto; }
  .cta-band__actions { justify-content: center; width: 100%; }
}

/* ----------------------------------------------------------------
   K1 / K2 / K4 / K5 — Contact
   ---------------------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

/* K1 pills */
.kpills { display: grid; gap: 14px; margin-bottom: 30px; }
.kpill {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 16px 26px 16px 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.kpill:hover { transform: translateY(-2px); box-shadow: var(--sh-card); border-color: transparent; }
.kpill__ic {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--accent-wash);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.kpill__ic svg { width: 21px; height: 21px; }
.kpill b { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 3px; }
.kpill span { display: block; color: var(--ink); font-weight: 500; font-size: 1rem; line-height: 1.35; }

/* K4 hours table */
.hours {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 28px;
}
.hours h3 {
  font-size: 1.1875rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hours h3 svg { width: 20px; height: 20px; color: var(--accent); }
.hours table th,
.hours table td {
  padding: 11px 0;
  font-size: var(--fs-small);
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.hours table tr:last-child th,
.hours table tr:last-child td { border-bottom: 0; }
.hours table th { font-weight: 500; color: var(--ink-soft); }
.hours table td { text-align: right; color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.hours table td.is-closed { color: var(--ink-soft); font-weight: 500; }
.hours__now {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 8px 16px;
  background: var(--accent-wash);
  color: var(--accent-dark);
}
.hours__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* K2 map */
.map {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-card);
  background: var(--bg-soft);
  min-height: 340px;
  height: 100%;
}
.map iframe { width: 100%; height: 100%; min-height: 420px; display: block; filter: saturate(.92); }

/* K5 quick actions */
.quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.quick a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: var(--r-media);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .8438rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease);
}
.quick a svg { width: 24px; height: 24px; color: var(--accent); }
.quick a:hover { transform: translateY(-3px); box-shadow: var(--sh-card); color: var(--accent); }

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
  .map iframe { min-height: 320px; }
}

/* ----------------------------------------------------------------
   C3 — Sticky mobile bar
   ---------------------------------------------------------------- */
.mobar {
  display: none;
  position: fixed;
  z-index: 80;
  inset: auto 0 0 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
  background: rgba(255, 252, 249, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobar .btn { flex: 1; padding: 15px 12px; font-size: .9375rem; }
.mobar .btn--wa { background: #1FA855; color: #fff; box-shadow: var(--sh-btn); }
.mobar .btn--wa:hover { background: #17853F; }

@media (max-width: 768px) {
  .mobar { display: flex; }
}

/* ----------------------------------------------------------------
   FT1 — Mini footer
   ---------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  padding-block: 56px 44px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.footer .logo { color: #fff; }
.footer .logo__mark { background: var(--accent); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .8);
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.footer__social a svg { width: 20px; height: 20px; }
.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}
.footer__bottom {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .8438rem;
}
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

@media (max-width: 620px) {
  .footer__inner, .footer__bottom { flex-direction: column; text-align: center; }
}
