:root {
  --navy: #14212b;
  --navy-2: #1c2d39;
  --ink: #1b2227;
  --muted: #6c747a;
  --paper: #f4f1ea;
  --white: #ffffff;
  --line: #d7d2c8;
  --accent: #b49668;
  --accent-dark: #846d49;
  --content: 1240px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(244, 241, 234, .94);
  border-bottom: 1px solid rgba(20, 33, 43, .11);
  backdrop-filter: blur(12px);
}

.header-inner,
.section,
.section-head,
.statement-inner,
.site-footer {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--navy);
  color: var(--navy);
  font: 600 16px/1 Georgia, "Times New Roman", serif;
  letter-spacing: -.04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong,
.footer-brand strong {
  color: var(--navy);
  font: 400 21px/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.brand-text strong i,
.footer-brand strong i {
  color: var(--accent-dark);
  font-style: normal;
}

.brand-text small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .045em;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--navy);
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  background:
    linear-gradient(90deg, rgba(20, 33, 43, .035) 1px, transparent 1px),
    linear-gradient(rgba(20, 33, 43, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.hero-grid {
  width: min(calc(100% - 48px), var(--content));
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  padding-block: 72px;
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.section-head h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6.3vw, 88px);
  line-height: .98;
}

.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: #485159;
  font: 400 clamp(19px, 2vw, 25px)/1.55 Georgia, "Times New Roman", serif;
}

.hero-lead span {
  color: var(--accent-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .035em;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-secondary {
  border-color: #9a9994;
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--navy);
}

.hero-meta {
  max-width: 760px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-meta > div {
  min-height: 66px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  color: var(--navy);
  font: 400 18px/1.3 Georgia, "Times New Roman", serif;
}

.hero-meta span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.hero-panel {
  position: relative;
  aspect-ratio: .82;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 4vw, 54px);
  background: var(--navy);
  color: var(--white);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-panel::before {
  inset: 28px;
  border: 1px solid rgba(180, 150, 104, .55);
}

.hero-panel::after {
  width: 260px;
  height: 260px;
  top: -70px;
  right: -80px;
  border: 1px solid rgba(255,255,255,.12);
  transform: rotate(45deg);
}

.hero-symbol {
  position: absolute;
  top: 30px;
  right: 50px;
  color: rgba(255,255,255,.06);
  font: 400 clamp(210px, 26vw, 380px)/1 Georgia, "Times New Roman", serif;
}

.hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 34px,
    rgba(255,255,255,.022) 34px 35px
  );
}

.hero-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 360px;
  font: 400 clamp(28px, 3vw, 41px)/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}

.hero-panel p span {
  color: var(--accent);
}

.section {
  padding-block: clamp(90px, 11vw, 150px);
}

.section-light {
  background: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 8vw, 120px);
}

.section h2,
.section-head h2,
.contact-section h2 {
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.02;
}

.intro-copy {
  max-width: 720px;
}

.intro-copy p {
  margin: 0 0 22px;
  color: #4e555a;
}

.intro-copy .large {
  color: var(--navy);
  font: 400 clamp(23px, 2.7vw, 32px)/1.45 Georgia, "Times New Roman", serif;
}

.section-dark {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--content)) / 2));
  background: var(--navy);
  color: rgba(255,255,255,.74);
}

.section-dark .section-head {
  width: 100%;
  max-width: var(--content);
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.section-dark h2 {
  color: var(--white);
}

.section-label-light {
  color: var(--accent);
}

.section-head > p {
  margin: 0 0 8px;
  max-width: 500px;
  color: inherit;
}

.competence-grid {
  max-width: var(--content);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 25%);
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.competence-card {
  min-height: 390px;
  padding: 34px 28px;
  border-left: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
}

.competence-card:first-child {
  border-left: 0;
}

.card-number {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
}

.competence-card h3 {
  margin: 40px 0 20px;
  color: var(--white);
  font: 400 31px/1.1 Georgia, "Times New Roman", serif;
}

.competence-card p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
}

.card-person {
  margin-top: auto;
  padding-top: 34px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  line-height: 1.5;
}

.people-head {
  grid-template-columns: 1fr;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.person-card {
  min-height: 240px;
  background: var(--white);
  border: 1px solid #dedad2;
  display: flex;
  flex-direction: column;
}



.person-content {
  padding: 28px 30px 34px;
}

.person-role {
  margin: 0 0 9px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.person-card h3 {
  margin: 0;
  color: var(--navy);
  font: 400 29px/1.2 Georgia, "Times New Roman", serif;
}

.person-rule {
  width: 42px;
  height: 1px;
  margin: 20px 0;
  background: var(--accent);
}

.person-card p,
.person-card li {
  color: #555d62;
  font-size: 14px;
}

.person-card ul {
  margin: 0;
  padding-left: 18px;
}

.person-card li + li {
  margin-top: 7px;
}

.statement {
  background: #e7e1d6;
  border-top: 1px solid #d7d0c5;
  border-bottom: 1px solid #d7d0c5;
}

.statement-inner {
  min-height: 360px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 36px;
}

.statement-mark {
  color: var(--accent-dark);
  font: 400 120px/1 Georgia, "Times New Roman", serif;
  transform: translateY(-10px);
}

.statement p {
  max-width: 950px;
  margin: 0;
  color: var(--navy);
  font: 400 clamp(30px, 4.6vw, 58px)/1.18 Georgia, "Times New Roman", serif;
  letter-spacing: -.03em;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.contact-intro {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-box {
  padding: clamp(32px, 5vw, 54px);
  background: var(--navy);
  color: var(--white);
}

.contact-item {
  padding: 21px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address,
.contact-value {
  color: var(--white);
  font: 400 20px/1.45 Georgia, "Times New Roman", serif;
  font-style: normal;
}

.contact-value {
  display: block;
}

.contact-item a:hover {
  color: var(--accent);
}
.kontakt-slogan {padding-left: 2rem;}
.btn-full {
  width: 100%;
  margin-top: 30px;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

.btn-full:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

.site-footer {
  padding-block: 54px 28px;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
}

.footer-brand span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a,
.footer-bottom {
  color: #61686d;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--accent-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 82px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr .72fr;
    gap: 45px;
  }

  .hero-panel {
    min-height: 460px;
  }

  .competence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .competence-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .competence-card:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.18);
  }
}

@media (max-width: 820px) {
  .header-inner,
  .section,
  .section-head,
  .statement-inner,
  .site-footer,
  .hero-grid {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    height: 76px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    padding: 10px 4px 10px 10px;
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    width: 26px;
    height: 1px;
    background: var(--navy);
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle span:nth-child(2) {
    width: 20px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    width: 26px;
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 16px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(20,33,43,.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a:not(.nav-cta) {
    display: block;
  }

  .main-nav a {
    padding: 13px 8px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 62px;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 70px);
  }

  .hero-panel {
    aspect-ratio: 1.25;
    min-height: 350px;
  }

  .section-grid,
  .section-head,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-head {
    align-items: start;
  }

  .people-grid {
    grid-template-columns: 1fr;
  }

  .person-card {
    min-height: 0;
    display: grid;
    grid-template-columns: .42fr .58fr;
  }

  .person-monogram {
    min-height: 100%;
  }

  .statement-inner {
    min-height: 300px;
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .statement-mark {
    font-size: 84px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-text strong {
    font-size: 14px;
  }

  .hero-grid,
  .section,
  .section-head,
  .statement-inner,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero-grid {
    padding-block: 46px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta > div,
  .hero-meta > div:first-child {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-meta > div:last-child {
    border-bottom: 0;
  }

  .hero-panel {
    min-height: 310px;
  }

  .section {
    padding-block: 76px;
  }

  .section-dark {
    width: 100%;
    padding-inline: 14px;
  }

  .competence-grid {
    grid-template-columns: 1fr;
  }

  .competence-card {
    min-height: 310px;
    border-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,.18);
  }

  .competence-card:first-child {
    border-top: 0;
  }

  .person-card {
    display: block;
  }

  .person-monogram {
    min-height: 170px;
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 60px;
  }

  .statement-mark {
    height: 65px;
  }

  .statement p {
    font-size: 31px;
  }

  .contact-box {
    padding: 28px 22px;
  }

  .contact-item a,
  .contact-item address {
    font-size: 18px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
