/* ============================================================
   Vikalp Photo — Website UI kit  v3  (luxury editorial · glass · heritage)
   Exaggerated Minimalism × Warm Glass × Heritage Gold
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  cursor: default;
  overflow-x: hidden;
}
img {
  display: block; max-width: 100%;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
a { color: inherit; }
a img, button img { pointer-events: none; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: var(--gold-300); color: var(--ink-900); }

/* ---- extended design tokens ---- */
:root {
  --glass-bg:         rgba(251, 247, 240, 0.18);
  --glass-border:     rgba(244, 189, 31, 0.22);
  --glass-shadow:     0 8px 32px rgba(28, 23, 20, 0.12);
  --glass-blur:       blur(18px);
  --gradient-brand:   linear-gradient(135deg, var(--red-500) 0%, var(--orange-500) 100%);
  --gradient-glow:    radial-gradient(ellipse at 60% 40%, rgba(244,189,31,0.22) 0%, transparent 70%);
  --glow-brand:       0 0 48px rgba(200, 32, 46, 0.30);
  --glow-gold:        0 0 48px rgba(244, 189, 31, 0.32);
  --gradient-warm:    radial-gradient(ellipse at 50% 0%, rgba(244,189,31,0.14) 0%, transparent 65%);
  --type-display:     clamp(3.2rem, 6vw, 6rem);
  --shadow-float:     0 24px 80px rgba(28, 23, 20, 0.18), 0 4px 16px rgba(28, 23, 20, 0.08);
}

/* ---- layout ---- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--sunken { background: var(--surface-sunken); }
.section--ink { background: var(--ink-900); color: var(--cream-1); overflow: hidden; }

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.18s; }
.reveal--delay-3 { transition-delay: 0.30s; }
.reveal--delay-4 { transition-delay: 0.44s; }
.reveal--delay-5 { transition-delay: 0.60s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-visible { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   COMPONENT PRIMITIVES
   ============================================================ */
.vk-btn {
  --_bg: var(--brand); --_fg: var(--brand-contrast); --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-sans); font-weight: var(--fw-bold); line-height: 1;
  border: var(--bw-thick) solid var(--_bd); background: var(--_bg); color: var(--_fg);
  border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
  white-space: nowrap; position: relative; overflow: hidden;
  transition:
    background var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard);
}
/* ripple */
.vk-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.22);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0s, opacity 0s;
}
.vk-btn:active::after {
  opacity: 0;
  transform: scale(2.5);
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.vk-btn--md  { font-size: var(--fs-body);  padding: 12px 24px; }
.vk-btn--sm  { font-size: var(--fs-small); padding: 9px 16px; }
.vk-btn--lg  { font-size: var(--fs-lead);  padding: 17px 34px; letter-spacing: .01em; }
.vk-btn--full { width: 100%; }
.vk-btn svg { width: 1.2em; height: 1.2em; flex: none; }
.vk-btn--primary { --_bg: var(--brand); --_fg: var(--brand-contrast); }
.vk-btn--primary:hover { --_bg: var(--brand-hover); box-shadow: var(--glow-brand); }
.vk-btn--primary:active { --_bg: var(--brand-press); transform: translateY(1px); }
.vk-btn--gold { --_bg: var(--gold-500); --_fg: var(--ink-900); }
.vk-btn--gold:hover { --_bg: var(--gold-400); box-shadow: var(--glow-gold); }
.vk-btn--gold:active { --_bg: var(--gold-600); transform: translateY(1px); }
.vk-btn--secondary { --_bg: transparent; --_fg: var(--brand); --_bd: var(--brand); }
.vk-btn--secondary:hover { --_bg: var(--red-50); }
.vk-btn--ghost { --_bg: transparent; --_fg: var(--text-strong); }
.vk-btn--ghost:hover { --_bg: var(--cream-2); }
.vk-btn--inverse { --_bg: var(--white); --_fg: var(--ink-900); }
.vk-btn--inverse:hover { --_bg: var(--cream-1); box-shadow: var(--shadow-md); }
.vk-btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }

.vk-iconbtn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; border-radius: var(--radius-pill);
  width: 44px; height: 44px;
  transition: background var(--dur-fast) var(--ease-standard), transform var(--dur-fast) var(--ease-standard);
}
.vk-iconbtn svg { width: 45%; height: 45%; }
.vk-iconbtn--soft   { background: var(--red-50);    color: var(--brand); }
.vk-iconbtn--soft:hover { background: var(--red-100); }
.vk-iconbtn--solid  { background: var(--brand);     color: #fff; }
.vk-iconbtn--solid:hover { background: var(--brand-hover); }
.vk-iconbtn--gold   { background: var(--gold-500);  color: var(--ink-900); }
.vk-iconbtn--ghost  { background: transparent; color: var(--cream-1); box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); }
.vk-iconbtn--ghost:hover { background: rgba(255,255,255,.12); }
.vk-iconbtn:active { transform: translateY(1px); }

.vk-tag {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--font-sans); font-weight: var(--fw-semibold);
  font-size: var(--fs-small); line-height: 1; padding: 9px 18px;
  border-radius: var(--radius-pill); background: var(--white); color: var(--text-body);
  box-shadow: inset 0 0 0 1px var(--border); cursor: pointer;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), color var(--dur-fast);
}
.vk-tag:hover { box-shadow: inset 0 0 0 1px var(--border-strong); background: var(--cream-1); }
.vk-tag--active { background: var(--brand); color: #fff; box-shadow: none; }
.vk-tag--active:hover { background: var(--brand-hover); }

.vk-badge {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-sans); font-weight: var(--fw-bold);
  font-size: var(--fs-caption); letter-spacing: var(--ls-wide);
  text-transform: uppercase; line-height: 1; padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.vk-badge--gold  { background: var(--gold-500); color: var(--ink-900); }
.vk-badge--red   { background: var(--red-50);   color: var(--red-600); }
.vk-badge--ink   { background: var(--ink-900);  color: var(--cream-1); }
.vk-badge--glass { background: rgba(28,23,20,.55); color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-weight: var(--fw-bold); font-size: var(--fs-eyebrow);
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-700); line-height: 1;
}
.eyebrow::before { content: ""; width: 36px; height: 2px; background: currentColor; flex: none; }
.eyebrow--onDark { color: var(--gold-400); }

.hero__brand-line {
  display: block; color: #fff;
  font-weight: var(--fw-bold); font-size: var(--fs-small);
  letter-spacing: .04em; margin-bottom: var(--space-2);
}

.seal {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 96px; height: 96px; border-radius: var(--radius-pill);
  background: var(--gold-500); color: var(--ink-900); text-align: center; flex: none;
  box-shadow: inset 0 0 0 3px var(--ink-900), var(--shadow-md);
}
.seal__since { font-size: 10px; font-weight: var(--fw-bold); letter-spacing: .16em; text-transform: uppercase; }
.seal__year  { font-family: var(--font-serif); font-weight: 800; font-size: 26px; line-height: 1; }
.seal__est   { font-size: 9px; font-weight: var(--fw-bold); letter-spacing: .16em; text-transform: uppercase; }

.rating { display: inline-flex; align-items: center; gap: 8px; }
.rating__stars { display: inline-flex; gap: 2px; color: var(--gold-500); }
.rating__stars svg { width: 18px; height: 18px; }
.rating__score { font-weight: var(--fw-bold); color: var(--text-strong); }
.rating__count { color: var(--text-muted); font-size: var(--fs-small); }
.section--ink .rating__score { color: var(--cream-1); }
.section--ink .rating__count { color: var(--ink-200); }

/* glass input */
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--text-strong); }
.field__label span { color: var(--brand); }
.input {
  font-family: var(--font-sans); font-size: var(--fs-body); color: var(--text-strong);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 13px 16px; width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.input::placeholder { color: var(--text-subtle); }
.input:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(168, 122, 12, 0.18), 0 2px 12px rgba(244, 189, 31, 0.12);
  background: rgba(255, 255, 255, 0.96);
}
textarea.input { min-height: 120px; resize: vertical; }

/* ============================================================
   NOTIFICATION BAR
   ============================================================ */
.notif-bar {
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  height: var(--notif-h, 48px);
  background: var(--ink-900);
  border-bottom: 1px solid rgba(244,189,31,0.22);
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: center;
}
.notif-bar__text {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.9rem;
  font-weight: var(--fw-semibold); letter-spacing: .04em;
  color: var(--ink-200); line-height: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.notif-bar__text svg { width: 14px; height: 14px; color: var(--gold-400); flex: none; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-sticky);
  background: var(--gold-500);
  transition: background var(--dur-normal) var(--ease-standard), box-shadow var(--dur-normal) var(--ease-standard);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.site-header__bar { display: flex; align-items: center; gap: var(--space-5); height: 68px; }
.site-header__brand {
  display: flex; align-items: center; gap: var(--space-3);
  text-decoration: none; flex: none;
}
.site-header__logo { height: 58px; width: auto; object-fit: contain; }
.site-header__nav { display: flex; gap: var(--space-5); align-items: center; margin-left: auto; }
.site-header__nav a {
  font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--ink-800);
  text-decoration: none; letter-spacing: .04em;
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.site-header__nav a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-3); margin-left: var(--space-4); }
.site-header__burger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--ink-900); padding: 4px;
}
.site-header__burger svg { width: 22px; height: 22px; }
.site-header__mobile {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0 var(--gutter);
  border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s var(--ease-out), opacity 0.25s var(--ease-standard), padding 0.35s var(--ease-out);
}
.site-header__mobile.is-open {
  max-height: 440px; opacity: 1;
  padding: var(--space-5) var(--gutter);
}
.site-header__mobile a {
  font-weight: var(--fw-bold); font-size: var(--fs-body); color: var(--text-strong);
  text-decoration: none; padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}
.site-header__burger svg {
  transition: transform 0.3s var(--ease-out);
}
.site-header__burger.is-active svg {
  transform: rotate(90deg);
}
@media (max-width: 860px) {
  .site-header__nav { display: none; }
  .site-header__burger { display: flex; }
  .site-header__actions { margin-left: auto; }
  .site-header__actions .vk-btn { display: none; }
}

/* ============================================================
   HERO + LIQUID BLOBS
   ============================================================ */
@keyframes blob-drift-1 {
  0%   { transform: translate(0px,  0px)  scale(1);    }
  40%  { transform: translate(55px, 38px) scale(1.08); }
  100% { transform: translate(18px, 72px) scale(0.93); }
}
@keyframes blob-drift-2 {
  0%   { transform: translate(0px,   0px)  scale(1);    }
  50%  { transform: translate(-46px, 28px) scale(1.07); }
  100% { transform: translate(-20px,-55px) scale(1.13); }
}
@keyframes blob-drift-3 {
  0%   { transform: translate(0px,  0px)  scale(1);    }
  45%  { transform: translate(38px,-28px) scale(1.1);  }
  100% { transform: translate(-28px,18px) scale(0.9);  }
}
@keyframes scroll-hint-bob {
  0%, 100% { transform: translateX(-50%) translateY(0px); opacity: .48; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: .9;  }
}

.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: stretch;
  padding-top: 104px; overflow: hidden;
  background: var(--ink-900);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: right 20%; opacity: 0.78;
}
@media (max-width: 600px) {
  .hero__media img { object-position: 70% top; }
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(28,23,20,.84) 0%, rgba(28,23,20,.54) 50%, rgba(28,23,20,.20) 100%);
}
.hero__blobs {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
}
.hero__blob {
  position: absolute; border-radius: var(--radius-pill);
  filter: blur(80px); will-change: transform;
}
.hero__blob--1 {
  width: 560px; height: 460px; opacity: .32;
  background: radial-gradient(ellipse, var(--red-500) 0%, transparent 70%);
  top: -80px; left: -120px;
  animation: blob-drift-1 19s ease-in-out infinite alternate;
}
.hero__blob--2 {
  width: 500px; height: 420px; opacity: .26;
  background: radial-gradient(ellipse, var(--gold-500) 0%, transparent 70%);
  top: 28%; right: -80px;
  animation: blob-drift-2 23s ease-in-out infinite alternate;
}
.hero__blob--3 {
  width: 420px; height: 380px; opacity: .22;
  background: radial-gradient(ellipse, var(--orange-500) 0%, transparent 70%);
  bottom: -40px; left: 35%;
  animation: blob-drift-3 17s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none; }
}

.hero__inner {
  position: relative; z-index: 2;
  padding-block: clamp(48px, 10vh, 128px);
  flex: 1; display: flex; align-items: center;
}
.hero__copy {
  max-width: 640px;
  display: flex; flex-direction: column; gap: var(--space-4);
}
.hero__eyebrow-rule {
  width: 72px; height: 2px; margin-top: 4px;
  background: linear-gradient(90deg, var(--gold-400), rgba(244,189,31,0));
}
.hero__title {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--white);
}
.hero__title em { font-style: italic; color: var(--gold-300); }
.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.22rem); line-height: 1.72;
  color: rgba(251,247,240,.86); max-width: 480px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-1); }
.hero__proof .rating__score,
.hero__proof .rating__count { color: var(--cream-1); }
.hero__seal {
  position: absolute; bottom: var(--space-9); right: var(--gutter); z-index: 2;
}


.hero__scroll-hint {
  position: absolute; bottom: var(--space-5); left: 50%; z-index: 2;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  color: rgba(251,247,240,.50);
  animation: scroll-hint-bob 2.6s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 22px; height: 22px; }
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-hint { animation: none; }
}
@media (max-width: 600px) {
  .hero__seal { display: none; }
  .hero__title { font-size: 2.1rem; }
  .hero__scroll-hint { display: none; }
}

/* ── Mobile performance — disable GPU-heavy effects ── */
@media (max-width: 860px) {
  .hero__blobs { display: none; }
  .service {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.92);
  }
  .contact-info {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-header__mobile {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,0.99);
  }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  display: flex; flex-direction: column; gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.section-head--center { align-items: center; text-align: center; max-width: 660px; margin-inline: auto; }
.section-head__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: var(--fs-h2); line-height: 1.18;
  letter-spacing: -0.025em; color: var(--text-strong);
}
.section-head__title em { font-style: italic; color: var(--brand); }
.section-head__lead { font-size: var(--fs-lead); color: var(--text-muted); line-height: 1.72; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--cream-1) 0%, var(--gold-50) 40%, var(--cream-2) 60%, var(--cream-1) 100%);
  border-top: 1px solid var(--gold-200);
  border-bottom: 1px solid var(--gold-200);
  padding-block: var(--space-7);
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-warm);
  pointer-events: none;
}
.stats-bar__inner {
  display: flex; justify-content: space-around; align-items: center;
  gap: var(--space-2); flex-wrap: wrap; position: relative;
}
.stats-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 1; min-width: 130px; padding: var(--space-2);
  position: relative;
}
.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--gold-300);
}
.stats-bar__num {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--ink-900); letter-spacing: -0.03em; line-height: 1;
}
.stats-bar__label {
  font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-700);
}
@media (max-width: 560px) {
  .stats-bar__item + .stats-bar__item::before { display: none; }
  .stats-bar__inner { justify-content: center; }
  .stats-bar__item { min-width: 120px; }
}

/* ============================================================
   SERVICES GRID — glassmorphism + tilt
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.service {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(244, 189, 31, 0.18);
  border-radius: var(--radius-lg); padding: var(--space-5);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition:
    transform 0.15s ease-out,
    box-shadow var(--dur-normal) var(--ease-out),
    border-color var(--dur-normal) var(--ease-out);
  will-change: transform;
}
.service::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red-500) 0%, var(--gold-500) 100%);
  opacity: 0; transform: scaleX(0); transform-origin: left;
  transition: opacity var(--dur-normal) var(--ease-out), transform 0.4s var(--ease-out);
}
.service:hover { box-shadow: var(--shadow-float), var(--glow-gold); border-color: rgba(244,189,31,.40); }
.service:hover::before { opacity: 1; transform: scaleX(1); }
.service__icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--red-50); color: var(--brand); flex: none;
  transition: box-shadow var(--dur-normal) var(--ease-out), transform var(--dur-normal) var(--ease-out);
}
.service__icon svg { width: 26px; height: 26px; }
.service--gold .service__icon { background: var(--gold-100); color: var(--gold-700); }
.service:hover .service__icon {
  box-shadow: 0 0 0 6px rgba(200,32,46,0.12), 0 0 24px rgba(200,32,46,0.20);
  transform: scale(1.08);
}
.service--gold:hover .service__icon {
  box-shadow: 0 0 0 6px rgba(244,189,31,0.18), 0 0 24px rgba(244,189,31,0.28);
}
.service__glow {
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(244,189,31,0.20) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.service__title {
  font-family: var(--font-serif); font-weight: 700; font-style: italic;
  font-size: var(--fs-h4); color: var(--text-strong);
  letter-spacing: -0.01em;
}
.service__desc { font-size: var(--fs-body); color: var(--text-muted); line-height: 1.58; flex: 1; }
.service__meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-small); font-weight: var(--fw-bold);
  color: var(--brand); margin-top: auto; padding-top: var(--space-2);
  transition: gap var(--dur-fast);
}
.service:hover .service__meta { gap: 10px; }
.service__meta svg { width: 1em; height: 1em; }
.service--gold .service__meta { color: var(--gold-700); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  justify-content: center; margin-bottom: var(--space-6);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 8px;
  gap: var(--space-4);
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item { margin: 0; }
.gallery-item__frame {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md); height: 100%;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.gallery-item__frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-slow) var(--ease-out);
  filter: saturate(0.9);
}
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,23,20,0.75) 0%, transparent 55%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: var(--space-4); opacity: 0; gap: var(--space-2);
  transition: opacity var(--dur-normal) var(--ease-standard);
}
.gallery-item__caption { font-size: var(--fs-small); color: var(--cream-1); font-weight: 500; margin: 0; }
.gallery-item__frame:hover img { transform: scale(1.06); filter: saturate(1.05); }
.gallery-item__frame:hover .gallery-item__overlay { opacity: 1; }
.gallery-cta {
  text-align: center; margin-top: var(--space-7);
  display: flex; justify-content: center;
}

/* ============================================================
   ABOUT (ink section) — with 1979 watermark
   ============================================================ */
.about-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: var(--space-10);
  align-items: center; position: relative;
}
.about-glow {
  position: absolute; top: -60px; left: -80px;
  width: 520px; height: 400px;
  background: radial-gradient(ellipse, rgba(244,189,31,0.10) 0%, transparent 70%);
  pointer-events: none; border-radius: 50%;
}
.about-watermark {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(8rem, 20vw, 18rem);
  line-height: 1; color: rgba(255,255,255,0.032);
  letter-spacing: -0.05em; pointer-events: none;
  user-select: none; white-space: nowrap; z-index: 0;
}
@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-watermark { font-size: 6rem; right: 0; }
}
.about-copy { position: relative; z-index: 1; }
.about-title {
  font-family: var(--font-serif); font-weight: 800;
  font-size: var(--fs-h1); line-height: 1.12;
  letter-spacing: -0.03em; color: var(--cream-1);
  margin: var(--space-3) 0 var(--space-5);
}
.about-title em { font-style: italic; color: var(--gold-300); }
.about-body {
  font-size: clamp(1rem, 1.6vw, 1.18rem); line-height: 1.75;
  color: var(--ink-200); margin-bottom: var(--space-4);
}
.about-stats {
  display: flex; gap: var(--space-6); flex-wrap: wrap;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin: var(--space-3) 0 var(--space-4);
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat__num {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem); color: var(--gold-400);
  line-height: 1; letter-spacing: -0.03em;
}
.about-stat__label {
  font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.about-proof { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-2); }
.about-branches { display: flex; flex-direction: column; gap: var(--space-2); }
.about-branch {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: var(--fs-small); color: var(--ink-300);
}
.about-branch svg { width: 16px; height: 16px; flex: none; color: var(--gold-400); margin-top: 2px; }
.about-media { position: relative; z-index: 1; }
.about-photo-wrap {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-photo);
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  filter: grayscale(1) contrast(1.05); display: block;
}
.about-name-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,23,20,.90) 0%, transparent 100%);
  padding: var(--space-5) var(--space-4) var(--space-4);
  display: flex; flex-direction: column; gap: 3px;
}
.about-name { font-family: var(--font-serif); font-weight: 700; font-size: 20px; color: var(--white); }
.about-role { font-size: var(--fs-small); color: var(--ink-300); }
.about-seal-wrap { position: absolute; top: var(--space-4); right: var(--space-4); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: var(--space-8);
  align-items: start;
}
@media (max-width: 720px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 720px) { .contact-2col { grid-template-columns: 1fr; } }
.contact-form-wrap { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-form { display: flex; flex-direction: column; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.contact-submit {
  display: flex; flex-direction: column; gap: var(--space-2);
}
.contact-submit .vk-btn--primary {
  padding: 16px 32px; font-size: var(--fs-lead); letter-spacing: .01em;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  box-shadow: var(--shadow-md);
}
.contact-submit .vk-btn--primary:hover {
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  box-shadow: var(--shadow-lg), var(--glow-brand);
  transform: translateY(-2px);
}
.contact-submit-hint {
  font-size: var(--fs-caption); color: var(--text-subtle);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.contact-submit-hint svg { width: 12px; height: 12px; color: var(--gold-600); }
.contact-thanks {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-8); text-align: center;
  background: var(--success-50); border-radius: var(--radius-md); color: var(--success-500);
}
.contact-thanks svg { width: 48px; height: 48px; }
.contact-thanks strong { font-size: var(--fs-h4); color: var(--text-strong); }
.contact-thanks p { color: var(--text-muted); }
.contact-info {
  display: flex; flex-direction: column; gap: var(--space-5);
  background: linear-gradient(148deg, rgba(244,189,31,0.06) 0%, rgba(255,255,255,0.84) 45%, rgba(200,32,46,0.04) 100%);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244,189,31,0.24);
  border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--red-500) 100%);
}
.contact-info__block {
  display: flex; gap: var(--space-3); align-items: flex-start;
  font-size: var(--fs-small); color: var(--text-body); line-height: 1.6;
}
.contact-info__icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: var(--red-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center; flex: none;
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__block:hover .contact-info__icon {
  background: var(--brand); color: var(--white); box-shadow: var(--glow-brand);
}
.contact-info__block strong { display: block; font-weight: 700; color: var(--text-strong); margin-bottom: 3px; }
.contact-info__block a { color: var(--brand); text-decoration: none; font-weight: 600; }
.contact-chip-row { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-2); }
.contact-hours {
  display: flex; align-items: center; gap: var(--space-2);
  background: var(--gold-50); border: 1px solid var(--gold-200);
  border-radius: var(--radius-md); padding: 10px var(--space-4);
}
.contact-hours svg { width: 15px; height: 15px; color: var(--gold-700); flex: none; }
.contact-hours__label { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--gold-800); }
.contact-hours__note { font-size: var(--fs-caption); color: var(--gold-700); margin-left: auto; }

/* map placeholder */
.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  height: 180px; position: relative;
  background: var(--cream-2);
  background-image:
    linear-gradient(rgba(244,189,31,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,189,31,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-color: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
.contact-map__inner {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md); border: 1px solid var(--border);
  text-align: center;
}
.contact-map__inner svg { width: 28px; height: 28px; color: var(--brand); }
.contact-map__label { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--text-strong); }

/* ============================================================
   FOOTER — with watermark
   ============================================================ */
.site-footer {
  background: var(--ink-900); color: var(--ink-200);
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--red-500) 50%, var(--gold-500) 100%);
  z-index: 1;
}
.site-footer__glow {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 360px;
  background: radial-gradient(ellipse, rgba(244,189,31,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.site-footer__watermark {
  position: absolute; bottom: -0.1em; right: var(--gutter);
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(4rem, 10vw, 10rem); line-height: 1;
  color: rgba(255,255,255,0.038); letter-spacing: -0.04em;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: var(--space-8); padding-block: var(--space-9);
  position: relative; z-index: 1;
}
@media (max-width: 900px) { .site-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__inner { grid-template-columns: 1fr; } }
.site-footer__logo { height: 52px; width: auto; object-fit: contain; margin-bottom: var(--space-3); }
.site-footer__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: var(--fs-lead); color: var(--ink-300); margin-bottom: var(--space-3);
}
.site-footer__links { display: flex; flex-direction: column; gap: var(--space-2); }
.site-footer__links strong {
  font-size: var(--fs-small); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream-1); margin-bottom: var(--space-2);
}
.site-footer__links a {
  font-size: var(--fs-small); color: var(--ink-300); text-decoration: none;
  display: inline-block;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.site-footer__links a:hover { color: var(--gold-400); padding-left: 6px; }
.site-footer__address {
  display: flex; flex-direction: column; gap: var(--space-2);
  font-size: var(--fs-small); font-style: normal;
}
.site-footer__address strong {
  font-size: var(--fs-small); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream-1); margin-bottom: var(--space-2); display: block;
}
.site-footer__address p { color: var(--ink-300); line-height: 1.6; }
.site-footer__address a { color: var(--ink-300); text-decoration: none; }
.site-footer__address a:hover { color: var(--gold-400); }
.site-footer__social { display: flex; gap: var(--space-2); margin-top: var(--space-3); }
.site-footer__social .vk-iconbtn { width: 38px; height: 38px; background: var(--ink-700); color: var(--ink-200); }
.site-footer__social .vk-iconbtn:hover { background: var(--gold-500); color: var(--ink-900); }
.site-footer__bottom { border-top: 1px solid var(--ink-700); padding-block: var(--space-4); position: relative; z-index: 1; }
.site-footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--space-3);
  font-size: var(--fs-caption); color: var(--ink-400);
}

/* ============================================================
   FLOATING FAB
   ============================================================ */
.fab {
  position: fixed; bottom: var(--space-6); right: var(--space-5);
  z-index: var(--z-sticky);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.fab a {
  width: 52px; height: 52px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: var(--shadow-lg);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}
.fab a:hover { transform: scale(1.1); }
.fab__call { background: var(--brand); color: #fff; }
.fab__call:hover { box-shadow: var(--shadow-lg), var(--glow-brand); }
.fab__wa { background: #25D366; color: #fff; }
.fab__wa:hover { box-shadow: var(--shadow-lg), 0 0 24px rgba(37,211,102,.40); }
.fab svg { width: 24px; height: 24px; }
