/*
Theme Name: Falcon Family Investment PRO
Theme URI: https://falconfamily.eu/
Author: Falcon Family Investment
Description: Premium multilingual corporate WordPress theme for FALCON FAMILY INVESTMENT KFT. Mobile-first, SEO-ready, responsive and accessibility-conscious.
Version: 1.4.2
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: falcon-family-investment
*/

:root {
  --ink: #101210;
  --ink-soft: #171a17;
  --ink-elevated: #20241f;
  --paper: #f3f0e8;
  --paper-bright: #fbfaf7;
  --paper-muted: #e8e3d8;
  --gold: #cfad60;
  --gold-bright: #e6c97e;
  --gold-deep: #a67d2d;
  --text-muted: rgba(16,18,16,.66);
  --line-dark: rgba(251,250,247,.14);
  --line-light: rgba(16,18,16,.12);
  --shadow-soft: 0 28px 70px rgba(14,17,14,.12);
  --shadow-deep: 0 26px 80px rgba(0,0,0,.28);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --header-h: 72px;
  --container: 1180px;
  --gutter: clamp(18px, 4.5vw, 54px);
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--gold-bright); }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
  border-radius: 4px;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.section-dark { color: var(--paper-bright); background: var(--ink); }
.section-paper { color: var(--ink); background: var(--paper); }
.site-shell { min-height: 100vh; }

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-h);
  color: var(--paper-bright);
  background: rgba(16,18,16,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  transition: min-height .24s ease, background .24s ease, box-shadow .24s ease;
}
.header-inner {
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: minmax(0,1fr) auto auto;
  align-items: center;
  gap: 10px;
}
.brand-lockup { display: inline-flex; min-width: 0; justify-self: start; }
.brand-plate {
  display: grid;
  width: 132px;
  height: 54px;
  place-items: center;
  padding: 6px 9px;
  background: var(--paper-bright);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 0 0 11px 11px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  overflow: hidden;
  transition: width .22s ease, height .22s ease, transform .22s ease;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}
.desktop-nav, .header-cta { display: none; }
.language-switcher { position: relative; }
.language-current {
  display: inline-flex;
  min-width: 56px;
  min-height: 44px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--paper-bright);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.language-chevron { color: var(--gold); font-size: .9rem; transform: translateY(-1px); }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 8px;
  color: var(--paper-bright);
  background: rgba(18,21,18,.98);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0,0,0,.32);
}
.language-menu[hidden] { display: none; }
.language-menu a {
  display: flex;
  min-height: 44px;
  padding: 8px 10px;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  color: rgba(251,250,247,.76);
  font-size: .76rem;
  letter-spacing: .06em;
}
.language-menu a:hover,
.language-menu a[aria-current="page"] { color: var(--paper-bright); background: rgba(255,255,255,.08); }
.language-menu strong { color: var(--gold-bright); font-size: .7rem; }

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  cursor: pointer;
}
.menu-toggle span { width: 17px; height: 1.5px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.8px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 999;
  inset: var(--header-h) 0 0;
  padding: 26px var(--gutter) 32px;
  color: var(--paper-bright);
  background: rgba(16,18,16,.985);
  border-top: 1px solid var(--line-dark);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--display);
  font-size: clamp(1.65rem, 8vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -.035em;
}
.mobile-language-row { display: flex; gap: 8px; margin-top: 26px; }
.mobile-language-row a {
  display: grid;
  min-width: 48px;
  min-height: 44px;
  place-items: center;
  color: rgba(251,250,247,.7);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
}
.mobile-language-row a[aria-current="page"] { color: var(--ink); background: var(--gold-bright); border-color: var(--gold-bright); }

/* Shared typography */
.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 12px;
  color: rgba(251,250,247,.67);
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow-dark { color: rgba(16,18,16,.55); }
.eyebrow-line { width: 38px; height: 1px; flex: 0 0 auto; background: var(--gold); }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--display); }

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--ink); background: var(--gold); border-color: var(--gold-bright); box-shadow: inset 0 -3px 0 rgba(80,55,8,.15); }
.button-gold:hover { background: var(--gold-bright); box-shadow: 0 12px 30px rgba(207,173,96,.2), inset 0 -2px 0 rgba(80,55,8,.12); }
.button-ghost { color: var(--paper-bright); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.025); }
.button-ghost:hover { background: rgba(255,255,255,.075); }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  padding: clamp(72px, 11vw, 112px) 0 76px;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 85%);
}
.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  right: -330px;
  top: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207,173,96,.14), rgba(207,173,96,0) 68%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; gap: 56px; }
.hero-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  padding: 7px 11px;
  align-items: center;
  gap: 10px;
  color: rgba(251,250,247,.64);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 790;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-status span:first-child { color: var(--gold-bright); }
.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--paper-bright);
  font-size: clamp(3.55rem, 15vw, 6.2rem);
  font-weight: 720;
  letter-spacing: -.067em;
  line-height: .9;
}
.hero h1 em { display: block; margin-top: .13em; color: var(--gold-bright); font-style: normal; font-weight: 650; }
.hero-lead { max-width: 660px; margin-bottom: 30px; color: rgba(251,250,247,.72); font-size: clamp(1rem, 2.7vw, 1.14rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-signature {
  display: grid;
  max-width: 630px;
  margin-top: 42px;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-dark);
}
.hero-signature > div {
  display: grid;
  min-height: 50px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}
.hero-signature span { color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.hero-signature strong { color: rgba(251,250,247,.72); font-size: .72rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }

.hero-art { position: relative; min-width: 0; }
.city-photo-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #0a0e14;
  border: 1px solid rgba(230,201,126,.65);
  border-radius: 3px;
  box-shadow: var(--shadow-deep);
}
.city-photo-panel picture, .city-photo-panel img { width: 100%; height: 100%; }
.city-photo-panel img { object-fit: cover; object-position: 52% 50%; }
.city-photo-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,10,14,.12) 20%, rgba(7,9,10,.18) 52%, rgba(6,7,7,.8) 100%); }
.city-photo-content {
  position: absolute;
  inset: auto 18px 17px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: rgba(251,250,247,.78);
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.city-photo-location { display: flex; align-items: center; gap: 8px; }
.city-pin { display: grid; width: 24px; height: 24px; place-items: center; color: var(--gold-bright); border: 1px solid rgba(230,201,126,.6); border-radius: 50%; }
.city-photo-founded { display: grid; gap: 3px; text-align: right; }
.city-photo-founded span { color: rgba(251,250,247,.62); }
.city-photo-founded strong { color: var(--gold-bright); font-size: 1.4rem; letter-spacing: -.04em; line-height: 1; }
.city-photo-badge { position: absolute; top: 16px; right: 16px; display: grid; text-align: right; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.city-photo-badge span { color: var(--gold-bright); font-size: .74rem; font-weight: 900; letter-spacing: .1em; }
.city-photo-badge small { color: rgba(251,250,247,.77); font-size: .52rem; font-weight: 800; letter-spacing: .1em; }
.art-orbit { position: absolute; z-index: -1; border: 1px solid rgba(207,173,96,.24); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 96%; height: 112%; right: -35%; top: -6%; transform: rotate(-18deg); }
.orbit-two { width: 72%; height: 92%; right: -20%; top: 5%; border-color: rgba(255,255,255,.1); transform: rotate(21deg); }
.art-corner { position: absolute; z-index: 3; width: 52px; height: 52px; border-color: var(--gold); border-style: solid; }
.art-corner.top-left { top: 7%; left: -8px; border-width: 1px 0 0 1px; }
.art-corner.bottom-right { right: -8px; bottom: 7%; border-width: 0 1px 1px 0; }

/* Intro */
.intro { padding: 92px 0 64px; }
.intro-grid { display: grid; gap: 34px; }
.section-marker { display: flex; align-items: center; gap: 12px; color: rgba(16,18,16,.48); }
.marker-number { color: var(--gold-deep); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.marker-label { font-size: .67rem; font-weight: 820; letter-spacing: .15em; text-transform: uppercase; }
.intro-content h2,
.services h2,
.facts h2,
.principles h2,
.contact h2,
.service-content h2,
.related-services h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 11vw, 4.7rem);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .98;
}
.intro-content h2 span,
.services h2 span,
.contact h2 span,
.related-services h2 span { color: var(--gold-deep); }
.intro-columns { display: grid; gap: 20px; }
.intro-columns p { margin-bottom: 0; color: var(--text-muted); font-size: 1rem; line-height: 1.78; }
.gold-rule { width: 54px; height: 3px; margin-top: 38px; background: var(--gold); }

/* Facts */
.facts { padding: 20px 0 92px; }
.facts-shell { padding: 30px 0 0; border-top: 1px solid var(--line-light); }
.facts-heading { margin-bottom: 30px; }
.facts h2 { max-width: 690px; margin-bottom: 0; font-size: clamp(2.3rem, 9vw, 4rem); }
.facts-grid { display: grid; gap: 10px; }
.facts-grid article {
  position: relative;
  min-height: 150px;
  padding: 22px;
  background: rgba(251,250,247,.6);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fact-index { display: block; margin-bottom: 30px; color: var(--gold-deep); font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.facts-grid strong { display: block; margin-bottom: 4px; font-family: var(--display); font-size: clamp(1.8rem, 7vw, 2.6rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.05; overflow-wrap: anywhere; }
.facts-grid p { margin: 0; color: rgba(16,18,16,.52); font-size: .72rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.fact-wide { background: var(--ink) !important; color: var(--paper-bright); border-color: var(--ink) !important; }
.fact-wide p { color: rgba(251,250,247,.5); }
.fact-wide .fact-index { color: var(--gold-bright); }

/* Services */
.services { padding: 0 0 102px; }
.section-heading { display: grid; gap: 20px; margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 0; }
.heading-note { max-width: 510px; margin: 0; color: var(--text-muted); font-size: .96rem; line-height: 1.7; }
.service-grid { display: grid; gap: 12px; }
.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 22px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.service-card-dark { color: var(--paper-bright); background: var(--ink-soft); }
.service-card-ivory { color: var(--ink); background: var(--paper-bright); border-color: var(--line-light); }
.service-card-gold { color: var(--ink); background: var(--gold); border-color: var(--gold-bright); }
.card-topline { display: flex; align-items: center; justify-content: space-between; color: rgba(251,250,247,.5); font-size: .63rem; font-weight: 820; letter-spacing: .14em; }
.service-card-ivory .card-topline,.service-card-gold .card-topline { color: rgba(16,18,16,.5); }
.card-icon { display: grid; width: 32px; height: 32px; place-items: center; color: var(--gold-bright); border: 1px solid rgba(230,201,126,.48); border-radius: 50%; transition: transform .18s ease; }
.service-card:hover .card-icon { transform: rotate(8deg) translate(1px,-1px); }
.service-card-ivory .card-icon,.service-card-gold .card-icon { color: var(--gold-deep); border-color: rgba(90,61,12,.24); }
.service-card-body { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; margin-top: 62px; }
.card-kicker { margin-bottom: 7px; color: var(--gold-bright); font-size: .65rem; font-weight: 850; letter-spacing: .19em; text-transform: uppercase; }
.service-card-ivory .card-kicker,.service-card-gold .card-kicker { color: var(--gold-deep); }
.service-card h3 { margin-bottom: 14px; font-size: clamp(2.2rem, 11vw, 3.3rem); font-weight: 680; letter-spacing: -.055em; line-height: .96; }
.card-summary { max-width: 400px; margin-bottom: 26px; color: rgba(251,250,247,.66); font-size: .93rem; line-height: 1.66; }
.service-card-ivory .card-summary,.service-card-gold .card-summary { color: rgba(16,18,16,.64); }
.activity-list { display: grid; margin-top: auto; gap: 9px; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.service-card-ivory .activity-list,.service-card-gold .activity-list { border-color: var(--line-light); }
.activity-item { display: flex; align-items: flex-start; gap: 9px; color: rgba(251,250,247,.8); font-size: .82rem; line-height: 1.48; }
.service-card-ivory .activity-item,.service-card-gold .activity-item { color: rgba(16,18,16,.76); }
.activity-dot { width: 5px; height: 5px; margin-top: 7px; flex: 0 0 auto; background: var(--gold-bright); border-radius: 50%; }
.service-card-ivory .activity-dot,.service-card-gold .activity-dot { background: var(--gold-deep); }
.card-details { display: inline-flex; margin-top: 20px; align-items: center; gap: 8px; font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.card-watermark { position: absolute; right: -14px; bottom: -45px; color: rgba(255,255,255,.035); font-family: var(--display); font-size: 12rem; font-weight: 900; letter-spacing: -.12em; line-height: 1; }
.service-card-ivory .card-watermark,.service-card-gold .card-watermark { color: rgba(16,18,16,.04); }

/* Principles */
.principles { padding: 92px 0 100px; }
.principles-inner { display: grid; gap: 48px; }
.principles h2 { max-width: 560px; margin-bottom: 0; color: var(--paper-bright); }
.principles-list { border-top: 1px solid var(--line-dark); }
.principle { display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 16px; padding: 23px 0 25px; border-bottom: 1px solid var(--line-dark); }
.principle-number { padding-top: 4px; color: var(--gold); font-size: .68rem; font-weight: 850; letter-spacing: .14em; }
.principle h3 { margin-bottom: 5px; color: var(--paper-bright); font-size: 1.16rem; font-weight: 720; letter-spacing: -.02em; }
.principle p { max-width: 600px; margin-bottom: 0; color: rgba(251,250,247,.6); font-size: .94rem; line-height: 1.68; }

/* Contact */
.contact { padding: 88px 0 100px; }
.contact-wrap { display: grid; gap: 36px; padding: 28px; background: var(--paper-bright); border: 1px solid rgba(16,18,16,.09); border-radius: 24px; box-shadow: 0 18px 54px rgba(16,18,16,.07); }
.contact h2 { margin-bottom: 20px; }
.contact-copy > p:last-child { max-width: 560px; margin-bottom: 0; color: var(--text-muted); font-size: .98rem; line-height: 1.75; }
.contact-side { display: grid; gap: 12px; }
.contact-mail { position: relative; display: flex; min-height: 150px; padding: 23px; flex-direction: column; justify-content: flex-end; color: var(--paper-bright); background: var(--ink); border-radius: 17px; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.contact-mail::before { position: absolute; width: 230px; height: 230px; right: -72px; top: -110px; border: 1px solid rgba(207,173,96,.3); border-radius: 50%; content:""; }
.contact-mail:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(16,18,16,.18); }
.contact-mail-label { margin-bottom: 6px; color: var(--gold-bright); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-mail-address { max-width: calc(100% - 40px); font-family: var(--display); font-size: clamp(1.02rem, 4.5vw, 1.28rem); font-weight: 700; letter-spacing: -.02em; overflow-wrap: anywhere; }
.contact-mail-arrow { position: absolute; top: 20px; right: 20px; display: grid; width: 34px; height: 34px; place-items: center; color: var(--ink); background: var(--gold); border-radius: 50%; }
.contact-form { position: relative; padding: 22px; background: var(--paper); border: 1px solid rgba(16,18,16,.1); border-radius: 17px; }
.contact-form-heading { display: flex; margin-bottom: 16px; align-items: baseline; justify-content: space-between; gap: 14px; }
.contact-form-label { color: var(--ink); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-form-required { color: rgba(16,18,16,.45); font-size: .7rem; }
.contact-form-grid { display: grid; gap: 12px; }
.form-field { display: grid; gap: 6px; color: rgba(16,18,16,.64); font-size: .76rem; font-weight: 750; }
.form-field input,.form-field textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--paper-bright); border: 1px solid rgba(16,18,16,.14); border-radius: 9px; outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
.form-field textarea { min-height: 126px; resize: vertical; }
.form-field input:focus,.form-field textarea:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(207,173,96,.16); }
.consent-row { display: grid; margin: 14px 0; grid-template-columns: 18px 1fr; gap: 8px; color: rgba(16,18,16,.55); font-size: .69rem; line-height: 1.48; }
.consent-row input { margin: 2px 0 0; accent-color: var(--gold-deep); }
.consent-row a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { display: flex; width: 100%; min-height: 48px; padding: 0 15px; align-items: center; justify-content: space-between; color: var(--ink); background: var(--gold); border: 0; border-radius: 999px; cursor: pointer; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; box-shadow: inset 0 -3px 0 rgba(80,55,8,.14); }
.form-submit .cta-arrow { display: grid; width: 27px; height: 27px; place-items: center; color: var(--paper-bright); background: var(--ink); border-radius: 50%; }
.form-feedback { margin-bottom: 14px; padding: 10px 12px; border-radius: 8px; font-size: .8rem; }
.form-feedback.is-success { color: #163c24; background: #e2f1e6; border: 1px solid #bdd9c5; }
.form-feedback.is-error { color: #62231f; background: #f7e6e3; border: 1px solid #e6c0ba; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.cf-turnstile { margin-bottom: 14px; }

/* Service detail */
.service-hero { position: relative; padding: 82px 0 74px; overflow: hidden; }
.service-hero-inner { position: relative; z-index: 2; display: grid; gap: 44px; }
.breadcrumbs { display: flex; margin-bottom: 40px; gap: 8px; color: rgba(251,250,247,.48); font-size: .68rem; font-weight: 720; letter-spacing: .06em; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.service-kicker { margin-bottom: 8px; color: var(--gold-bright); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.service-hero h1 { max-width: 800px; margin-bottom: 24px; color: var(--paper-bright); font-size: clamp(4rem, 18vw, 7rem); font-weight: 720; letter-spacing: -.07em; line-height: .88; }
.service-lead { max-width: 680px; margin-bottom: 28px; color: rgba(251,250,247,.69); font-size: clamp(1.02rem, 2.8vw, 1.2rem); line-height: 1.7; }
.service-number-card { position: relative; min-height: 260px; padding: 24px; color: var(--paper-bright); background: var(--ink-soft); border: 1px solid rgba(207,173,96,.3); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-deep); }
.service-number-card > span { color: var(--gold-bright); font-size: .66rem; font-weight: 850; letter-spacing: .15em; }
.service-number-card strong { position: absolute; right: -18px; bottom: -62px; color: rgba(255,255,255,.055); font-size: 15rem; font-weight: 900; letter-spacing: -.13em; line-height: 1; }
.service-number-card small { position: absolute; left: 24px; bottom: 24px; color: rgba(251,250,247,.48); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.service-content { padding: 92px 0 76px; }
.service-content-grid { display: grid; gap: 34px; }
.service-content-main { max-width: 820px; }
.service-body-copy { max-width: 760px; color: var(--text-muted); font-size: 1.03rem; line-height: 1.82; }
.service-fact-panel { margin-top: 38px; padding: 22px; background: var(--paper-bright); border: 1px solid var(--line-light); border-radius: var(--radius-md); }
.service-fact-label { margin-bottom: 17px; color: var(--gold-deep); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-fact-row { display: flex; gap: 10px; padding: 12px 0; align-items: flex-start; border-top: 1px solid var(--line-light); color: rgba(16,18,16,.74); }
.related-services { padding: 10px 0 96px; }
.related-grid { display: grid; gap: 12px; }
.related-card { padding: 26px; background: var(--paper-bright); border: 1px solid var(--line-light); border-radius: var(--radius-lg); transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.related-kicker { color: var(--gold-deep); font-size: .67rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.related-card h3 { margin: 12px 0; font-size: clamp(2.2rem, 10vw, 3.2rem); font-weight: 680; letter-spacing: -.05em; line-height: 1; }
.related-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }
.related-link { display: inline-block; margin-top: 10px; font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }

/* Generic WordPress pages */
.wp-page-main { min-height: 70vh; padding: 90px 0 110px; }
.wp-page-shell { max-width: 900px; }
.wp-content-page { padding: 34px 0; }
.wp-content-page > h1 { margin-bottom: 30px; font-size: clamp(2.8rem, 10vw, 5rem); font-weight: 680; letter-spacing: -.055em; line-height: .98; }
.entry-content { color: rgba(16,18,16,.74); font-size: 1rem; line-height: 1.8; }
.entry-content h2 { margin: 42px 0 14px; font-size: 2rem; letter-spacing: -.03em; }
.entry-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { height: auto; border-radius: 14px; }

.not-found { min-height: 72vh; padding: 110px 0; }
.not-found-inner { display: grid; justify-items: start; }
.not-found-index { color: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .14em; }
.not-found h1 { margin: 24px 0 12px; font-size: clamp(6rem, 28vw, 14rem); font-weight: 800; letter-spacing: -.1em; line-height: .72; }
.not-found p { margin-bottom: 30px; color: rgba(251,250,247,.62); }

/* Footer */
.site-footer { padding: 58px 0 22px; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand-block { max-width: 280px; }
.footer-brand { display: block; width: 190px; }
.footer-brand img { width: 100%; height: auto; }
.footer-brand-block p { margin: 14px 0 0; color: rgba(251,250,247,.48); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-column { display: grid; align-content: start; justify-items: start; gap: 8px; color: rgba(251,250,247,.55); font-size: .8rem; }
.footer-column a:hover { color: var(--gold-bright); }
.footer-label { margin: 0 0 6px; color: var(--gold); font-size: .64rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.footer-email { max-width: 100%; overflow-wrap: anywhere; color: var(--paper-bright); font-size: .76rem; font-weight: 720; }
.footer-bottom { display: flex; margin-top: 42px; padding-top: 18px; align-items: center; justify-content: space-between; gap: 18px; color: rgba(251,250,247,.38); border-top: 1px solid var(--line-dark); font-size: .66rem; }
.footer-bottom p { margin: 0; }
.footer-index { color: var(--gold) !important; font-weight: 850; letter-spacing: .12em; }

/* Reveal motion */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .08s; }

/* Language tuning */
.ffi-lang-de .hero h1 { font-size: clamp(3.05rem, 13.5vw, 5.8rem); }
.ffi-lang-ru .hero h1 { font-size: clamp(3.1rem, 13.7vw, 5.9rem); }
.ffi-lang-de .contact h2,
.ffi-lang-ru .contact h2 { font-size: clamp(2.35rem, 9.5vw, 4.5rem); }

/* >= 560 */
@media (min-width: 560px) {
  .hero-signature { grid-template-columns: repeat(3,1fr); }
  .hero-signature > div { grid-template-columns: 38px 1fr; border-right: 1px solid var(--line-dark); }
  .hero-signature > div:last-child { border-right: 0; }
  .facts-grid { grid-template-columns: repeat(2,1fr); }
  .fact-wide { grid-column: 1 / -1; }
  .contact-form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-field-full { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

/* >= 760 */
@media (min-width: 760px) {
  :root { --header-h: 78px; }
  .brand-plate { width: 154px; height: 60px; }
  .hero { padding-top: 94px; }
  .hero-inner { grid-template-columns: minmax(0,1fr) minmax(330px,.82fr); align-items: center; gap: 54px; }
  .city-photo-panel { aspect-ratio: 1 / 1.06; }
  .intro { padding: 112px 0 82px; }
  .intro-grid { grid-template-columns: 20% minmax(0,1fr); gap: 6%; }
  .intro-columns { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .facts-grid { grid-template-columns: repeat(3,1fr); }
  .fact-wide { grid-column: 1 / -1; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid .service-card:last-child { grid-column: 1 / -1; }
  .principles-inner { grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr); gap: 64px; }
  .contact-wrap { padding: 46px; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .service-content-grid { grid-template-columns: 20% minmax(0,1fr); gap: 6%; }
  .service-hero-inner { grid-template-columns: minmax(0,1fr) 280px; align-items: end; }
  .footer-grid { grid-template-columns: 1.2fr .75fr 1fr .75fr; }
}

/* >= 980 */
@media (min-width: 980px) {
  :root { --header-h: 86px; }
  .header-inner { grid-template-columns: minmax(180px,1fr) auto auto auto; gap: 26px; }
  .brand-plate { width: 178px; height: 68px; }
  .desktop-nav { display: flex; align-items: center; gap: 28px; }
  .desktop-nav a { position: relative; color: rgba(251,250,247,.66); font-size: .69rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
  .desktop-nav a::after { position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: var(--gold); content:""; transition: width .2s ease; }
  .desktop-nav a:hover { color: var(--paper-bright); }
  .desktop-nav a:hover::after { width: 100%; }
  .header-cta { display: inline-flex; min-height: 44px; padding: 0 17px 0 20px; align-items: center; gap: 15px; color: var(--ink); background: var(--gold); border: 1px solid var(--gold-bright); border-radius: 999px; font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; box-shadow: inset 0 -3px 0 rgba(80,55,8,.13); }
  .header-cta .cta-arrow { display: grid; width: 25px; height: 25px; place-items: center; color: var(--paper-bright); background: var(--ink); border-radius: 50%; }
  .menu-toggle { display: none; }
  .site-header.is-scrolled { --header-h: 68px; background: rgba(16,18,16,.97); box-shadow: 0 14px 40px rgba(0,0,0,.15); }
  .site-header.is-scrolled .brand-plate { width: 154px; height: 56px; transform: translateY(0); }
  .hero { min-height: calc(100svh - var(--header-h)); padding: 96px 0 84px; }
  .hero-inner { grid-template-columns: minmax(0,1.05fr) minmax(420px,.95fr); gap: clamp(48px,6vw,90px); }
  .hero h1 { font-size: clamp(5.2rem, 7vw, 7.4rem); }
  .ffi-lang-de .hero h1 { font-size: clamp(4.6rem, 6vw, 6.5rem); }
  .ffi-lang-ru .hero h1 { font-size: clamp(4.5rem, 5.9vw, 6.4rem); }
  .city-photo-panel { aspect-ratio: 1.14 / 1; }
  .art-corner.top-left { top: 12%; left: -28px; }
  .art-corner.bottom-right { right: -28px; bottom: 10%; }
  .intro { padding: 132px 0 96px; }
  .facts { padding-bottom: 120px; }
  .facts-shell { display: grid; grid-template-columns: .75fr 1.5fr; gap: 56px; align-items: end; }
  .facts-heading { margin-bottom: 0; }
  .facts-grid { grid-template-columns: repeat(3,1fr); }
  .fact-wide { grid-column: 1 / -1; }
  .services { padding-bottom: 132px; }
  .section-heading { grid-template-columns: minmax(0,1fr) minmax(280px,.42fr); align-items: end; gap: 60px; }
  .service-grid { grid-template-columns: repeat(3,1fr); gap: 14px; }
  .service-grid .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 505px; padding: 25px 26px 28px; }
  .service-card-body { margin-top: 76px; }
  .principles { padding: 126px 0 132px; }
  .principles-inner { gap: 90px; }
  .contact { padding: 124px 0 138px; }
  .contact-wrap { grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: 68px; padding: 62px 64px; }
  .contact-mail { min-height: 176px; padding: 27px 29px; }
  .contact-form { padding: 24px 26px 26px; }
  .service-hero { padding: 110px 0 96px; }
  .service-hero-inner { grid-template-columns: minmax(0,1fr) 340px; gap: 80px; }
  .service-number-card { min-height: 330px; }
  .service-content { padding: 120px 0 94px; }
  .related-services { padding-bottom: 124px; }
}

/* >= 1320 */
@media (min-width: 1320px) {
  :root { --container: 1260px; }
  .hero-inner { grid-template-columns: 1.08fr .92fr; }
  .city-photo-panel { max-width: 580px; margin-left: auto; }
  .facts-grid article { min-height: 165px; padding: 25px; }
}

/* WordPress admin bar */
.admin-bar .site-header { top: 46px; }
@media (min-width: 783px) { .admin-bar .site-header { top: 32px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
