/*
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.7.3
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: "Fraunces", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "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;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(11,13,12,.94), rgba(19,21,19,.78) 52%, rgba(11,13,12,.93)),
    url('assets/images/header-stone-texture.webp');
  background-position: center;
  background-size: cover;
  opacity: .36;
  content: "";
  pointer-events: none;
}
.site-header::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207,173,96,.22), transparent);
  content: "";
  pointer-events: none;
}
.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: minmax(0,1fr) auto auto;
  align-items: center;
  gap: 10px;
}
.brand-lockup {
  position: relative;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-self: start;
  padding: 10px 0;
}.brand-plate {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: opacity .22s ease, transform .22s ease;
}
.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  max-width: min(34vw, 210px);
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.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: 228px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  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; flex-wrap: wrap; 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 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); }


/* Editorial business-area image strip */
.editorial-visual { padding: 8px 0 96px; }
.editorial-visual-grid { display: grid; gap: 12px; }
.editorial-visual-item { position: relative; min-height: 245px; margin: 0; overflow: hidden; border-radius: 22px; background: var(--ink-soft); }
.editorial-visual-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1); }
.editorial-visual-item:hover img { transform: scale(1.025); }
.editorial-visual-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,12,11,.02), rgba(10,12,11,.58)); }
.editorial-visual-item figcaption { position: absolute; left: 22px; bottom: 18px; color: #fff; font-size: .72rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; text-shadow: 0 3px 14px rgba(0,0,0,.45); }
/* 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-media { position: relative; z-index: 1; aspect-ratio: 1.32 / .78; margin-top: 18px; overflow: hidden; border-radius: 18px; }
.service-card-media picture { width: 100%; height: 100%; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.service-card-media-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.18) 100%); }
.service-card-dark .service-card-media-shade { background: linear-gradient(180deg, rgba(16,18,16,.08) 0%, rgba(16,18,16,.36) 100%); }
.service-card-body { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; margin-top: 28px; }
.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: 22px; color: rgba(251,250,247,.72); 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: 14px; }
.contact-direct { position: relative; display: grid; gap: 12px; padding: 24px; color: var(--paper-bright); background: var(--ink); border-radius: 17px; overflow: hidden; box-shadow: 0 18px 42px rgba(16,18,16,.14); }
.contact-direct::before { position: absolute; width: 230px; height: 230px; right: -72px; top: -110px; border: 1px solid rgba(207,173,96,.28); border-radius: 50%; content:""; }
.contact-direct-head,.contact-direct-actions { position: relative; z-index: 1; }
.contact-mail-label { margin-bottom: 8px; color: var(--gold-bright); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct-title { margin: 0; max-width: 100%; font-family: var(--display); font-size: clamp(1.02rem, 4.2vw, 1.28rem); font-weight: 700; letter-spacing: -.02em; overflow-wrap: anywhere; }
.contact-direct-text,.contact-direct-note { position: relative; z-index: 1; margin: 0; max-width: 62ch; color: rgba(251,250,247,.72); font-size: .88rem; line-height: 1.65; }
.contact-direct-note { color: rgba(251,250,247,.56); font-size: .8rem; }
.contact-direct-actions { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.contact-direct-button { display: inline-flex; min-height: 44px; padding: 0 14px 0 18px; align-items: center; gap: 12px; color: var(--ink); background: var(--gold); border: 1px solid var(--gold-bright); border-radius: 999px; font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; box-shadow: inset 0 -3px 0 rgba(80,55,8,.13); }
.contact-direct-button .cta-arrow { display: grid; width: 26px; height: 26px; place-items: center; color: var(--paper-bright); background: var(--ink); 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,.form-field select { 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,.form-field select: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; }


/* Corporate trust / PRO company details */
.company-info { display: none; }
.company-info-shell { display: grid; gap: 42px; }
.company-info-intro h2 { max-width: 650px; margin-bottom: 18px; color: var(--paper-bright); font-size: clamp(2.8rem, 10vw, 5rem); line-height: .96; }
.company-info-intro > p:last-of-type { max-width: 620px; color: rgba(251,250,247,.6); line-height: 1.75; }
.company-info-cta { display: inline-flex; margin-top: 18px; align-items: center; gap: 12px; color: var(--gold-bright); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.company-info-grid { display: grid; gap: 10px; }
.company-info-grid article { position: relative; min-height: 142px; padding: 22px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; overflow: hidden; }
.company-info-grid article > span { display: block; margin-bottom: 26px; color: var(--gold); font-size: .62rem; font-weight: 900; letter-spacing: .14em; }
.company-info-grid small { display: block; margin-bottom: 6px; color: rgba(251,250,247,.48); font-size: .64rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.company-info-grid strong { display: block; color: var(--paper-bright); font-family: var(--body); font-size: clamp(1.03rem, 4vw, 1.35rem); font-weight: 680; line-height: 1.35; overflow-wrap: anywhere; }
.company-address-card { grid-column: 1 / -1; }
.company-address-card a { display: inline-flex; margin-top: 14px; color: var(--gold-bright); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Imprint */
.imprint-hero { position: relative; padding: 92px 0 86px; overflow: hidden; }
.imprint-hero-inner { position: relative; z-index: 2; max-width: 900px; }
.imprint-hero h1 { max-width: 900px; margin: 0 0 24px; color: var(--paper-bright); font-size: clamp(3.7rem, 14vw, 7rem); line-height: .9; }
.imprint-hero h1 span { color: var(--gold-bright); }
.imprint-hero-inner > p:last-child { max-width: 680px; color: rgba(251,250,247,.64); font-size: 1.05rem; line-height: 1.75; }
.imprint-content { padding: 92px 0 120px; }
.imprint-grid { display: grid; gap: 34px; max-width: 980px; }
.imprint-section { padding-bottom: 34px; border-bottom: 1px solid var(--line-light); }
.imprint-data-grid { display: grid; gap: 10px; }
.imprint-data-grid article,.imprint-contact-card,.imprint-hosting-card { padding: 22px; background: var(--paper-bright); border: 1px solid var(--line-light); border-radius: 16px; }
.imprint-data-grid small { display: block; margin-bottom: 7px; color: rgba(16,18,16,.48); font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.imprint-data-grid strong { display: block; color: var(--ink); font-size: 1rem; line-height: 1.55; overflow-wrap: anywhere; }
.imprint-data-grid a,.imprint-contact-card a { display: inline-flex; margin-top: 9px; color: var(--gold-deep); font-weight: 760; text-decoration: underline; text-underline-offset: 4px; }
.imprint-contact-card { display: grid; gap: 10px; }
.imprint-contact-card a { margin: 0; overflow-wrap: anywhere; }
.imprint-hosting-card p { margin: 0; color: var(--text-muted); line-height: 1.7; }

/* Form PRO */
.form-field { transition: transform .18s ease; }
.form-field:focus-within { transform: translateY(-1px); }
.form-field select { width: 100%; min-height: 48px; padding: 0 42px 0 12px; color: var(--ink); background-color: var(--paper-bright); border: 1px solid rgba(16,18,16,.15); border-radius: 8px; outline: 0; appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(16,18,16,.55) 50%), linear-gradient(135deg, rgba(16,18,16,.55) 50%, transparent 50%); background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease; }
.form-field input:hover,.form-field textarea:hover,.form-field select:hover { border-color: rgba(166,125,45,.34); }
.form-field input:focus,.form-field textarea:focus,.form-field select:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(207,173,96,.14); background-color: #fff; }
.contact-whatsapp-button { background: transparent; color: var(--gold-bright); }
.contact-whatsapp-button .cta-arrow { background: var(--gold); color: var(--ink); }
.form-feedback.is-success::before { content: "✓"; display: inline-grid; width: 20px; height: 20px; margin-right: 7px; place-items: center; border-radius: 50%; background: rgba(22,60,36,.1); font-weight: 900; }

/* Subtle 2026 surface effects — static/reduced-motion safe */
.section-dark { position: relative; background-color: var(--ink); background-image: radial-gradient(rgba(255,255,255,.035) .45px, transparent .65px); background-size: 5px 5px; }
.service-card::before { position: absolute; z-index: 0; inset: 0; pointer-events: none; content: ""; opacity: 0; background: radial-gradient(440px circle at var(--spot-x,50%) var(--spot-y,50%), rgba(230,201,126,.16), transparent 48%); transition: opacity .2s ease; }
.service-card.has-spotlight::before { opacity: 1; }
.service-card-media img { transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.service-card:hover .service-card-media img { transform: scale(1.045); }

.ffi-lang-zh { --display: "Noto Serif SC", "Songti SC", serif; --body: "Noto Sans SC", "Microsoft YaHei", sans-serif; }
.ffi-lang-zh .hero h1,.ffi-lang-zh .contact h2 { letter-spacing: -.025em; line-height: 1.05; }

@media (min-width: 560px) {
  .company-info-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .imprint-data-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (min-width: 980px) {
  .company-info { padding: 116px 0 120px; }
  .company-info-shell { grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); align-items: start; gap: 78px; }
  .company-info-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .company-address-card { grid-column: 1 / -1; }
  .imprint-content { padding: 120px 0 142px; }
}

/* 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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 66px 0 22px;
  background: #0d0f0e;
}
.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('assets/images/footer-stone-texture.webp');
  background-position: center 38%;
  background-size: cover;
  opacity: .32;
  content: "";
}
.site-footer::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(8,10,9,.96) 0%, rgba(12,14,13,.88) 50%, rgba(8,10,9,.95) 100%);
  content: "";
}
.footer-grid { display: grid; gap: 34px; }
.footer-brand-block { max-width: 280px; }
.footer-brand { display: block; width: 220px; }
.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-logo { height: 50px; }
  .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-logo { height: 58px; }
  .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); transition: transform .18s ease, box-shadow .18s ease; }
  .header-cta:hover { transform: translateY(-1px); box-shadow: inset 0 -3px 0 rgba(80,55,8,.13), 0 10px 24px rgba(0,0,0,.14); }
  .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-logo { height: 50px; }
  .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: 30px; }
  .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-direct { min-height: 186px; 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 (max-width: 479px) {
  .brand-logo { height: 40px; }
  .contact-direct-actions { align-items: stretch; }
  .contact-direct-button { width: 100%; justify-content: space-between; }
}
@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; }
}


#rolunk, #tevekenysegek, #kapcsolat, #contact-form-panel, #service-content {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

#contact-form-panel {
  scroll-margin-top: max(24px, calc(var(--header-h) + 18px));
}

.footer-brand-block { max-width: 320px; }
.footer-brand { display: block; width: min(100%, 260px); }
.footer-brand img { width: 100%; height: auto; image-rendering: -webkit-optimize-contrast; filter: drop-shadow(0 8px 18px rgba(0,0,0,.18)); }

@media (max-width: 479px) {
  .brand-lockup { padding-left: 0; }
  .brand-logo { height: 38px; max-width: 160px; }
}

/* Imprint — editorial ledger */
.imprint-content { padding: 94px 0 126px; }
.imprint-editorial { display: grid; gap: 56px; }
.imprint-editorial-intro { max-width: 760px; }
.imprint-editorial-intro h2 { margin: 0 0 22px; color: var(--ink); font-size: clamp(2.8rem, 8vw, 5.8rem); line-height: .9; letter-spacing: -.045em; }
.imprint-editorial-intro > p:last-child { max-width: 650px; color: var(--text-muted); line-height: 1.8; }
.imprint-ledger { display: grid; border-top: 1px solid rgba(16,18,16,.18); }
.imprint-ledger-row { display: grid; grid-template-columns: 46px minmax(120px,.55fr) minmax(0,1fr); gap: 18px; align-items: baseline; padding: 24px 0 26px; border-bottom: 1px solid rgba(16,18,16,.15); }
.imprint-ledger-index { color: var(--gold-deep); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.imprint-ledger-row small { color: rgba(16,18,16,.48); font-size: .66rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.imprint-ledger-row strong { color: var(--ink); font-family: var(--body); font-size: clamp(1rem,2.1vw,1.32rem); line-height: 1.45; overflow-wrap: anywhere; }
.imprint-ledger-row > a,.imprint-ledger-row strong a { color: var(--gold-deep); font-weight: 780; text-decoration: underline; text-decoration-color: rgba(164,119,28,.35); text-underline-offset: 4px; }
.imprint-hosting-editorial { max-width: 760px; padding-top: 6px; }
.imprint-hosting-editorial > p:last-child { margin: 0; color: var(--text-muted); line-height: 1.8; white-space: normal; }

@media (min-width: 760px) {
  .editorial-visual-grid { grid-template-columns: 1.16fr .84fr; grid-template-rows: 220px 220px; }
  .visual-property { grid-row: 1 / span 2; }
  .editorial-visual-item { min-height: 0; }
}
@media (min-width: 980px) {
  .editorial-visual { padding-bottom: 118px; }
  .editorial-visual-grid { grid-template-columns: 1.18fr .82fr .82fr; grid-template-rows: 390px; }
  .visual-property { grid-row: auto; }
  .imprint-editorial { grid-template-columns: minmax(260px,.62fr) minmax(0,1.38fr); gap: 86px; align-items: start; }
  .imprint-editorial-intro { position: sticky; top: 120px; }
  .imprint-hosting-editorial { grid-column: 2; }
}
@media (max-width: 759px) {
  .imprint-ledger-row { grid-template-columns: 34px minmax(0,1fr); gap: 10px 14px; }
  .imprint-ledger-row small { grid-column: 2; }
  .imprint-ledger-row strong,.imprint-ledger-row > a { grid-column: 2; }
}


/* v1.5.3 — Imprint + Maps refinement */
.section-dark {
  position: relative;
  background-color: var(--ink);
  background-image: none;
}

.hero,
.imprint-hero,
.service-hero,
.not-found {
  isolation: isolate;
  background-color: #0b0d0c;
}

.hero::before,
.imprint-hero::before,
.service-hero::before,
.not-found::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(115deg, rgba(7,9,8,.92) 0%, rgba(12,14,13,.78) 48%, rgba(7,9,8,.90) 100%),
    url('assets/images/hero-stone-texture.jpg');
  background-position: center;
  background-size: cover;
  opacity: .60;
  content: "";
  pointer-events: none;
}

.hero::before {
  background-image:
    linear-gradient(115deg, rgba(6,7,7,.76) 0%, rgba(9,11,10,.58) 42%, rgba(8,9,9,.78) 100%),
    url('assets/images/hero-h1-texture-v173.png');
  background-position: center;
  background-size: cover;
  opacity: .96;
}

.hero::after,
.imprint-hero::after,
.service-hero::after,
.not-found::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 78% 20%, rgba(207,173,96,.08), transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-grid-lines {
  z-index: 1;
  opacity: .22;
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 88%);
}

.hero-glow {
  z-index: 1;
  background: radial-gradient(circle, rgba(207,173,96,.10), rgba(207,173,96,0) 72%);
}

/* The imprint intro now sits in its own full-width editorial row.
   This eliminates title/data collisions at all desktop widths. */
.imprint-content {
  padding: 92px 0 124px;
}

.imprint-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 52px;
  min-width: 0;
}

.imprint-editorial-intro {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 18px;
  max-width: none;
  min-width: 0;
  position: static;
  top: auto;
}

.imprint-editorial-intro .eyebrow {
  margin-bottom: 0;
}

.imprint-editorial-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .90;
  letter-spacing: -.05em;
  overflow-wrap: normal;
  word-break: normal;
}

.imprint-editorial-intro > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.imprint-ledger {
  display: grid;
  min-width: 0;
  border-top: 1px solid rgba(16,18,16,.18);
}

.imprint-ledger-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px minmax(130px, 190px) minmax(0,1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(16,18,16,.15);
}

.imprint-ledger-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.imprint-ledger-row-wide {
  align-items: start;
}

.imprint-ledger-row-wide .imprint-map-button {
  grid-column: 3;
  justify-self: start;
  margin-top: 10px;
}

.imprint-map-button {
  position: relative;
  z-index: 4;
  display: inline-flex !important;
  min-height: 42px;
  padding: 0 15px;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  background: var(--paper-bright);
  border: 1px solid rgba(16,18,16,.14);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(16,18,16,.08);
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.imprint-map-button:hover {
  transform: translateY(-1px);
  border-color: rgba(166,125,45,.42);
  box-shadow: 0 12px 28px rgba(16,18,16,.12);
}

.imprint-map-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  flex: 0 0 25px;
  color: var(--paper-bright);
  background: var(--gold-deep);
  border-radius: 50%;
}

.imprint-map-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.imprint-map-provider {
  color: var(--gold-deep);
  font-weight: 900;
}

.imprint-hosting-editorial {
  max-width: 760px;
  padding-top: 6px;
}

@media (min-width: 760px) {
  .imprint-editorial-intro {
    grid-template-columns: minmax(0, .95fr) minmax(260px, .55fr);
    column-gap: clamp(44px, 6vw, 90px);
    align-items: end;
  }

  .imprint-editorial-intro .eyebrow {
    grid-column: 1 / -1;
  }

  .imprint-editorial-intro h2 {
    grid-column: 1;
  }

  .imprint-editorial-intro > p:last-child {
    grid-column: 2;
    align-self: end;
    padding-bottom: 8px;
  }
}

@media (min-width: 980px) {
  .imprint-content {
    padding: 118px 0 142px;
  }

  .imprint-editorial {
    gap: 66px;
  }

  .imprint-hosting-editorial {
    max-width: 820px;
  }
}

@media (max-width: 759px) {
  .imprint-ledger-row {
    grid-template-columns: 34px minmax(0,1fr);
    gap: 10px 14px;
    align-items: start;
  }

  .imprint-ledger-row small {
    grid-column: 2;
  }

  .imprint-ledger-row strong,
  .imprint-ledger-row > a {
    grid-column: 2;
  }

  .imprint-ledger-row-wide .imprint-map-button {
    grid-column: 2;
  }
}


/* ==========================================================================
   v1.6.0 — RESPONSIVE CORPORATE PRO
   Mobile-first refinement / navigation / footer / services / forms
   ========================================================================== */

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

img,
picture {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Header stability across narrow devices */
.header-inner {
  width: 100%;
}

.brand-lockup {
  max-width: 100%;
}

.language-menu {
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(230,201,126,.42) transparent;
}

/* Mobile navigation becomes a real language / action sheet */
.mobile-menu {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(10,12,11,.97), rgba(16,18,16,.995)),
    url('assets/images/header-stone-texture.webp') center/cover;
}

.mobile-menu-tools {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mobile-tools-label {
  margin: 0;
  color: rgba(251,250,247,.48);
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.mobile-language-row {
  display: none !important;
}

.mobile-language-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 8px;
}

.mobile-language-grid a {
  display: flex;
  min-width: 0;
  min-height: 52px;
  padding: 8px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(251,250,247,.72);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
}

.mobile-language-grid a span {
  min-width: 0;
  overflow: hidden;
  font-size: .72rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-language-grid a strong {
  color: var(--gold-bright);
  font-size: .68rem;
  letter-spacing: .08em;
}

.mobile-language-grid a[aria-current="page"] {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.mobile-language-grid a[aria-current="page"] strong {
  color: var(--ink);
}

.mobile-contact-cta {
  display: flex;
  min-height: 52px;
  margin-top: 4px;
  padding: 0 12px 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold-bright);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 -3px 0 rgba(80,55,8,.13);
}

.mobile-contact-cta .cta-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
}

/* Service detail now uses the real thematic visual instead of a generic number card */
.service-visual-card {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(230,201,126,.36);
  border-radius: 20px;
  box-shadow: var(--shadow-deep);
}

.service-visual-card picture,
.service-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.service-visual-card img {
  object-fit: cover;
}

.service-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,10,9,.04) 22%, rgba(8,10,9,.76) 100%),
    linear-gradient(90deg, rgba(8,10,9,.16), transparent 45%);
}

.service-visual-card figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: grid;
  gap: 4px;
  color: var(--paper-bright);
  text-shadow: 0 3px 16px rgba(0,0,0,.48);
}

.service-visual-card figcaption span {
  color: var(--gold-bright);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .15em;
}

.service-visual-card figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 8vw, 2.7rem);
  line-height: 1;
}

.service-visual-card figcaption small {
  color: rgba(251,250,247,.62);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Contact / forms: mobile-first usability */
.contact-wrap,
.contact-side,
.contact-form,
.contact-direct,
.contact-copy {
  min-width: 0;
}

.contact-form-grid {
  grid-template-columns: minmax(0,1fr);
}

.contact-form-heading {
  flex-wrap: wrap;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 48px;
  font-size: 16px; /* iOS: prevents unwanted input zoom */
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.consent-row {
  align-items: flex-start;
}

.consent-row input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.contact-direct-actions {
  align-items: stretch;
}

.contact-direct-button {
  max-width: 100%;
}

.contact-direct-title,
.footer-email {
  overflow-wrap: anywhere;
}

/* Footer v2 */
.site-footer {
  padding-top: 0;
}

.footer-masthead {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
  padding-top: 58px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-masthead-copy {
  display: grid;
  gap: 12px;
}

.footer-code {
  color: var(--gold-bright);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-masthead-copy strong {
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(2.8rem, 13vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .84;
}

.footer-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  align-self: end;
  color: rgba(251,250,247,.58);
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-grid-pro {
  padding-top: 42px;
}

.footer-cookie-button {
  appearance: none;
  padding: 0;
  color: rgba(251,250,247,.55);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--gold-bright);
}

.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
}

/* Imprint final responsive safeguards */
.imprint-editorial,
.imprint-editorial-intro,
.imprint-ledger,
.imprint-ledger-row {
  max-width: 100%;
}

.imprint-map-button {
  max-width: 100%;
  flex-wrap: wrap;
}

/* High-impact responsive corrections */
@media (max-width: 559px) {
  :root {
    --gutter: 18px;
    --header-h: 70px;
  }

  .site-header {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .header-inner {
    gap: 7px;
  }

  .brand-logo {
    height: 34px;
    max-width: 136px;
  }

  .language-current {
    min-width: 48px;
    min-height: 42px;
    padding: 0 9px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    inset: var(--header-h) 0 0;
    padding-top: 18px;
  }

  .mobile-menu nav a {
    min-height: 58px;
    font-size: clamp(1.45rem, 8.2vw, 2rem);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    gap: 42px;
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(3.35rem, 16.8vw, 4.8rem);
    line-height: .87;
  }

  .hero-lead {
    font-size: .96rem;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 9px;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .hero-pillar {
    min-height: 48px;
  }

  .city-photo-panel {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .city-photo-meta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .city-photo-location {
    max-width: 62%;
    font-size: .58rem;
  }

  .city-photo-founded strong {
    font-size: 1.2rem;
  }

  .intro,
  .facts,
  .services,
  .contact,
  .principles {
    padding-left: 0;
    padding-right: 0;
  }

  .intro {
    padding-top: 78px;
  }

  .intro-content h2,
  .services h2,
  .facts h2,
  .principles h2,
  .contact h2,
  .service-content h2,
  .related-services h2 {
    font-size: clamp(2.25rem, 12.2vw, 3.25rem);
  }

  .facts-grid article {
    min-height: 126px;
    padding: 18px;
  }

  .fact-index {
    margin-bottom: 22px;
  }

  .service-card {
    min-height: 0;
    padding: 18px;
  }

  .service-card-media {
    aspect-ratio: 16 / 10;
    margin-top: 14px;
    border-radius: 14px;
  }

  .service-card-body {
    margin-top: 22px;
  }

  .contact {
    padding-top: 82px;
    padding-bottom: 92px;
  }

  .contact-wrap {
    gap: 30px;
    padding: 20px;
    border-radius: 20px;
  }

  .contact-direct,
  .contact-form {
    padding: 18px;
    border-radius: 15px;
  }

  .contact-direct-actions {
    display: grid;
    grid-template-columns: minmax(0,1fr);
  }

  .contact-direct-button {
    width: 100%;
    justify-content: space-between;
  }

  .contact-form-heading {
    align-items: flex-start;
  }

  .contact-form-required {
    width: 100%;
  }

  .form-submit {
    min-height: 52px;
  }

  .service-hero {
    padding: 56px 0 70px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
    flex-wrap: wrap;
  }

  .service-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  .service-visual-card {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .service-content {
    padding-top: 76px;
  }

  .service-fact-panel {
    margin-top: 28px;
    padding: 18px;
  }

  .related-card {
    padding: 20px;
  }

  .footer-masthead {
    padding-top: 46px;
    padding-bottom: 32px;
  }

  .footer-masthead-copy strong {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .footer-grid-pro {
    gap: 30px;
    padding-top: 32px;
  }

  .footer-brand {
    width: min(100%, 220px);
  }

  .footer-bottom {
    gap: 10px;
    margin-top: 34px;
  }

  .imprint-content {
    padding: 72px 0 96px;
  }

  .imprint-editorial {
    gap: 40px;
  }

  .imprint-editorial-intro h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .imprint-ledger-row {
    padding: 20px 0 22px;
  }

  .imprint-map-button {
    width: 100%;
    justify-content: flex-start;
  }

  .imprint-map-provider {
    margin-left: auto;
  }
}

/* Compact phones / 320–360 px */
@media (max-width: 359px) {
  :root {
    --gutter: 14px;
  }

  .brand-logo {
    height: 31px;
    max-width: 118px;
  }

  .language-current {
    min-width: 44px;
    padding: 0 7px;
  }

  .mobile-language-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 3.65rem);
  }

  .contact-wrap {
    padding: 16px;
  }

  .contact-direct,
  .contact-form {
    padding: 15px;
  }
}

/* Tablet portrait / large mobile */
@media (min-width: 560px) and (max-width: 759px) {
  .mobile-language-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .hero-inner {
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 13.5vw, 6.2rem);
  }

  .city-photo-panel {
    max-width: 580px;
    margin-inline: auto;
    aspect-ratio: 16 / 11;
  }

  .contact-wrap {
    padding: 34px;
  }

  .service-visual-card {
    max-width: 620px;
  }

  .footer-masthead {
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* 2-column form starts only when it is actually comfortable */
@media (min-width: 680px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .form-field-full {
    grid-column: 1 / -1;
  }
}

/* Tablet / small laptop */
@media (min-width: 760px) and (max-width: 979px) {
  .hero-inner {
    grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 9vw, 6rem);
  }

  .city-photo-panel {
    aspect-ratio: 4 / 5;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .service-grid .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-hero-inner {
    grid-template-columns: minmax(0,1fr) minmax(300px,.74fr);
    gap: 38px;
    align-items: center;
  }

  .service-visual-card {
    aspect-ratio: 4 / 5;
  }

  .contact-wrap {
    gap: 44px;
  }

  .footer-masthead {
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
  }

  .footer-grid-pro {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* Desktop corporate layout */
@media (min-width: 980px) {
  .service-hero-inner {
    grid-template-columns: minmax(0,1fr) minmax(330px, 390px);
    align-items: center;
  }

  .service-visual-card {
    aspect-ratio: 4 / 5;
  }

  .footer-masthead {
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
    padding-top: 72px;
    padding-bottom: 52px;
  }

  .footer-signature {
    justify-content: flex-end;
  }

  .footer-grid-pro {
    grid-template-columns: 1.25fr .72fr 1fr .72fr;
    gap: 52px;
    padding-top: 50px;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* Ultrawide control */
@media (min-width: 1600px) {
  :root {
    --container: 1320px;
  }

  .hero-inner {
    grid-template-columns: minmax(0,1.05fr) minmax(500px,.82fr);
    gap: 110px;
  }

  .city-photo-panel {
    max-width: 610px;
  }

  .contact-wrap {
    gap: 90px;
  }
}

/* Touch devices: no hover-only layout movement */
@media (hover: none), (pointer: coarse) {
  .service-card:hover,
  .related-card:hover,
  .header-cta:hover,
  .imprint-map-button:hover {
    transform: none;
  }

  .service-card::before {
    display: none;
  }
}

/* Accessibility */
@media (prefers-contrast: more) {
  .section-dark,
  .site-footer,
  .site-header {
    --line-dark: rgba(255,255,255,.28);
  }

  .eyebrow,
  .footer-column,
  .footer-signature,
  .service-lead {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-visual-card img,
  .service-card-media img {
    transform: none !important;
  }
}


/* ==========================================================================
   v1.6.1 — IMPRINT + HEADER CLEANUP PRO
   ========================================================================== */

/* Desktop header no longer reserves a column for the removed gold CTA. */
@media (min-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
}

/* The old header CTA is intentionally removed from the interface. */
.header-cta,
.mobile-contact-cta {
  display: none !important;
}

/* Imprint structural reset: title and company data can no longer overlap. */
.imprint-page-shell {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: clamp(44px, 7vw, 82px);
  min-width: 0;
}

.imprint-title-block {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 18px;
  min-width: 0;
  max-width: 860px;
}

.imprint-title-block .eyebrow {
  margin: 0 0 4px;
}

.imprint-title-block h2 {
  margin: 0;
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 6.25rem);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.055em;
  overflow: visible;
  word-break: normal;
}

.imprint-title-block > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.8;
}

.imprint-ledger-pro {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.imprint-ledger-pro .imprint-ledger-row {
  grid-template-columns: 44px minmax(150px, 220px) minmax(0,1fr);
  gap: 18px 24px;
}

.imprint-hosting-editorial {
  margin: 0;
  max-width: 820px;
}

/* Kill previous two-column imprint layout regardless of older rules. */
.imprint-editorial {
  display: contents !important;
}

.imprint-editorial-intro {
  display: contents !important;
}

@media (min-width: 980px) {
  .imprint-content {
    padding-top: 108px;
  }

  .imprint-page-shell {
    gap: 70px;
  }

  .imprint-title-block {
    max-width: 940px;
  }

  .imprint-title-block h2 {
    font-size: clamp(4.7rem, 7.1vw, 6.7rem);
  }
}

@media (max-width: 759px) {
  .imprint-page-shell {
    gap: 38px;
  }

  .imprint-title-block h2 {
    max-width: 9ch;
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: .9;
  }

  .imprint-ledger-pro .imprint-ledger-row {
    grid-template-columns: 34px minmax(0,1fr);
    gap: 9px 14px;
  }

  .imprint-ledger-pro .imprint-ledger-row small,
  .imprint-ledger-pro .imprint-ledger-row strong,
  .imprint-ledger-pro .imprint-ledger-row > a,
  .imprint-ledger-pro .imprint-map-button {
    grid-column: 2;
  }

  .imprint-map-button {
    width: 100%;
    justify-content: flex-start;
  }

  .imprint-map-provider {
    margin-left: auto;
  }
}


/* ==========================================================================
   v1.7.0 — PROJECTS + SERVICES + SEO PRO
   ========================================================================== */

/* One strong editorial visual instead of redundant image-card rows */
.corporate-presence {
  padding: 16px 0 86px;
}

.corporate-presence-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 5.8;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(16,18,16,.12);
}

.corporate-presence-figure picture,
.corporate-presence-figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.corporate-presence-figure img {
  object-fit: cover;
  object-position: center 44%;
}

.corporate-presence-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,12,11,.68) 0%, rgba(10,12,11,.12) 54%, rgba(10,12,11,.4) 100%),
    linear-gradient(180deg, transparent 42%, rgba(10,12,11,.52) 100%);
}

.corporate-presence-figure figcaption {
  position: absolute;
  inset: auto 30px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 28px;
  align-items: end;
  color: var(--paper-bright);
}

.corporate-presence-figure figcaption > span {
  color: var(--gold-bright);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.corporate-presence-figure figcaption strong {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.corporate-presence-figure figcaption small {
  color: rgba(251,250,247,.68);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Selected Projects — hidden automatically if no real projects are configured */
.selected-projects {
  padding: 48px 0 110px;
}

.selected-projects-grid {
  display: grid;
  gap: 18px;
}

.selected-project {
  position: relative;
  display: block;
  min-width: 0;
  color: var(--paper-bright);
  background: var(--ink);
  border: 1px solid rgba(16,18,16,.1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16,18,16,.12);
}

.selected-project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.selected-project-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.75,.25,1);
}

.selected-project-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(7,9,8,.66) 100%);
}

.selected-project-meta {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.selected-project-meta > span {
  color: var(--gold-bright);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.selected-project-meta h3 {
  margin: 0;
  color: var(--paper-bright);
  font-size: clamp(1.8rem, 6vw, 2.7rem);
  line-height: .98;
}

.selected-project-meta p {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin: 0;
  color: rgba(251,250,247,.58);
  font-size: .78rem;
}

.selected-project:hover .selected-project-image img {
  transform: scale(1.025);
}

/* Related service cards now carry a real thematic image */
.related-card-visual {
  padding: 0;
  overflow: hidden;
}

.related-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.related-card-image picture,
.related-card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.related-card-image img {
  object-fit: cover;
  transition: transform .4s ease;
}

.related-card-image > span {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,18,16,.02), rgba(16,18,16,.28));
}

.related-card-copy {
  padding: 24px;
}

.related-card-visual:hover .related-card-image img {
  transform: scale(1.025);
}

/* Better service detail hierarchy */
.service-content-main {
  min-width: 0;
}

.service-body-copy {
  max-width: 760px;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.85;
}

.service-fact-panel {
  display: grid;
  gap: 0;
  margin-top: 38px;
  overflow: hidden;
}

.service-fact-row {
  min-height: 56px;
  padding: 14px 0;
  align-items: center;
}

/* Footer final polish */
.footer-masthead-copy strong {
  text-wrap: balance;
}

.footer-grid-pro {
  align-items: start;
}

.footer-column a,
.footer-column span,
.footer-cookie-button {
  line-height: 1.55;
}

/* Mobile refinements */
@media (max-width: 759px) {
  .corporate-presence {
    padding: 0 0 70px;
  }

  .corporate-presence-figure {
    aspect-ratio: 4 / 3.3;
    border-radius: 18px;
  }

  .corporate-presence-figure figcaption {
    inset: auto 18px 18px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .corporate-presence-figure figcaption strong {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .corporate-presence-figure figcaption small {
    justify-self: start;
  }

  .selected-projects {
    padding: 24px 0 86px;
  }

  .selected-projects-grid {
    grid-template-columns: 1fr;
  }

  .selected-project {
    border-radius: 17px;
  }

  .selected-project-meta {
    padding: 18px;
  }

  .related-card-copy {
    padding: 20px;
  }
}

@media (min-width: 760px) {
  .selected-projects-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .selected-projects-grid > :first-child:nth-last-child(3) {
    grid-row: span 2;
  }

  .selected-projects-grid > :first-child:nth-last-child(3) .selected-project-image {
    aspect-ratio: 4 / 5;
  }

  .selected-projects-grid > :first-child:nth-last-child(3) {
    grid-row: span 2;
  }
}

@media (min-width: 1100px) {
  .selected-projects-grid {
    grid-template-columns: 1.35fr .825fr .825fr;
  }

  .selected-projects-grid > :first-child:nth-last-child(3) {
    grid-row: auto;
  }

  .selected-projects-grid > :first-child:nth-last-child(3) .selected-project-image {
    aspect-ratio: 16 / 12.5;
  }

  .selected-project-image {
    aspect-ratio: 16 / 12.5;
  }
}

@media (hover: none), (pointer: coarse) {
  .selected-project:hover .selected-project-image img,
  .related-card-visual:hover .related-card-image img {
    transform: none;
  }
}


/* ==========================================================================
   v1.7.1 — HERO VIDEO + HEADER ALIGN PRO
   ========================================================================== */

/* The header uses exactly the same container line as the hero H1.
   This overrides the earlier width:100% header rule. */
.site-header .header-inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.hero-video-art {
  min-width: 0;
}

.hero-video-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080a09;
  border: 1px solid rgba(229,193,101,.68);
  border-radius: 3px;
  box-shadow:
    0 34px 80px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.025) inset,
    0 0 54px rgba(207,173,96,.055);
  isolation: isolate;
}

.hero-video-panel::before {
  position: absolute;
  inset: 10px;
  z-index: 8;
  border: 1px solid rgba(229,193,101,.11);
  content: "";
  pointer-events: none;
}

.hero-video-panel::after {
  position: absolute;
  inset: 0;
  z-index: 9;
  background:
    linear-gradient(90deg, rgba(230,201,126,.34), transparent 11%) top left / 74px 1px no-repeat,
    linear-gradient(180deg, rgba(230,201,126,.34), transparent 13%) top left / 1px 74px no-repeat,
    linear-gradient(270deg, rgba(230,201,126,.34), transparent 11%) bottom right / 74px 1px no-repeat,
    linear-gradient(0deg, rgba(230,201,126,.34), transparent 13%) bottom right / 1px 74px no-repeat;
  content: "";
  pointer-events: none;
}

.hero-video-poster,
.hero-video-player,
.hero-video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity .65s ease;
}

.hero-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-player {
  z-index: 1;
  overflow: hidden;
  background: #080a09;
}

.hero-video-iframe {
  display: block;
  border: 0;
  pointer-events: none;
  transform: scale(1.012);
  transform-origin: center;
}

.hero-video-panel.is-video-ready .hero-video-poster {
  opacity: 0;
}

.hero-video-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(5,6,6,.16) 0%, transparent 28%, transparent 60%, rgba(5,6,6,.64) 100%),
    linear-gradient(90deg, rgba(5,6,6,.18), transparent 28%, transparent 72%, rgba(5,6,6,.14));
  pointer-events: none;
}

.hero-video-scanline {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: .07;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,.05) 0,
    rgba(255,255,255,.05) 1px,
    transparent 1px,
    transparent 4px
  );
  pointer-events: none;
}

.hero-video-badge {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  display: grid;
  gap: 3px;
  text-align: right;
  text-shadow: 0 2px 14px rgba(0,0,0,.7);
}

.hero-video-badge span {
  color: var(--gold-bright);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero-video-badge small {
  color: rgba(251,250,247,.74);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.hero-video-footer {
  position: absolute;
  z-index: 10;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  color: var(--paper-bright);
}

.hero-video-location {
  display: flex;
  gap: 9px;
  align-items: center;
  min-width: 0;
  font-size: .62rem;
  font-weight: 840;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,.72);
}

.hero-video-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--gold-bright);
  border: 2px solid rgba(16,18,16,.82);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(230,201,126,.72), 0 0 18px rgba(230,201,126,.34);
}

.hero-video-mark {
  display: grid;
  gap: 3px;
  text-align: right;
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}

.hero-video-mark span {
  color: rgba(251,250,247,.64);
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.hero-video-mark strong {
  color: var(--gold-bright);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-video-art .orbit-one {
  width: 74%;
  aspect-ratio: 1;
  right: -19%;
  top: -20%;
}

.hero-video-art .orbit-two {
  width: 52%;
  aspect-ratio: 1;
  right: -10%;
  top: -4%;
}

.hero-video-art .art-corner.top-left {
  top: 13%;
  left: -24px;
}

.hero-video-art .art-corner.bottom-right {
  right: -24px;
  bottom: 11%;
}

/* About section gets the supplied Fisherman's Bastion view.
   Its size is intentionally restrained because the source is 612px wide. */
.corporate-presence {
  padding-top: 10px;
  padding-bottom: 94px;
}

.corporate-presence-grid {
  display: grid;
  grid-template-columns: 20% minmax(0,1fr);
  gap: 6%;
}

.corporate-presence-figure {
  grid-column: 2;
  width: min(100%, 760px);
  margin: 0;
  aspect-ratio: 3 / 2;
  justify-self: start;
  border-radius: 20px;
}

.corporate-presence-figure img {
  object-position: center;
}

@media (max-width: 759px) {
  .hero-video-art {
    width: 100%;
  }

  .hero-video-panel {
    aspect-ratio: 16 / 10;
    border-radius: 2px;
  }

  .hero-video-panel::before {
    inset: 7px;
  }

  .hero-video-badge {
    top: 15px;
    right: 15px;
  }

  .hero-video-footer {
    left: 15px;
    right: 15px;
    bottom: 14px;
  }

  .hero-video-location {
    max-width: 70%;
    font-size: .56rem;
  }

  .hero-video-mark strong {
    font-size: 1.05rem;
  }

  .corporate-presence {
    padding-top: 0;
    padding-bottom: 70px;
  }

  .corporate-presence-grid {
    grid-template-columns: 1fr;
  }

  .corporate-presence-spacer {
    display: none;
  }

  .corporate-presence-figure {
    grid-column: 1;
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
  }

  .corporate-presence-figure figcaption {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  .hero-video-panel {
    width: min(100%, 650px);
    margin-left: auto;
  }

  .hero-video-art {
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-player {
    display: none !important;
  }

  .hero-video-poster {
    opacity: 1 !important;
  }

  .hero-video-scanline {
    display: none;
  }
}

/* ========================================================================== 
   v1.7.2 — NATIVE HERO VIDEO + LUXURY EDITORIAL REFINEMENT
   ========================================================================== */

/* Header brand sits on the same visual line as the hero copy and no longer feels glued to the viewport edge. */
.site-header .header-inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

.brand-lockup {
  margin-left: clamp(4px, .8vw, 12px);
}

.brand-logo {
  height: clamp(42px, 4vw, 52px);
  max-width: min(34vw, 220px);
}

/* Replace the YouTube-like gadget look with a calmer editorial video panel. */
.hero-video-art .art-orbit,
.hero-video-art .art-corner,
.hero-video-scanline {
  display: none !important;
}

.hero-video-panel {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 24%),
    #060707;
  border: 1px solid rgba(230,201,126,.34);
  border-radius: 24px;
  box-shadow:
    0 42px 100px rgba(0,0,0,.42),
    0 2px 0 rgba(255,255,255,.03) inset,
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.hero-video-panel::before {
  inset: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}

.hero-video-panel::after {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 12%) top / 100% 100% no-repeat,
    linear-gradient(180deg, transparent 70%, rgba(5,6,6,.56) 100%);
  opacity: 1;
}

.hero-video-poster,
.hero-video-player,
.hero-video-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video-player {
  z-index: 1;
  background: #060707;
}

.hero-video-native {
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-video-panel.is-video-ready .hero-video-poster {
  opacity: 0;
}

.hero-video-vignette {
  z-index: 3;
  background:
    radial-gradient(circle at 50% 48%, transparent 30%, rgba(5,6,6,.18) 74%, rgba(5,6,6,.38) 100%),
    linear-gradient(180deg, rgba(8,9,9,.10), transparent 24%, transparent 64%, rgba(8,9,9,.62) 100%),
    linear-gradient(90deg, rgba(8,9,9,.14), transparent 26%, transparent 74%, rgba(8,9,9,.16));
}

.hero-video-badge {
  top: 24px;
  right: 24px;
  gap: 4px;
  padding: 10px 12px 9px;
  background: rgba(8,9,9,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-video-footer {
  left: 24px;
  right: 24px;
  bottom: 22px;
  align-items: center;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(10,11,11,.12), rgba(10,11,11,.36));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-video-mark {
  gap: 2px;
}

.hero-video-mark span {
  color: rgba(251,250,247,.68);
}

.hero-video-mark strong {
  font-size: 1.1rem;
}

@media (min-width: 980px) {
  .hero-video-panel {
    width: min(100%, 668px);
    margin-left: auto;
  }
}

@media (max-width: 759px) {
  .brand-lockup {
    margin-left: 0;
  }

  .hero-video-panel {
    border-radius: 18px;
    aspect-ratio: 16 / 10;
  }

  .hero-video-panel::before {
    inset: 10px;
    border-radius: 12px;
  }

  .hero-video-badge {
    top: 16px;
    right: 16px;
    padding: 8px 10px;
  }

  .hero-video-footer {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
    gap: 12px;
  }

  .hero-video-location {
    max-width: 68%;
  }
}

/* Hard reset for the imprint composition so the company title can never overlap the ledger again. */
.imprint-page-shell {
  display: block !important;
}

.imprint-title-block {
  display: block !important;
  max-width: 760px !important;
  margin-bottom: clamp(34px, 5vw, 56px) !important;
}

.imprint-title-block h2 {
  display: block;
  max-width: 6.2ch !important;
  font-size: clamp(3.1rem, 6.6vw, 5.65rem) !important;
  line-height: .88 !important;
  letter-spacing: -.05em;
  margin: 0 0 24px !important;
}

.imprint-title-block > p:last-child {
  max-width: 420px !important;
}

.imprint-ledger-pro {
  width: 100% !important;
  clear: both;
}

.imprint-ledger-pro .imprint-ledger-row {
  grid-template-columns: 48px minmax(170px, 220px) minmax(0, 1fr) !important;
  align-items: center !important;
}

.imprint-ledger-pro .imprint-ledger-row strong {
  min-width: 0;
}

.imprint-map-button {
  align-self: start;
}

@media (max-width: 959px) {
  .imprint-title-block h2 {
    max-width: 7ch !important;
    font-size: clamp(2.8rem, 11vw, 4.2rem) !important;
  }
}
