/* ════════════════════════════════════════════════════════════
   kovalov.tattoo — main page styles
   ════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  transition: background 0.5s, border-color 0.5s, padding 0.4s;
}
#nav.scrolled {
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid var(--border);
  padding: 16px 56px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-logo svg { display: block; height: 26px; width: 72.8px; }
.nav-logo svg path,
.nav-logo svg rect { transition: fill 0.3s cubic-bezier(0.16,1,0.3,1), stroke 0.3s cubic-bezier(0.16,1,0.3,1); }
.nav-logo:hover { color: var(--accent); }
.nav-clock { font-size: 11px; letter-spacing: 0.1em; color: var(--text-2); font-weight: 300; }

.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-2);
  font-weight: 400;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 150px;
  justify-content: flex-end;
}
.nav-cta { padding: 11px 22px 9px; font-size: 11px; letter-spacing: 0.14em; }

/* ── BURGER + MOBILE MENU ────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 320;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
}
.nav-burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 90px 28px 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16,1,0.3,1), visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu-links a {
  font-size: 30px;
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-links a:active { color: var(--accent); }
.mobile-menu-cta { padding: 15px 32px 13px; font-size: 12px; }
.mobile-menu-social { display: flex; gap: 14px; margin-top: 4px; }
.mobile-menu-lang {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 4px;
}
.mobile-lang-btn {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  padding: 7px 12px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.mobile-lang-btn.active { color: var(--text); border-color: var(--border-2); }
.mobile-lang-btn:hover { color: var(--text); border-color: var(--border-2); }
body.menu-locked { overflow: hidden; }

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── HERO ────────────────────────────────────── */
#hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 136px 56px 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
}
.hero-bg img {
  height: 100%;
  width: clamp(520px, 62vw, 1060px);
  object-fit: cover;
  object-position: 30% center;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(11,10,8,0.97) 0%, rgba(11,10,8,0.82) 35%, rgba(11,10,8,0.25) 65%, rgba(11,10,8,0.08) 100%),
    linear-gradient(to bottom, rgba(11,10,8,0.6)  0%, transparent 30%, transparent 70%, rgba(11,10,8,0.5) 100%);
}

.hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 400;
  margin-bottom: 22px;
}
.hero-h1 {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero-copy {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-meta {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text-2);
  font-weight: 300;
  opacity: 0.85;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.hero-actions-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-2);
  margin: 4px 0;
}
.hero-social { display: flex; gap: 10px; }

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  55%       { transform: translateY(6px); opacity: 1; }
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.6; }
}
.hero-scroll svg { animation: scrollArrow 2.6s ease-in-out infinite; }
.hero-scroll::after { animation: scrollLine 2.6s ease-in-out infinite; }
.hero-scroll {
  position: absolute;
  bottom: 64px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 400;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--border-2), transparent);
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-solid { padding: 16px 36px 14px; background: var(--text); color: var(--bg); }
.btn svg { position: relative; top: -2px; }
.btn-solid:hover { background: var(--accent); }
.btn-ghost {
  padding: 15px 28px 13px;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--text-2); color: var(--text); }

.icon-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.icon-btn svg { width: 18px; height: 18px; display: block; }
.icon-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(184, 168, 138, 0.06);
}


/* ── SECTIONS ────────────────────────────────── */
section { position: relative; }

.section-inner { padding: 120px 56px; border-top: 1px solid var(--border); }

.label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 400;
  margin-bottom: 20px;
}
.section-h2 {
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 200;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

/* ── ABOUT ───────────────────────────────────── */
#about .section-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}
.about-left { position: sticky; top: 120px; }
.about-right { display: flex; flex-direction: column; gap: 56px; }
.about-block-head {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.about-block p { font-size: 17px; line-height: 1.8; color: var(--text-2); font-weight: 300; }
.about-block p + p { margin-top: 20px; }

/* ── PORTFOLIO ───────────────────────────────── */
#portfolio .section-inner { padding-bottom: 80px; }
.portfolio-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.filter-bar { display: flex; border: 1px solid var(--border-2); }
.filter-btn {
  padding: 11px 18px 9px;
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-2);
  background: none;
  border: none;
  border-right: 1px solid var(--border-2);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-btn:last-child { border-right: none; }
.filter-btn.active, .filter-btn:hover { background: var(--text); color: var(--bg); }

.filter-select { display: none; position: relative; width: 100%; }
.filter-current {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  background: none;
  border: 1px solid var(--border-2);
  cursor: pointer;
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.filter-chevron { stroke: var(--text-2); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.filter-select.open .filter-chevron { transform: rotate(180deg); }
.filter-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0; right: 0;
  z-index: 60;
  background: var(--surface);
  border: 1px solid var(--border-2);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.filter-select.open .filter-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.filter-opt {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.filter-opt:last-child { border-bottom: none; }
.filter-opt:hover, .filter-opt.active { background: var(--border); color: var(--text); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 40px;
}
.portfolio-cell {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--surface);
  transition: opacity 0.35s;
}
.portfolio-cell.hidden { display: none; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* ── PORTFOLIO LOUPE ─────────────────────────── */
.portfolio-cell.loupe-active { cursor: none; }
.loupe {
  position: fixed;
  top: 0; left: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transition: opacity 0.18s ease;
  box-shadow:
    0 0 0 1px var(--border-2),
    0 0 0 6px rgba(11, 10, 8, 0.45),
    0 16px 50px rgba(0, 0, 0, 0.6);
}
.loupe.visible { opacity: 1; }
.loupe img {
  position: absolute;
  top: 0; left: 0;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

/* ── FLASH MARQUEE ───────────────────────────── */
#flash { border-top: 1px solid var(--border); padding: 100px 0 104px; overflow: hidden; }
.flash-head { padding: 0 56px; margin-bottom: 52px; max-width: 640px; }
.flash-title {
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 200;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 4px 0 16px;
}
.flash-sub { font-size: 15px; line-height: 1.7; color: var(--text-2); font-weight: 300; }

.flash-hint {
  display: none;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
@keyframes flashHintNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
.flash-hint svg { animation: flashHintNudge 1.6s ease-in-out infinite; }

.marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 3%, #000 97%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: flashScroll 75s linear infinite;
}
@keyframes flashScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.flash-card {
  flex: 0 0 auto;
  width: 184px;
  height: 327px;
  margin-right: 16px;
  background: linear-gradient(180deg, #f6f6f6 0%, #ececec 100%);
  overflow: hidden;
}
.flash-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.see-more-row { display: flex; justify-content: center; padding-top: 8px; }
.see-more {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.25s;
}
.see-more::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border-2);
  transition: width 0.3s, background 0.3s;
}
.see-more:hover { color: var(--text); }
.see-more:hover::after { width: 64px; background: var(--text-2); }

/* ── PROCESS ─────────────────────────────────── */
.process-intro-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 80px;
}
.process-body { font-size: 16px; line-height: 1.75; color: var(--text-2); }
.process-body p + p { margin-top: 16px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}
.step { padding: 40px 32px; border-right: 1px solid var(--border); }
.step:last-child { border-right: none; }
.step-num {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-2);
  font-weight: 400;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 400;
  line-height: 1;
  padding-top: 2px;
  padding-left: 1px;
}
.step-name { font-size: 19px; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 14px; }
.step-text { font-size: 14px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

/* ── PRICING ─────────────────────────────────── */
.pricing-top { margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.pricing-col {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.pricing-col:last-child { border-right: none; }
.pricing-col.featured { background: var(--surface); }

.p-tier { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-2); font-weight: 400; margin-bottom: 28px; }
.p-od { font-size: 14px; font-weight: 300; color: var(--text-2); letter-spacing: 0.05em; margin-right: 2px; }
.p-price { font-size: 52px; font-weight: 200; letter-spacing: -0.025em; line-height: 1; margin-bottom: 6px; }
.p-price sub { font-size: 18px; font-weight: 300; color: var(--text-2); vertical-align: baseline; }
.p-tagline { font-size: 15px; font-weight: 200; color: var(--text); opacity: 0.7; line-height: 1.5; margin-bottom: 32px; }

.p-divider { height: 1px; background: var(--border); margin-bottom: 32px; }

.p-features { list-style: none; flex: 1; margin-bottom: 0; }
.p-features li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 300;
}
.p-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18ZM13.7071 8.70711C14.0976 8.31658 14.0976 7.68342 13.7071 7.29289C13.3166 6.90237 12.6834 6.90237 12.2929 7.29289L9 10.5858L7.70711 9.29289C7.31658 8.90237 6.68342 8.90237 6.29289 9.29289C5.90237 9.68342 5.90237 10.3166 6.29289 10.7071L8.29289 12.7071C8.68342 13.0976 9.31658 13.0976 9.70711 12.7071L13.7071 8.70711Z' fill='%236b6760'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.p-features li.cross::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 2C14.4183 2 18 5.58172 18 10C18 14.4183 14.4183 18 10 18C5.58172 18 2 14.4183 2 10C2 5.58172 5.58172 2 10 2ZM13.165 6.80078C12.7746 6.41034 12.1405 6.4105 11.75 6.80078L9.98242 8.56836L8.25 6.83594C7.85953 6.44584 7.22637 6.44577 6.83594 6.83594C6.44557 7.22635 6.44577 7.85946 6.83594 8.25L8.56836 9.98242L6.80078 11.75C6.41026 12.1405 6.41026 12.7745 6.80078 13.165C7.19127 13.555 7.82446 13.5552 8.21484 13.165L9.98242 11.3965L11.7861 13.2002C12.1767 13.5904 12.8098 13.5906 13.2002 13.2002C13.5904 12.8098 13.5903 12.1766 13.2002 11.7861L11.3965 9.98242L13.165 8.21484C13.5549 7.82444 13.5549 7.19119 13.165 6.80078Z' fill='%236b6760'/%3E%3C/svg%3E");
}
.p-cta {
  margin-top: 36px;
  display: block;
  text-decoration: none;
  padding: 16px 15px 14px;
  text-align: center;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-2);
  background: none;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.p-cta:hover, .pricing-col.featured .p-cta { background: var(--text); color: var(--bg); border-color: var(--text); }
.pricing-col.featured .p-cta:hover { background: var(--accent); border-color: var(--accent); }
.pricing-footer-note { margin-top: 20px; font-size: 12px; color: var(--text-2); opacity: 0.5; }

/* ── LANG SWITCHER ───────────────────────────── */
.lang-switcher { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  transition: color 0.2s;
}
.lang-current:hover { color: var(--text); }
.lang-current:hover .lang-chevron { stroke: var(--text); }
.lang-chevron { stroke: var(--text-2); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), stroke 0.2s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 160px;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.lang-switcher.open .lang-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 400;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-2);
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--border); color: var(--text); }
.lang-option.active { color: var(--text); }
.lang-abbr { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; min-width: 24px; }
.lang-option.active .lang-abbr { color: var(--accent); }
.lang-name { font-size: 13px; letter-spacing: 0.02em; font-weight: 300; }
.lang-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); margin-left: auto; flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────── */
.faq-cols { display: grid; grid-template-columns: 4fr 8fr; gap: 96px; align-items: start; }
.faq-left { position: sticky; top: 120px; }
.faq-list { border-top: none; }
.faq-group-title {
  padding-top: 34px;
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}
.faq-group:first-child .faq-group-title { padding-top: 22px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-2);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.35s;
}
.faq-icon::before { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-icon::after  { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item.open .faq-icon::before { transform: translateX(-50%) scaleY(0); opacity: 0; }

.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-answer { max-height: 900px; }
.faq-answer-inner {
  padding-bottom: 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
  font-weight: 300;
  max-width: 700px;
}
.faq-answer-inner p + p { margin-top: 14px; }
.faq-answer-inner a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border-2);
  transition: border-color 0.2s;
}
.faq-answer-inner a:hover { border-color: var(--accent); }
.faq-checklist { list-style: none; margin: 14px 0 0; padding: 0; }
.faq-checklist li { position: relative; padding-left: 24px; }
.faq-checklist li + li { margin-top: 10px; }
.faq-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--accent);
}
.faq-checklist li strong { font-weight: 500; color: var(--text); }

/* ── APPROACH ─────────────────────────────────── */
.approach-head { max-width: 720px; margin-bottom: 64px; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principle { padding: 48px 44px 52px; border-right: 1px solid var(--border); display: flex; flex-direction: column; }
.principle:last-child { border-right: none; }
.principle-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.principle-icon { width: 30px; height: 30px; color: var(--accent); }
.principle-icon svg { width: 100%; height: 100%; display: block; }
.principle-idx { font-size: 11px; letter-spacing: 0.16em; color: var(--text-2); font-weight: 400; }
.principle-name { font-size: 21px; font-weight: 300; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 14px; }
.principle-text { font-size: 14px; line-height: 1.7; color: var(--text-2); font-weight: 300; }

/* ── TRUST STRIP ──────────────────────────────── */
.trust-strip {
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 30px;
}
.trust-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 400;
  margin-right: 4px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text);
  font-weight: 300;
}
.trust-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-strip--standalone { margin-top: 0; padding-top: 0; border-top: none; }

/* ── CTA ─────────────────────────────────────── */
#cta .section-inner { text-align: center; padding: 160px 56px; }
.cta-title {
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 200;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 36px;
}
.cta-body { font-size: 18px; color: var(--text-2); max-width: 520px; margin: 0 auto 60px; line-height: 1.75; font-weight: 300; }
.cta-actions { display: flex; gap: 12px; justify-content: center; }

/* ── FOOTER ──────────────────────────────────── */
#footer {
  border-top: 1px solid var(--border);
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { font-size: 13px; letter-spacing: 0.12em; color: var(--text-2); font-weight: 400; }
.footer-copy { font-size: 12px; color: var(--text-2); }
.footer-right { display: flex; align-items: center; gap: 28px; }
.footer-cookies {
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-cookies:hover { color: var(--text); }

/* ── COOKIE CONSENT (GDPR) ───────────────────── */
html.cc-locked, body.cc-locked { overflow: hidden !important; overscroll-behavior: none; }
.cc[hidden] { display: none; }
.cc-backdrop { position: fixed; inset: 0; z-index: 900; background: rgba(11, 10, 8, 0.4); animation: ccFade 0.5s ease both; }
.cc-panel {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 901;
  background: var(--surface);
  border-top: 1px solid var(--border-2);
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.45);
  animation: ccSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes ccFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ccSlide { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cc-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.cc-text-wrap { max-width: 760px; }
.cc-title { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 400; margin-bottom: 12px; }
.cc-text { font-size: 14px; line-height: 1.7; color: var(--text-2); font-weight: 300; }
.cc-text a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.cc-text a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.cc-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cc-btn {
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.cc-reject { padding: 15px 30px 13px; background: transparent; color: var(--text-2); border: 1px solid var(--border-2); }
.cc-reject:hover { border-color: var(--text-2); color: var(--text); }
.cc-accept { padding: 16px 38px 14px; background: var(--text); color: var(--bg); border: 1px solid var(--text); }
.cc-accept:hover { background: var(--accent); border-color: var(--accent); }

/* ── SCROLL REVEAL ───────────────────────────── */
.r { opacity: 0; transform: translateY(28px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.r.visible { opacity: 1; transform: translateY(0); }
.r-delay-1 { transition-delay: 0.08s; }
.r-delay-2 { transition-delay: 0.16s; }
.r-delay-3 { transition-delay: 0.24s; }
.r-delay-4 { transition-delay: 0.32s; }
.r-delay-5 { transition-delay: 0.40s; }

/* ── NAV: burger on tablet ───────────────────── */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 720px) {
  #nav { padding: 18px 22px; z-index: 300; }
  #nav.scrolled { padding: 14px 22px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-right { gap: 14px; min-width: 0; }
  .nav-clock { display: none; }
  .vline { display: none; }
  .section-inner { padding: 72px 22px; }
  .section-h2 { font-size: clamp(30px, 8vw, 40px); }
  #hero { padding: 116px 22px 48px; min-height: 600px; }
  .hero-bg img { width: 100%; object-position: 33% center; }
  .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(11,10,8,0.30) 0%,
      rgba(11,10,8,0.08) 22%,
      rgba(11,10,8,0.26) 42%,
      rgba(11,10,8,0.64) 57%,
      rgba(11,10,8,0.89) 76%,
      rgba(11,10,8,0.98) 100%);
  }
  .hero-eyebrow { margin-bottom: 18px; color: rgba(236,231,220,0.6); text-shadow: 0 1px 12px rgba(11,10,8,0.85); }
  .hero-h1, .hero-copy { text-shadow: 0 1px 18px rgba(11,10,8,0.6); }
  .hero-h1 { font-size: clamp(42px, 12vw, 56px); margin-bottom: 22px; }
  .hero-copy { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-wrap: wrap; gap: 14px; }
  .hero-actions-divider { display: none; }
  .hero-meta { font-size: 12px; }
  .hero-scroll { display: none; }
  #about .section-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }
  .about-right { gap: 40px; }
  .about-block p { font-size: 16px; }
  #portfolio .section-inner { padding-bottom: 56px; }
  .portfolio-top { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .filter-bar { display: none; }
  .filter-select { display: block; }
  .portfolio-top > div:last-child { width: 100%; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  #flash { padding: 64px 0 68px; }
  .flash-head { padding: 0 22px; margin-bottom: 36px; }
  .flash-hint { display: inline-flex; }
  .marquee {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-left: 22px;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track { animation: none; padding: 0 22px; }
  .flash-card { scroll-snap-align: start; }
  .marquee-track [aria-hidden="true"] { display: none; }
  .process-intro-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 4px; }
  .step:last-child { border-bottom: none; }
  .step-num { margin-bottom: 20px; }
  .pricing-top { margin-bottom: 36px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-col { border-right: none; border-bottom: 1px solid var(--border); padding: 40px 26px; }
  .pricing-col:last-child { border-bottom: none; }
  .faq-cols { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
  .faq-question { gap: 20px; padding: 24px 0; font-size: 16px; }
  .faq-answer-inner p { font-size: 15px; }
  #cta .section-inner { padding: 88px 22px; }
  .cta-title { font-size: clamp(40px, 12vw, 64px); }
  .cta-body { font-size: 16px; margin-bottom: 40px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  #footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 26px 22px; }
  .cc-inner { flex-direction: column; align-items: stretch; gap: 22px; padding: 26px 22px calc(26px + env(safe-area-inset-bottom, 0px)); }
  .cc-actions { width: 100%; }
  .cc-btn { flex: 1; text-align: center; padding-left: 12px; padding-right: 12px; }
  .principles { grid-template-columns: 1fr; }
  .principle { border-right: none; border-bottom: 1px solid var(--border); padding: 38px 0; }
  .principle:last-child { border-bottom: none; }
  .trust-strip { gap: 13px 22px; }
  #footer { flex-wrap: wrap; gap: 14px; padding: 22px; }
  .footer-right { gap: 18px; }
}

@media (max-width: 460px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .section-h2 { font-size: clamp(28px, 9vw, 36px); }
  .mobile-menu-links a { font-size: 26px; }
  .p-price { font-size: 46px; }
}

@media (min-width: 1100px) {
  .hero-main { max-width: 880px; }
  .hero-h1 { white-space: nowrap; }
}
