/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  /* ── Бежево-кремовая система — тёплый камень, известняк ── */
  --bg:           #f0e8d8;
  --bg-warm:      #e8ddd0;
  --surface:      #f8f3ea;
  --surface-2:    #f0e9dc;
  --border:       #d8cec0;
  --border-lt:    #e8e0d4;
  --text:         #1e1a14;
  --text-muted:   #6e6254;
  --text-dim:     #9e9284;
  --gold:         #b07840;
  --gold-lt:      #c8904e;
  --gold-dk:      #8a5e2e;
  --gold-glow:    rgba(176,120,64,.14);
  --white:        #fdf9f4;

  --f-head: 'DM Serif Display', 'Noto Serif Georgian', serif;
  --f-body: 'DM Sans', 'Noto Sans Georgian', sans-serif;

  --ease:   cubic-bezier(0.16,1,0.3,1);
  --ease-in: cubic-bezier(0.4,0,1,1);
  --t-fast: 180ms;
  --t-med:  360ms;
  --t-slow: 600ms;

  --max: 1180px;
  --r:   12px;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (hover: hover) and (pointer: fine) { html { scrollbar-gutter: stable; } }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  opacity: 0;
  transition: opacity 0.15s ease;
}
body.lang-ready { opacity: 1; }
body.lang-switching { opacity: 0; transition: opacity 0.1s ease; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--f-body); cursor: pointer; border: none; outline: none; }
input, select, textarea { font-family: var(--f-body); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.section { padding: clamp(3rem, 5vw, 5rem) 0; }
.section--surface { background: var(--surface); }
.section--surface-2 { background: var(--surface-2); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold);
}

h1 {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 900;
  overflow-wrap: break-word;
}
h2 {
  font-family: var(--f-head);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
}
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
.serif { font-family: var(--f-head); }
.gold { color: var(--gold); }
.italic { font-style: italic; }
.muted { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 6px;
  font-size: .9rem; font-weight: 600;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease),
              background var(--t-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: #A84028;
  color: #fff;
  box-shadow: 0 4px 20px rgba(168,64,40,.28);
}
.btn--gold:hover {
  background: #B04828;
  box-shadow: 0 8px 28px rgba(200,90,50,.40);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-lt);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { background: rgba(255,255,255,.05); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1rem; }
.btn--portfolio-cta {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
  box-shadow: none;
  animation: none;
}
.btn--portfolio-cta:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.sh { margin-bottom: 4rem; }
.sh--center { text-align: center; }
.sh h2 { margin-bottom: .75rem; }
.sh p { font-size: 1rem; color: var(--text-muted); max-width: 52ch; line-height: 1.7; margin-top: .75rem; }
.sh--center p { margin-left: auto; margin-right: auto; }
.gold-bar { width: 36px; height: 2px; background: var(--gold); margin-top: 1.25rem; }
.sh--center .gold-bar { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  height: 68px;
  background: rgba(10,9,7,.88);
  backdrop-filter: blur(16px) saturate(120%);
  box-shadow: 0 4px 24px rgba(0,0,0,.45);
  overflow: visible;
}
.header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  overflow: visible;
  max-width: none;
  margin: 0;
  padding-left: clamp(.75rem, 2vw, 1.5rem);
  padding-right: clamp(.75rem, 2vw, 1.5rem);
}
.logo {
  font-family: var(--f-head);
  font-size: 1.05rem; font-weight: 700; letter-spacing: .01em;
  color: var(--white);
  flex-shrink: 0;
  text-decoration: none;
}
.logo em { font-style: normal; color: var(--gold); }

/* ── SVG logo 3D hover ── */
.logo--3d {
  position: relative;
  width: 260px;
  height: 68px;
  flex-shrink: 0;
  overflow: visible;
}
.logo__card {
  position: absolute;
  top: 0;
  left: 0;
}
.logo__svg {
  display: block;
  width: 260px;
  height: auto;
  overflow: visible;
  image-rendering: crisp-edges;
}
.logo__map {
  stroke-opacity: 0.88;
  transition: stroke-opacity 0.2s, stroke-width 0.2s;
}
.logo--3d:hover .logo__map {
  stroke-opacity: 1;
  stroke-width: 3.2;
  filter: url(#logo-glow);
}
.header-nav {
  display: flex; gap: 2rem;
  font-size: .82rem; color: var(--text-muted);
}
.header-nav a { transition: color var(--t-fast); white-space: nowrap; }
.header-nav a:hover { color: var(--text); }
.header-right {
  display: flex; align-items: center; gap: 1rem; flex-shrink: 0;
}
.header-phone {
  font-size: .82rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: .4rem;
  transition: color var(--t-fast);
}
.header-phone:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 68px);
  max-height: none;
  display: flex; align-items: center;
  padding: clamp(3rem, 6vh, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 65% at 72% 45%, rgba(201,151,79,.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(201,151,79,.04) 0%, transparent 50%);
  pointer-events: none;
}
/* Vertical lines decoration */
.hero-lines {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; overflow: hidden;
}
.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,151,79,.12), transparent);
}
.hero-lines::before { left: 33.3%; }
.hero-lines::after { left: 66.6%; }

.hero__inner {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: stretch;
  position: relative; z-index: 1;
}
.hero__left { min-width: 0; }
.hero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,151,79,.1);
  border: 1px solid rgba(201,151,79,.2);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .72rem; font-weight: 600; color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 1.75rem;
}
.hero__tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .line2 { color: var(--gold); font-style: italic; }
/* Georgian has wider characters — scale down to keep same visual height as RU/EN */
:lang(ka) .hero h1 { font-size: clamp(2rem, 3.4vw, 3.4rem); overflow-wrap: normal; }
.hero__desc {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.75;
  max-width: 44ch; margin-bottom: 2.5rem;
}
.hero__desc strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__proof {
  display: flex; gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__proof-item {}
.hero__proof-item strong {
  display: block; font-size: 1.7rem; font-weight: 800;
  color: var(--gold); line-height: 1; margin-bottom: .2rem;
  font-family: var(--f-head);
}
.hero__proof-item span { font-size: .75rem; color: var(--text-dim); }

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex; flex-direction: column;
}
/* ── Hero collage: premium animations ── */
@keyframes hcw-float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-9px); }
}
@keyframes hcw-sweep {
  0%, 68%  { transform: translateX(-160%) skewX(-14deg); opacity: 0; }
  71%      { opacity: 1; }
  93%      { opacity: 0; }
  100%     { transform: translateX(320%)  skewX(-14deg); opacity: 0; }
}

.hero__img-wrap {
  position: relative;
  border-radius: 22px; overflow: hidden;
  flex: 1; min-height: 360px;
  background: #1e1409;
  border: 1px solid transparent;
  box-shadow: 0 0 0 1px rgba(201,150,58,0.25), 0 8px 20px rgba(0,0,0,0.20), 0 30px 60px rgba(0,0,0,0.40);
  animation: hcw-float 8s ease-in-out infinite;
  will-change: transform;
}
/* Diagonal gold sweep */
.hero__img-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 8;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 20%,
    rgba(255,215,130,0.13) 40%,
    rgba(255,240,180,0.09) 50%,
    rgba(255,215,130,0.13) 60%,
    transparent 80%
  );
  transform: translateX(-160%) skewX(-14deg);
  animation: hcw-sweep 9s ease-in-out infinite;
}
/* Warm corner glow + bottom vignette */
.hero__img-wrap::after {
  content: '';
  position: absolute; inset: 0; z-index: 7;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 28% 18%, rgba(201,150,58,0.09) 0%, transparent 100%),
    radial-gradient(ellipse at bottom, rgba(0,0,0,0.30) 0%, transparent 55%);
}

.hero__img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-dim); font-size: .82rem; text-align: center;
  padding: 2rem;
}

/* Hero collage grid */
.hero__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr auto;
  height: 100%;
  gap: 2px;
  border-radius: 22px;
  overflow: hidden;
}
.hero__collage-main {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-size 0.9s cubic-bezier(0.16,1,0.3,1);
}
.hero__collage-sm {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-size 0.9s cubic-bezier(0.16,1,0.3,1);
}
/* Cinematic vignette on each photo */
.hero__collage-main::after,
.hero__collage-sm::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.50) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.5s;
}
.hero__collage-main:hover::after,
.hero__collage-sm:hover::after { opacity: 0.5; }

/* Category tags */
.hcl-tag {
  position: absolute;
  bottom: .6rem; left: .6rem;
  z-index: 2;
  background: rgba(8, 5, 1, 0.88);
  color: rgba(220, 175, 80, 0.95);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .65rem;
  border-radius: 3px;
  border: 1px solid rgba(201,150,58,0.50);
}

/* Bottom signature banner */
.hcl-banner {
  grid-column: 1 / -1;
  background: rgba(8, 5, 1, 0.95);
  color: rgba(201,150,58,0.88);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  text-align: center;
  padding: .7rem 1rem;
  border-top: 1px solid rgba(201,150,58,0.35);
}

/* Decorative card bottom-left */
.hero__card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border-lt);
  border-radius: 10px; padding: 1rem 1.25rem;
  min-width: 160px;
}
.hero__card-label { font-size: .65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .25rem; }
.hero__card-val { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.hero__card-sub { font-size: .7rem; color: var(--text-muted); margin-top: .1rem; }
/* Second card top-right */
.hero__card-2 {
  position: absolute; top: 1.5rem; right: -1.5rem;
  background: var(--gold);
  border-radius: 10px; padding: .85rem 1.1rem;
  min-width: 130px;
}
.hero__card-2-label { font-size: .6rem; font-weight: 700; color: rgba(0,0,0,.6); text-transform: uppercase; letter-spacing: .08em; }
.hero__card-2-val { font-size: 1.3rem; font-weight: 800; color: #0a0907; line-height: 1; margin-top: .15rem; }
.hero__card-2-sub { font-size: .65rem; color: rgba(0,0,0,.6); margin-top: .1rem; }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.statsbar {
  background: var(--gold);
  padding: 1.5rem 0;
  overflow: hidden;
}
.statsbar__inner {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem;
}
.stat { text-align: center; }
.stat__num {
  display: block; font-family: var(--f-head);
  font-size: 2rem; font-weight: 900; color: #1c1510; line-height: 1;
}
.stat__label { font-size: .72rem; font-weight: 700; color: rgba(0,0,0,.55); text-transform: uppercase; letter-spacing: .08em; }

/* ═══════════════════════════════════════════
   PROBLEM → SOLUTION
═══════════════════════════════════════════ */
.ps {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.ps__col { padding: 3rem; background: var(--surface); }
.ps__col--right { background: var(--surface-2); }
.ps__head {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 1.75rem;
}
.ps__head--red { color: #e05555; }
.ps__head--gold { color: var(--gold); }
.ps__item {
  display: flex; gap: .85rem;
  margin-bottom: 1.25rem; align-items: flex-start;
}
.ps__icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0; margin-top: .1rem;
}
.ps__icon--bad { background: rgba(224,85,85,.12); }
.ps__icon--good { background: rgba(201,151,79,.12); }
.ps__text { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.ps__text strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════
   AI CALCULATOR
═══════════════════════════════════════════ */
.calc-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.calc-mode-tabs {
  display: flex;
  justify-content: center;
  padding: 1.5rem 2rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.calc-mode-tabs-inner {
  display: inline-flex;
  background: var(--surface-2, #eee8dc);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  margin-bottom: -1px;
}
.calc-mode-tab {
  padding: .6rem 1.6rem;
  font-size: .85rem; font-weight: 700;
  color: var(--text-muted);
  background: none; border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: color .2s, background .2s, box-shadow .2s;
  font-family: var(--f-body);
  letter-spacing: .03em;
  white-space: nowrap;
}
.calc-mode-tab:hover { color: var(--text); }
.calc-mode-tab.active {
  background: var(--surface, #fff);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.calc-top {
  background: linear-gradient(135deg, var(--surface-2) 0%, #1a1612 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.calc-top__left h2 { margin-bottom: .5rem; }
.calc-top__left p { font-size: .88rem; color: var(--text-muted); }
.calc-top__badge {
  background: rgba(201,151,79,.12);
  border: 1px solid rgba(201,151,79,.25);
  border-radius: 8px; padding: .6rem 1rem;
  font-size: .75rem; font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: .5rem;
}
.calc-body { padding: 2.5rem 3rem; }
.calc-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-bottom: 2.5rem;
}
.calc-step__label {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-dim); margin-bottom: .85rem;
  display: flex; align-items: center; gap: .5rem;
}
.calc-step__num {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #1c1510;
  font-size: .6rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
}
.calc-chips {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.chip {
  padding: .5rem 1rem; border-radius: 6px; cursor: pointer;
  font-size: .8rem; font-weight: 500;
  background: var(--surface-2); color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--t-fast) var(--ease);
  user-select: none;
}
.chip:hover { border-color: var(--gold); color: var(--text); }
.chip.active {
  background: rgba(201,151,79,.15);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}
.calc-slider-wrap { margin-top: .5rem; }
.calc-area-label {
  display: flex; justify-content: space-between;
  font-size: .82rem; color: var(--text-muted); margin-bottom: .6rem;
}
.calc-area-label strong { color: var(--gold); font-size: 1rem; font-family: var(--f-head); }
.calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px;
  background: var(--border-lt);
  border-radius: 2px; outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,151,79,.2);
  cursor: pointer;
  transition: box-shadow var(--t-fast);
}
.calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px rgba(201,151,79,.25);
}
.calc-result {
  background: var(--bg-warm);
  border: 1px solid var(--border-lt);
  border-radius: var(--r); padding: 2rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  transition: all var(--t-med) var(--ease);
}
.calc-result__price { flex: 1; }
.calc-result__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-dim); margin-bottom: .4rem; }
.calc-result__num {
  font-family: var(--f-head); font-size: 2.5rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.calc-result__range { font-size: .8rem; color: var(--text-dim); margin-top: .25rem; }
.calc-result__timeline { flex: 1; border-left: 1px solid var(--border); padding-left: 2rem; }
.calc-result__cta { flex-shrink: 0; }
.calc-note {
  margin-top: 1rem; font-size: .75rem; color: var(--text-dim);
  line-height: 1.5; text-align: center;
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.svc {
  background: var(--surface);
  padding: 2.5rem;
  transition: background var(--t-med) var(--ease);
  position: relative;
}
.svc:hover { background: var(--surface-2); }
.svc--wide { grid-column: span 2; }
.svc--tall { grid-row: span 2; }
.svc__price {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  color: var(--gold); background: rgba(201,151,79,.1);
  border-radius: 5px; padding: .25rem .65rem;
  margin-bottom: 1.25rem;
}
.svc__popular {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--gold); color: #1c1510;
  font-size: .6rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .08em;
}
.svc h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.svc p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.svc__list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.svc__list li { font-size: .82rem; color: #aaa; padding-left: 1.1rem; position: relative; }
.svc__list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.svc__img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--bg-warm);
  border-radius: 8px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: .78rem; border: 1px solid var(--border);
}
.svc__cta {
  margin-top: 1.5rem;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--gold);
  transition: gap var(--t-fast);
}
.svc:hover .svc__cta { gap: .7rem; }

/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 300px 300px 300px;
  grid-auto-rows: 300px;
  gap: 12px;
}
.pf-item {
  border-radius: var(--r); overflow: hidden;
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  position: relative;
  cursor: pointer;
  will-change: transform;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med);
}
.pf-item:hover { transform: scale(1.015); border-color: var(--gold-dk); }
.pf-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,3,2,.95) 0%, rgba(5,3,2,.68) 38%, transparent 72%);
  z-index: 0;
}
.pf-item .placeholder-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem;
  font-size: .75rem; color: var(--text-dim); text-align: center;
  padding: 1rem; z-index: 0;
}
.pf-meta { position: relative; z-index: 1; }
.pf-tag {
  display: inline-block; font-size: .65rem; font-weight: 700;
  color: var(--gold); background: rgba(201,151,79,.15);
  border-radius: 4px; padding: .2rem .5rem; margin-bottom: .4rem;
}
.pf-title { font-size: .9rem; font-weight: 600; color: var(--text); }
.pf-sub { font-size: .72rem; color: var(--text-muted); margin-top: .15rem; }
.pf-desc { font-size: .7rem; color: rgba(212,190,160,.7); margin-top: .45rem; line-height: 1.5; max-width: 30ch; display: none; }
.pf-item:hover .pf-desc { display: block; }
/* Force readable light colors on photo cards regardless of section CSS vars */
.pf-item .pf-title { color: #f4ede2; text-shadow: 0 1px 4px rgba(0,0,0,.55); }
.pf-item .pf-sub { color: rgba(244,237,226,.62); }
.pf-item .pf-desc { color: rgba(244,237,226,.52); }
.pf-1 { grid-column: 1 / 6; }
.pf-2 { grid-column: 6 / 9; }
.pf-3 { grid-column: 9 / 13; }
.pf-4 { grid-column: 1 / 4; }
.pf-5 { grid-column: 4 / 9; }
.pf-6 { grid-column: 9 / 13; }

/* ═══════════════════════════════════════════
   BEFORE/AFTER SLIDER
═══════════════════════════════════════════ */
.ba-section { margin-top: 4rem; }
.ba-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: 1rem; }
.ba-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 16/8;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  border: 1px solid var(--border);
}
.ba-after, .ba-before {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem; font-size: .85rem;
}
.ba-after { background-color: var(--surface-2); background-size: cover; background-position: center; }
.ba-before {
  background-color: #1a1208;
  background-size: cover; background-position: center;
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  left: 50%; transform: translateX(-50%);
  z-index: 10; cursor: ew-resize;
}
.ba-handle::before, .ba-handle::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  top: 50%; margin-top: -22px;
}
.ba-handle::after {
  background: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 20 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7H1M1 7L4 4M1 7L4 10M15 7H19M19 7L16 4M19 7L16 10' stroke='%230a0907' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/20px no-repeat;
}
.ba-badge {
  position: absolute; z-index: 5; top: 1rem;
  background: rgba(10,9,7,.85); border: 1px solid var(--border);
  border-radius: 5px; padding: .35rem .7rem;
  font-size: .72rem; font-weight: 700; backdrop-filter: blur(4px);
}
.ba-badge--before { left: 1rem; color: var(--text-muted); }
.ba-badge--after { right: 1rem; color: var(--gold); }
.ba-nav { display:flex; align-items:center; justify-content:center; gap:1rem; margin-top:1rem; }
.ba-nav-btn { background:var(--surface-2); border:1px solid var(--border); border-radius:50%; width:2.2rem; height:2.2rem; cursor:pointer; font-size:1rem; color:var(--gold); transition:background .2s; }
.ba-nav-btn:hover { background:var(--gold); color:#0a0907; }
.ba-counter { font-size:.75rem; font-weight:700; letter-spacing:.08em; color:var(--text-dim); min-width:3rem; text-align:center; }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process { display: flex; gap: 0; position: relative; }
.process::before {
  content: '';
  position: absolute; top: 32px; left: 32px; right: 32px;
  height: 1px; background: var(--border);
}
.process-step {
  flex: 1; text-align: center; padding: 0 1rem; position: relative; z-index: 1;
}
.process-step__num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--f-head); font-size: .9rem; font-weight: 700; color: var(--gold);
  transition: background var(--t-med), border-color var(--t-med);
}
.process-step:hover .process-step__num {
  background: rgba(201,151,79,.1); border-color: var(--gold);
}
.process-step h3 { font-size: .95rem; margin-bottom: .35rem; }
.process-step p { font-size: .78rem; color: var(--text-muted); line-height: 1.55; }
.process-step__time {
  display: inline-block; margin-top: .6rem;
  font-size: .68rem; font-weight: 700; color: #5c3d1a;
  background: rgba(138,94,46,.13); border: 1px solid rgba(138,94,46,.22);
  border-radius: 100px; padding: .2rem .65rem;
}

/* ═══════════════════════════════════════════
   GUARANTEES
═══════════════════════════════════════════ */
.guarantees {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.guarantee {
  background: var(--surface); padding: 2.5rem;
  display: flex; gap: 1.5rem; align-items: flex-start;
  transition: background var(--t-med);
}
.guarantee:hover { background: var(--surface-2); }
.guarantee__icon {
  width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0;
  background: rgba(201,151,79,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.guarantee__body h3 { margin-bottom: .4rem; }
.guarantee__body p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }
.guarantee__body strong { color: var(--gold); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem;
  display: flex; flex-direction: column;
  transition: border-color var(--t-med), transform var(--t-med) var(--ease);
}
.testimonial:hover { border-color: var(--gold-dk); transform: translateY(-3px); }
.testimonial__stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; margin-bottom: 1.25rem; }
.testimonial__text {
  font-size: .88rem; color: var(--text-muted); line-height: 1.75;
  font-style: italic; flex: 1; margin-bottom: 1.5rem;
}
.testimonial__author { display: flex; align-items: center; gap: .85rem; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 1rem; font-weight: 700;
  color: var(--gold); flex-shrink: 0;
}
.testimonial__name { font-size: .88rem; font-weight: 600; }
.testimonial__meta { font-size: .72rem; color: var(--text-dim); margin-top: .1rem; }

/* ═══════════════════════════════════════════
   TEAM
═══════════════════════════════════════════ */
.team { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color var(--t-med);
}
.team-card:hover { border-color: var(--gold-dk); }
.team-card__photo {
  aspect-ratio: 4/3; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: var(--text-dim); text-align: center; padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.team-card__body { padding: 1.5rem; }
.team-card__name { font-size: 1rem; font-weight: 700; margin-bottom: .15rem; }
.team-card__role { font-size: .72rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; margin-bottom: .65rem; }
.team-card__bio { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 2px; max-width: 800px; }
.faq-item { background: var(--surface); border-radius: 8px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  font-size: .95rem; font-weight: 600; color: var(--text);
  background: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border-lt); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; color: var(--gold); transition: transform var(--t-med) var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-med) var(--ease), padding var(--t-med);
  font-size: .87rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-left p { font-size: .95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-promises { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.contact-promises li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .88rem; color: var(--text-muted);
}
.contact-promises li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.contact-channels { margin-top: 2rem; display: flex; flex-direction: column; gap: .6rem; }
.phone-card {
  display: flex; align-items: stretch;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: border-color var(--t-fast);
}
.phone-card:hover { border-color: var(--gold); }
.phone-card__call {
  flex: 1; padding: .75rem 1.1rem;
  display: flex; align-items: center; gap: .55rem;
  font-size: .9rem; font-weight: 600; color: var(--text); text-decoration: none;
  transition: color var(--t-fast);
}
.phone-card__call:hover { color: var(--gold); }
.phone-card__call svg { opacity: .5; flex-shrink: 0; }
.phone-card__wa {
  padding: .75rem 1rem; border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: #25D366; flex-shrink: 0;
  transition: background var(--t-fast);
}
.phone-card__wa:hover { background: rgba(37,211,102,.13); }

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 2.25rem;
}
.form-card h3 { margin-bottom: .3rem; }
.form-card__sub { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-row { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--text-dim); margin-bottom: .4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: 7px; padding: .85rem 1rem;
  font-size: .9rem; color: var(--text);
  outline: none; transition: border-color var(--t-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 90px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-submit {
  width: 100%; padding: 1rem; border-radius: 7px;
  background: var(--gold); color: #1c1510;
  font-size: .92rem; font-weight: 700;
  cursor: pointer; border: none;
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast) var(--ease);
  box-shadow: 0 4px 20px rgba(201,151,79,.25);
}
.form-submit:hover {
  background: var(--gold-lt);
  box-shadow: 0 8px 32px rgba(201,151,79,.4);
  transform: translateY(-1px);
}
.form-note { margin-top: .85rem; font-size: .72rem; color: var(--text-dim); text-align: center; line-height: 1.5; }

/* ═══════════════════════════════════════════
   PARTNERS
═══════════════════════════════════════════ */
.partners {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(2rem, 5vw, 5rem); flex-wrap: wrap;
  opacity: .45; filter: grayscale(1);
}
.partner { font-size: 1.05rem; font-weight: 800; letter-spacing: .08em; color: var(--text); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #120d08; border-top: 1px solid #3a3020;
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin: .75rem 0 1.25rem; max-width: 28ch; }
.footer__socials { display: flex; gap: .65rem; flex-wrap: wrap; perspective: 500px; }
.footer__social {
  width: 36px; height: 36px; border-radius: 7px;
  border: 1px solid var(--border); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: var(--text-muted);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  transition: border-color .2s, color .2s, transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  will-change: transform;
}
/* Brand colors */
.footer__social[aria-label="WhatsApp"]  { color: #25D366; border-color: rgba(37,211,102,.25); }
.footer__social[aria-label="Instagram"] { color: #E1306C; border-color: rgba(225,48,108,.25); }
.footer__social[aria-label="Facebook"]  { color: #1877F2; border-color: rgba(24,119,242,.25); }
.footer__social[aria-label="TikTok"]    { color: #fff;    border-color: rgba(255,255,255,.18); }

.footer__social:hover {
  transform: translateY(-9px) rotateX(-18deg) scale(1.15);
  box-shadow: 0 16px 28px rgba(0,0,0,.45), 0 6px 10px rgba(0,0,0,.3);
}
.footer__social[aria-label="WhatsApp"]:hover  { border-color: #25D366; box-shadow: 0 16px 28px rgba(0,0,0,.45), 0 0 0 1px #25D366; }
.footer__social[aria-label="Instagram"]:hover { border-color: #E1306C; box-shadow: 0 16px 28px rgba(0,0,0,.45), 0 0 0 1px #E1306C; }
.footer__social[aria-label="Facebook"]:hover  { border-color: #1877F2; box-shadow: 0 16px 28px rgba(0,0,0,.45), 0 0 0 1px #1877F2; }
.footer__social[aria-label="TikTok"]:hover    { border-color: #fff;    box-shadow: 0 16px 28px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.6); }
.footer__map-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__map-link:hover { color: var(--gold); text-decoration: underline; }
.footer__col h4 {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-dim); margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer__col ul li a { font-size: .83rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer__col ul li a:hover { color: var(--text); }
.footer__col address { font-style: normal; font-size: .83rem; color: var(--text-muted); line-height: 1.75; }
.footer__col address a { color: var(--text-muted); transition: color var(--t-fast); }
.footer__col address a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: var(--text-dim); flex-wrap: wrap; gap: .75rem;
}

/* ═══════════════════════════════════════════
   FLOAT BUTTONS
═══════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 6rem; right: 2rem; z-index: 99;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 8px 36px rgba(37,211,102,.55); }

/* ═══════════════════════════════════════════
   BURGER MENU
═══════════════════════════════════════════ */
.burger {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; border-radius: 8px;
  transition: background var(--t-fast);
  flex-shrink: 0;
}
.burger:hover { background: rgba(255,255,255,.06); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: #f4ede2; border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(12,10,7,.97);
  backdrop-filter: blur(24px) saturate(120%);
  border-bottom: 1px solid rgba(201,151,79,.15);
  z-index: 99;
  padding: 1rem 1.25rem 1.5rem;
  flex-direction: column; gap: .15rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  animation: mobNavIn 200ms ease;
}
@keyframes mobNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mob-nav.open { display: flex; }
@media (min-width: 1381px) { .mob-nav { display: none !important; } }
.mob-nav a:not(.mob-nav__phone):not(.mob-nav__cta) {
  padding: .75rem 1rem; border-radius: 8px;
  font-size: .95rem; font-weight: 500;
  color: #c8b89e;
  transition: background var(--t-fast), color var(--t-fast);
}
.mob-nav a:not(.mob-nav__phone):not(.mob-nav__cta):hover { background: rgba(255,255,255,.06); color: #f4ede2; }
.mob-nav__divider { height: 1px; background: rgba(255,255,255,.08); margin: .5rem 0; }
.mob-nav__phone {
  color: #f4ede2; font-weight: 600;
  display: flex; align-items: center; gap: .5rem;
}
.mob-nav__cta {
  background: var(--gold); color: #1c1510;
  font-weight: 700; text-align: center;
  justify-content: center; margin-top: .35rem;
  border-radius: 8px;
}
.mob-nav__cta:hover { background: var(--gold-lt); }

/* ═══════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════ */
@media (max-width: 1440px) {
  .header-phone { display: none; }
}
@media (max-width: 1500px) {
  .header-nav { gap: 1.1rem; font-size: .78rem; }
}
@media (max-width: 1380px) {
  .burger { display: flex; }
  .header-nav { display: none; }
  .header-right .btn--gold { display: none; }
}
@media (max-width: 900px) {
  .header-phone { display: none; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__proof { gap: 1.5rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .services-bento { grid-template-columns: 1fr; }
  .svc--wide { grid-column: span 1; }
  .guarantees { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2,1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .calc-steps { grid-template-columns: 1fr; }
  .portfolio-grid { display: flex; flex-direction: column; }
  .pf-item { min-height: 260px; }
  .pf-desc { display: block; }
  .process { flex-direction: column; gap: 2rem; }
  .process::before { display: none; }
  .ps { grid-template-columns: 1fr; }

  .calc-result { flex-direction: column; gap: 1.25rem; }
  .calc-result__timeline { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.25rem; }

  .statsbar__inner { gap: .5rem 2rem; justify-content: center; }
  .stat__num { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .team { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { text-align: center; }
  .footer__brand p { max-width: 100%; }
  .footer__socials { justify-content: center; }
  .header { height: auto; }
  .header__inner { justify-content: space-between; padding-top: .3rem; padding-bottom: .3rem; gap: .5rem; }
  .header-right { flex-direction: column; align-items: center; gap: .15rem; justify-content: center; padding-top: .55rem; }
  .burger { order: 2; }
  .lang-switch { order: 1; gap: 2px; }
  .lang-btn { padding: .22rem .42rem; font-size: .63rem; }
  .logo--3d { width: 180px; height: 54px; }
  .logo__card { left: 0; }
  .logo__svg { width: 180px; }
  .logo__svg text { transform: translateX(40px); }

  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__proof { gap: 1rem; }
  .hero__proof-item strong { font-size: 1.4rem; }

  .calc-body { padding: 1.5rem; }
  .calc-result__num { font-size: 2rem; }

  .float-wa { bottom: 5rem; right: 1.25rem; width: 46px; height: 46px; }

  .section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
  .sh { margin-bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   60-30-10 СИСТЕМА
   60% — тёплый крем/известняк (#f5f0e8 / #ede8de)
   30% — тёплый эспрессо (#1c1510)
   10% — янтарное золото (#c9974f)
   Дерево (#c8b496) — единственный акцентный цвет не из системы
═══════════════════════════════════════════════════════════════ */

/* Тёмные секции — 30% */
.hero, #portfolio, #reviews, #form {
  --surface:    #2a2018;
  --surface-2:  #362a1e;
  --border:     #4a3c2c;
  --border-lt:  #5a4c3c;
  --bg-warm:    #201508;
  --text:       #f4ede2;
  --text-muted: #8a7e6e;
  --text-dim:   #5a5048;
  --gold:       #c9974f;
  --gold-lt:    #e8b56a;
  --gold-dk:    #9a7038;
  --gold-glow:  rgba(201,151,79,.18);
  color: #f4ede2;
  background-color: #1c1510;
}
.footer {
  --text:       #f4ede2;
  --text-muted: #8a7e6e;
  --text-dim:   #5a5048;
  --border:     #3a3020;
  color: #f4ede2;
}
.header {
  --text:       #f4ede2;
  --text-muted: #a09080;
  color: #f4ede2;
}
/* Секция Process — тёплое мутированное дерево */
#process {
  --text:       #1c1510;
  --text-muted: #5a4e3e;
  --text-dim:   #8a7e6e;
  --border:     #b8a48a;
  --border-lt:  #ccc0aa;
  --surface:    #d4c0a0;
  --surface-2:  #c8b496;
  color: #1c1510;
  background-color: #c8b496;
}
/* Фикс калькулятора */
#calculator .calc-top {
  background: linear-gradient(135deg, #ccc8be 0%, #bcb8ae 100%);
}

/* ═══════════════════════════════════════════════════════════════
   MATERIAL BACKGROUNDS — 4 текстуры на весь сайт
   feSpecularLighting + feDistantLight = физический рельеф.
   Свет ловит бугры поверхности — как циферблат Grand Seiko.
   Все светлые секции: одна текстура. Все тёмные: одна.
   Дерево: одна. Латунь: одна. Единый язык.
═══════════════════════════════════════════════════════════════ */

/* ─── isolation helper ─── */
.hero, #why, #calculator, #services, #portfolio,
#process, #guarantees, #reviews, #team, #faq, #form,
.statsbar { position: relative; isolation: isolate; }

/* ─── Shared pseudo-element base ─── */
.hero::before, #why::before, #calculator::before,
#services::before, #portfolio::before, #process::before,
#guarantees::before, #reviews::before, #team::before,
#faq::before, #form::before, .statsbar::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
/* Content above texture */
.hero > *, #why > *, #calculator > *, #services > *,
#portfolio > *, #process > *, #guarantees > *, #reviews > *,
#team > *, #faq > *, #form > *, .statsbar > * {
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════
   ТЕКСТУРА 1 — Snowflake / fine limestone
   Одна текстура на все светлые секции.
   fractalNoise, мягкие волны, свет 215°/52°.
   Screen blend: черные пиксели прозрачны,
   белые — добавляют блик на любой фон.
══════════════════════════════════════════ */
#why::before, #calculator::before, #services::before,
#guarantees::before, #team::before, #faq::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.32 .26' numOctaves='6' seed='2' stitchTiles='stitch' result='noise'/%3E%3CfeSpecularLighting in='noise' surfaceScale='5' specularConstant='.85' specularExponent='26' lighting-color='white' result='spec'%3E%3CfeDistantLight azimuth='215' elevation='52'/%3E%3C/feSpecularLighting%3E%3C/filter%3E%3Crect width='900' height='900' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 900px 900px;
  mix-blend-mode: screen;
  opacity: .42;
}

/* Цвета светлых секций — минимальная вариация */
#why, #services, #guarantees, #faq { background-color: #f5f0e8; }
#calculator, #team                 { background-color: #ede8de; }

/* ══════════════════════════════════════════
   ТЕКСТУРА 2 — Dark stone / basalt
   Одна текстура на все тёмные секции.
   Золотой specular = минеральные блики в камне.
══════════════════════════════════════════ */
.hero::before, #portfolio::before,
#reviews::before, #form::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='4' seed='3' stitchTiles='stitch' result='noise'/%3E%3CfeSpecularLighting in='noise' surfaceScale='3' specularConstant='.50' specularExponent='28' lighting-color='%23e8c87a' result='spec'%3E%3CfeDistantLight azimuth='215' elevation='55'/%3E%3C/feSpecularLighting%3E%3C/filter%3E%3Crect width='800' height='800' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 800px 800px;
  mix-blend-mode: screen;
  opacity: .28;
}

/* ══════════════════════════════════════════
   ТЕКСТУРА 3 — Wood grain / White Birch
   turbulence: очень разные X/Y freq = вертикальные
   волокна. azimuth 180° — свет сбоку, выявляет зерно.
══════════════════════════════════════════ */
#process::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='.018 .50' numOctaves='5' seed='4' stitchTiles='stitch' result='noise'/%3E%3CfeSpecularLighting in='noise' surfaceScale='5' specularConstant='.80' specularExponent='20' lighting-color='white' result='spec'%3E%3CfeDistantLight azimuth='180' elevation='50'/%3E%3C/feSpecularLighting%3E%3C/filter%3E%3Crect width='900' height='900' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 900px 900px;
  mix-blend-mode: overlay;
  opacity: .35;
}

/* ══════════════════════════════════════════
   ТЕКСТУРА 4 — Brushed brass (stats bar)
   Горизонтальный turbulence: низкий X, высокий Y =
   штрихи шлифовки металла. exponent 42 = зеркало.
══════════════════════════════════════════ */
.statsbar {
  background-color: var(--gold);
  overflow: hidden;
}
.statsbar::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.025 .85' numOctaves='4' seed='6' stitchTiles='stitch' result='noise'/%3E%3CfeSpecularLighting in='noise' surfaceScale='4' specularConstant='1.2' specularExponent='42' lighting-color='white' result='spec'%3E%3CfeDistantLight azimuth='180' elevation='55'/%3E%3C/feSpecularLighting%3E%3C/filter%3E%3Crect width='600' height='100' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 600px 100px;
  mix-blend-mode: screen;
  opacity: .50;
}
.stat__num   { color: #1a1208; }
.stat__label { color: rgba(26,18,8,.55); }

/* ─── Тени — тёплые, многоуровневые ─── */
.calc-wrap {
  box-shadow:
    0 1px 3px rgba(100,65,20,.06),
    0 4px 16px rgba(100,65,20,.09),
    0 16px 48px rgba(100,65,20,.06);
}
.ps {
  box-shadow: 0 2px 8px rgba(100,65,20,.06), 0 8px 32px rgba(100,65,20,.07);
}
.guarantee {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.guarantee:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 8px 28px rgba(100,65,20,.11);
}
.testimonial {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 2px 8px rgba(100,65,20,.05),
    0 8px 24px rgba(100,65,20,.07);
  transition: border-color var(--t-med), transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.testimonial:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 4px 16px rgba(100,65,20,.09),
    0 16px 48px rgba(100,65,20,.09);
}
.team-card {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 2px 8px rgba(100,65,20,.05),
    0 8px 28px rgba(100,65,20,.07);
  transition: border-color var(--t-med), box-shadow var(--t-med) var(--ease);
}
.team-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    0 8px 24px rgba(100,65,20,.11),
    0 24px 60px rgba(100,65,20,.08);
}
.faq-item {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 1px 3px rgba(100,65,20,.05);
}
.form-card {
  box-shadow:
    0 2px 12px rgba(0,0,0,.22),
    0 12px 48px rgba(0,0,0,.26),
    0 32px 80px rgba(0,0,0,.18);
}
.hero__card {
  box-shadow: 0 2px 8px rgba(0,0,0,.28), 0 8px 32px rgba(0,0,0,.32), 0 24px 64px rgba(0,0,0,.22);
}
.hero__card-2 {
  box-shadow: 0 2px 8px rgba(0,0,0,.22), 0 8px 32px rgba(201,151,79,.28);
}
.pf-item {
  box-shadow: 0 2px 8px rgba(0,0,0,.22), 0 8px 32px rgba(0,0,0,.26);
}
.svc {
  transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

/* ─── Language switcher ─── */
.lang-switch {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 6px; padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: none; border: none;
  padding: 4px 9px; border-radius: 4px;
  font-size: .68rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer;
  letter-spacing: .05em; font-family: var(--f-body);
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-btn.active { background: var(--gold); color: #1a1208; }
.lang-btn:hover:not(.active) { color: var(--text); }

/* ─── Глобальный grain ─── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}
/* ── Language switcher ── */
.lang-switch { display:flex;gap:2px;background:rgba(255,255,255,.08);border-radius:6px;padding:3px;flex-shrink:0; }
.lang-btn { background:none;border:none;padding:4px 9px;border-radius:4px;font-size:.68rem;font-weight:700;color:var(--text-muted);cursor:pointer;letter-spacing:.05em;font-family:var(--f-body);transition:background var(--t-fast),color var(--t-fast); }
.lang-btn.active { background:var(--gold);color:#1a1208; }
.lang-btn:hover:not(.active) { color:var(--text); }

/* ── Page hero (subpages) ── */
.page-hero { background-color:#1c1510;padding:0;position:relative;isolation:isolate; }
.page-hero::before { content:'';position:absolute;inset:0;z-index:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='800'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='4' seed='3' stitchTiles='stitch' result='noise'/%3E%3CfeSpecularLighting in='noise' surfaceScale='3' specularConstant='.50' specularExponent='28' lighting-color='%23e8c87a' result='spec'%3E%3CfeDistantLight azimuth='215' elevation='55'/%3E%3C/feSpecularLighting%3E%3C/filter%3E%3Crect width='800' height='800' filter='url(%23n)'/%3E%3C/svg%3E");background-size:800px 800px;mix-blend-mode:screen;opacity:.28; }
.page-hero > * { position:relative;z-index:1; }
.page-hero .wrap { color:#f4ede2; display:flex; align-items:center; justify-content:space-between; gap:3rem; padding-top:2.5rem; padding-bottom:2.5rem; }
.page-hero__left { flex:1; min-width:0; }
.page-hero__right { flex-shrink:0; text-align:right; }
.page-hero h1 { color:#f4ede2;font-size:clamp(1.5rem,2.8vw,2.8rem);margin-bottom:.75rem;white-space:nowrap; }
@media(max-width:680px){.page-hero h1{white-space:normal;font-size:1.6rem;}}
.page-hero p { color:#8a7e6e;font-size:1.05rem;max-width:46ch; }
.ph-deco { display:flex; flex-direction:column; align-items:flex-end; gap:.25rem; }
.ph-deco__num { font-family:var(--f-head); font-size:clamp(4rem,8vw,7rem); line-height:1; color:transparent; -webkit-text-stroke:1.5px var(--gold); opacity:.55; }
.ph-deco__label { font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:#5a5048; }

/* ── Page hero trust strip ── */
.ph-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 1.5rem clamp(1.25rem,4vw,2.5rem);
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1;
}
.ph-stat { display: flex; flex-direction: column; gap: .2rem; }
.ph-stat strong { font-size: 1.25rem; font-weight: 700; color: var(--gold); font-family: var(--f-head); line-height: 1; }
.ph-stat span { font-size: .72rem; color: #5a5048; text-transform: uppercase; letter-spacing: .06em; }

/* ── Breadcrumb ── */
.breadcrumb { font-size:.75rem;color:#5a5048;margin-bottom:1.5rem;display:flex;gap:.5rem;align-items:center; }
.breadcrumb a { color:#5a5048;transition:color .18s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:var(--gold); }
.breadcrumb::before { content:''; }

/* ── Blog cards ── */
.blog-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem; }
.blog-card { position:relative;background:var(--surface);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;transition:border-color var(--t-med),transform var(--t-med) var(--ease);box-shadow:inset 0 1px 0 rgba(255,255,255,.7),0 2px 8px rgba(100,65,20,.05),0 8px 24px rgba(100,65,20,.07);cursor:pointer; }
.blog-card:hover { border-color:var(--gold-dk);transform:translateY(-3px); }
.blog-card__img { aspect-ratio:16/9;background:var(--surface-2) center/cover no-repeat;border-bottom:1px solid var(--border); }
.blog-card > a { position:relative;z-index:1;display:block; }
.blog-card__img--placeholder { display:flex;align-items:center;justify-content:center;color:var(--text-dim);font-size:.78rem; }
.blog-card__body { padding:1.5rem; }
.blog-card__tag { display:inline-block;font-size:.65rem;font-weight:700;color:var(--gold);background:rgba(201,151,79,.1);border-radius:4px;padding:.2rem .5rem;margin-bottom:.75rem; }
.blog-card__title { font-family:var(--f-head);font-size:1.1rem;font-weight:700;margin-bottom:.5rem;line-height:1.3; }
.blog-card__excerpt { font-size:.83rem;color:var(--text-muted);line-height:1.65;margin-bottom:1rem; }
.blog-card__meta { font-size:.72rem;color:var(--text-dim);display:flex;justify-content:space-between;align-items:center; }
.blog-card__meta a { color:var(--gold);font-weight:600; }
.blog-card__meta a::after { content:'';position:absolute;inset:0; }

/* ── Services grid (subpage) ── */
.services-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem; }
.service-card { background:var(--surface);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;box-shadow:inset 0 1px 0 rgba(255,255,255,.7),0 2px 8px rgba(100,65,20,.06),0 8px 32px rgba(100,65,20,.07); }
.service-card__img { aspect-ratio:4/3;overflow:hidden;border-bottom:1px solid var(--border);position:relative; }
.service-card__img img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s var(--ease); }
.service-card:hover .service-card__img img { transform:scale(1.04); }
.service-card__body { padding:2rem; }
.service-card__price { display:inline-block;font-size:.72rem;font-weight:700;color:var(--gold);background:rgba(201,151,79,.1);border-radius:5px;padding:.25rem .65rem;margin-bottom:1rem; }
.service-card__article { font-size:.83rem;line-height:1.65;color:var(--text-muted);margin-top:.75rem;padding-top:.75rem;border-top:1px solid var(--border); }
.service-card__list { list-style:none;display:flex;flex-direction:column;gap:.4rem;margin-top:1rem; }
.service-card__list li { font-size:.83rem;color:var(--text-muted);padding-left:1.1rem;position:relative; }
.service-card__list li::before { content:'→';position:absolute;left:0;color:var(--gold); }

/* ── Portfolio filters ── */
.pf-filters { display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:2.5rem; }
.pf-filter { padding:.5rem 1.25rem;border-radius:100px;font-size:.8rem;font-weight:600;cursor:pointer;border:1px solid var(--border);color:var(--text-muted);background:none;transition:all var(--t-fast);font-family:var(--f-body); }
.pf-filter.active,.pf-filter:hover { background:var(--gold);border-color:var(--gold);color:#1a1208; }

/* ── Contact page ── */
.contact-page-grid { display:grid;grid-template-columns:1fr 1.4fr;gap:clamp(2rem,5vw,5rem);align-items:start; }
.contact-info { display:flex;flex-direction:column;gap:1.5rem; }
.contact-info-item { display:flex;gap:1rem;align-items:flex-start; }
.contact-info-icon { width:44px;height:44px;border-radius:10px;background:rgba(201,151,79,.1);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0; }
.contact-info-label { font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--text-dim);margin-bottom:.2rem; }
.contact-info-val { font-size:.95rem;color:var(--text); }
.contact-info-val a { color:var(--text);transition:color var(--t-fast); }
.contact-info-val a:hover { color:var(--gold); }

/* ── AI Tools section ── */
.tools-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem; }

.tool-card {
  display: flex; flex-direction: column; gap: 0;
  background: #1c1710;
  border: 1px solid rgba(176,120,64,.18);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  text-decoration: none; color: #f4ede2;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  position: relative; overflow: hidden;
}
/* Тонкая золотая линия сверху */
.tool-card::before {
  content: ''; position: absolute;
  top: 0; left: 1.75rem; right: 1.75rem; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,151,79,.65), transparent);
}
/* Угловой свет */
.tool-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 15% -5%, rgba(176,120,64,.08) 0%, transparent 70%);
}
.tool-card:hover {
  border-color: rgba(176,120,64,.45);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(176,120,64,.25),
    0 20px 60px rgba(0,0,0,.40),
    0 8px 24px rgba(176,120,64,.18);
}

.tool-card__icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(176,120,64,.10);
  border: 1px solid rgba(176,120,64,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  margin-bottom: 1.6rem;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.tool-card__icon svg { width: 22px; height: 22px; }
.tool-card:hover .tool-card__icon {
  background: rgba(176,120,64,.20);
  border-color: rgba(176,120,64,.40);
}

.tool-card__body { flex: 1; }
.tool-card__name {
  font-family: var(--f-head); font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.01em; line-height: 1.25;
  color: #f4ede2; margin-bottom: .65rem;
}
.tool-card__desc {
  font-size: .83rem; line-height: 1.7;
  color: rgba(244,237,226,.52);
  margin-bottom: 1.75rem;
}

.tool-card__arrow {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(176,120,64,.10);
  border: 1px solid rgba(176,120,64,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold);
  align-self: flex-start;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.tool-card:hover .tool-card__arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #1c1710;
  transform: translateX(5px);
}

@media(max-width:900px){ .tools-grid { grid-template-columns:1fr; } }
@media(max-width:600px){ .tools-grid { gap:.75rem; } }

/* ── Privacy ── */
.privacy-content { max-width:760px; }
.privacy-content h2 { font-size:1.3rem;margin:2.5rem 0 .75rem; }
.privacy-content p { color:var(--text-muted);line-height:1.8;margin-bottom:1rem; }
.privacy-content ul { list-style:disc;padding-left:1.5rem;color:var(--text-muted);line-height:1.8; }

@media (max-width:900px) {
  .blog-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .contact-page-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  .pf-filters { justify-content:center; }
}

/* ═══════════════════════════════════════════
   GEORGIAN LANGUAGE TYPOGRAPHY FALLBACKS
   Активируется через :lang(ka) когда setLang('ka')
   устанавливает lang="ka" на <html>
═══════════════════════════════════════════ */
:lang(ka) h1,
:lang(ka) h2,
:lang(ka) h3,
:lang(ka) .logo,
:lang(ka) .eyebrow,
:lang(ka) [class*="__title"],
:lang(ka) [class*="__name"] {
  font-family: 'Noto Serif Georgian', Georgia, serif;
}
:lang(ka) body,
:lang(ka) p,
:lang(ka) li,
:lang(ka) span,
:lang(ka) a,
:lang(ka) button,
:lang(ka) input,
:lang(ka) select,
:lang(ka) textarea {
  font-family: 'Noto Sans Georgian', system-ui, sans-serif;
}

/* ── Portfolio lightbox ── */
.pf-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.pf-lb.active { display: flex; }
.pf-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.93);
  cursor: pointer;
}
.pf-lb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1400px);
  max-height: 92vh;
}
.pf-lb-inner img {
  max-width: 100%;
  max-height: calc(92vh - 3rem);
  object-fit: contain;
  border-radius: 3px;
  display: block;
  user-select: none;
}
.pf-lb-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 2;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pf-lb-close:hover { background: rgba(255,255,255,.25); }
.pf-lb-prev, .pf-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: .5rem .8rem;
  border-radius: 6px;
  transition: background .2s;
}
.pf-lb-prev { left: .75rem; }
.pf-lb-next { right: .75rem; }
.pf-lb-prev:hover, .pf-lb-next:hover { background: rgba(255,255,255,.22); }
.pf-lb-counter {
  margin-top: .65rem;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .12em;
  font-family: 'DM Sans', sans-serif;
}
.pf-item[data-project] { cursor: pointer; }
.pf-count {
  margin-top: .6rem;
  font-size: .58rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(212,190,160,.4);
  border: 1px solid rgba(212,190,160,.22);
  display: inline-block;
  padding: .15rem .45rem;
  border-radius: 2px;
  transition: color .25s, border-color .25s;
}
.pf-item:hover .pf-count {
  color: rgba(212,190,160,.85);
  border-color: rgba(212,190,160,.55);
}
@media (max-width: 600px) {
  .pf-lb-prev { left: .25rem; }
  .pf-lb-next { right: .25rem; }
}
