/* LINKA foundations. Brand colours and locally hosted brand typography. */
:root {
  --navy: #0B2D63; --gold: #C89A2B; --slate: #5B667A; --ink: #2F3745;
  --white: #fff; --line: #E7EAF0; --paper: #F7F8FA; --light-gold: #F6F0E3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --ui: 'Montserrat', Arial, sans-serif;
  --body: 'Open Sans', Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 106px; }
body.linka-site { margin: 0; background: var(--white); color: var(--ink); font: 400 15px/1.85 var(--body); -webkit-font-smoothing: antialiased; }
body.linka-site h1, body.linka-site h2, body.linka-site h3 { margin: 0; color: var(--navy); }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { font-family: var(--ui); font-weight: 600; letter-spacing: -.045em; line-height: 1.17; }
h1 em, h2 em { font-family: var(--serif); font-weight: 500; font-size: 1.14em; }
h2 { font-size: clamp(32px, 3.65vw, 48px); }
h3 { font: 600 17px/1.5 var(--ui); letter-spacing: -.025em; }
p { margin: 0 0 20px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--navy); outline-offset: 5px; }
img { display: block; max-width: 100%; }
figure { margin: 0; }
.icon { display: inline-block; flex-shrink: 0; vertical-align: middle; }
.container { width: min(1280px, 100%); margin-inline: auto; padding-inline: 56px; }
.section { padding-block: 100px; }
.eyebrow { display: flex; align-items: center; gap: 13px; font: 600 10px/1.7 var(--ui); letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; }
.gold-rule { width: 30px; height: 2px; display: inline-block; flex-shrink: 0; background: var(--gold); }
.small-label { font: 500 9px/1.6 var(--ui); letter-spacing: .1em; text-transform: uppercase; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 26px; min-height: 55px; padding: 16px 25px; background: var(--navy); border: 1px solid var(--navy); border-radius: 3px; color: white; font: 600 12px/1.5 var(--ui); cursor: pointer; transition: background .2s, transform .2s; }
.button .icon { width: 19px; height: 19px; }
.button:hover { background: #16457D; transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: 24px; min-height: 44px; border-bottom: 1px solid var(--gold); color: var(--navy); font: 600 11px/1.6 var(--ui); }
.text-link .icon { width: 19px; height: 19px; transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }
.skip-link { position: fixed; top: -100px; left: 16px; background: var(--navy); color: white; padding: 14px; z-index: 1000; }
.skip-link:focus { top: 12px; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 64px; margin-bottom: 46px; }
.section-heading > div { flex: 1 1 55%; }
.section-heading > p { flex: 1 1 38%; max-width: 380px; margin: 0 0 5px; color: var(--slate); font-size: 14px; line-height: 1.9; }

/* Navigation */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 28px; }
.brand { display: block; width: 210px; flex-shrink: 0; }
.brand img { width: 210px; height: 84px; object-fit: contain; }
#main-nav { display: flex; align-items: center; gap: 28px; }
#main-nav > a:not(.button) { font: 500 12px/1.6 var(--ui); min-height: 44px; display: flex; align-items: center; color: var(--navy); position: relative; }
#main-nav > a:not(.button)::after { content: ''; position: absolute; left: 0; bottom: 5px; width: 0; height: 2px; background: var(--gold); transition: width .2s; }
#main-nav > a:hover::after, #main-nav > a[aria-current="location"]::after { width: 22px; }
.nav-cta { min-height: 46px; padding: 12px 19px; font-size: 11px; }
.language-switcher { display: inline-flex; align-items: center; gap: 8px; margin-left: 2px; color: var(--slate); font: 600 10px/1.6 var(--ui); letter-spacing: .05em; }
.language-switcher > span { color: #B7BFCC; }
.language-link { min-height: 32px; display: inline-flex; align-items: center; color: var(--slate); transition: color .2s; }
.language-link:hover, .language-link.is-active { color: var(--navy); }
.language-link.is-active { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.menu-toggle { display: none; }

/* Form */
.form-panel { background: white; padding: 38px; border: 1px solid var(--line); border-top: 3px solid var(--gold); box-shadow: 0 18px 60px #0b2d6308; }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-heading h3 { font-size: 21px; margin: 0 0 7px !important; }
.form-heading p { font-size: 12px; color: var(--slate); margin: 0; }
.form-heading > .icon { width: 34px; height: 34px; color: var(--gold); }
.form-intro { font-size: 11px; color: var(--slate); margin: 24px 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 21px; min-width: 0; }
.field label { display: block; font: 600 10px/1.7 var(--ui); color: var(--navy); margin-bottom: 9px; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #C8CFDA; background: #FCFCFD; border-radius: 2px; color: var(--ink); padding: 12px 13px; font-size: 13px; min-height: 48px; }
.field textarea { resize: vertical; min-height: 144px; line-height: 1.8; }
.field input::placeholder, .field textarea::placeholder { color: #6B7584; opacity: 1; }
.field input:focus, .field select:focus, .field textarea:focus { background: white; border-color: var(--navy); }
.form-help { display: flex; gap: 8px; align-items: flex-start; font-size: 10px; color: var(--slate); margin-top: -3px; }
.form-help .icon { width: 15px; height: 15px; margin-top: 2px; }
.submit-button { width: 100%; justify-content: space-between; }
.local-notice { font-size: 10px; color: var(--slate); line-height: 1.8; margin: 15px 0 0; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-left: 3px solid var(--gold); background: var(--paper); font-size: 13px; padding: 16px; margin-bottom: 20px; }

/* Footer */
.site-footer { background: var(--navy); color: white; }
.footer-main { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding-block: 46px; }
.footer-brand { width: 210px; flex-shrink: 0; }
.footer-brand img { width: 210px; height: 100px; object-fit: contain; }
.footer-main > p { font: 500 34px/1.15 var(--serif); margin: 0; letter-spacing: -.02em; }
.footer-nav { display: grid; gap: 5px; }
.footer-nav a { min-height: 32px; font: 500 11px/2.5 var(--ui); color: #DEE6F2; }
.footer-nav .icon { width: 16px; height: 16px; margin-left: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; border-top: 1px solid #ffffff22; padding-block: 22px; font-size: 9px; color: #CDD8E9; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer a:focus-visible { outline-color: white; }
.footer-nav a:hover { color: #F1CD78; }

@media (max-width: 1050px) {
  .container { padding-inline: 38px; }
  #main-nav { gap: 16px; }
  .brand, .brand img { width: 190px; }
  .section { padding-block: 80px; }
  .section-heading { gap: 40px; }
}
@media (max-width: 900px) {
  html { scroll-padding-top: 95px; }
  .nav-wrap { min-height: 80px; }
  .brand img { height: 78px; }
  .menu-toggle { display: flex; align-items: center; gap: 13px; min-height: 44px; min-width: 82px; justify-content: flex-end; background: transparent; border: 0; font: 600 11px var(--ui); color: var(--navy); cursor: pointer; }
  .menu-lines { width: 20px; height: 12px; border-top: 2px solid; border-bottom: 2px solid; position: relative; }
  .menu-lines::after { content: ''; position: absolute; top: 4px; left: 5px; width: 15px; border-top: 2px solid; }
  #main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); padding: 18px 38px 25px; gap: 7px; box-shadow: 0 16px 20px #0b2d6308; }
  #main-nav.is-open { display: flex; flex-direction: column; align-items: stretch; }
  #main-nav > a:not(.button) { padding: 9px 0; font-size: 13px; }
  #main-nav > a:not(.button)::after { bottom: 3px; }
  .nav-cta { margin-top: 6px; justify-content: space-between; }
  .language-switcher { padding: 9px 0 3px; gap: 10px; }
  .form-panel { padding: 28px; }
  .field-row { gap: 15px; }
  .section-heading > p { font-size: 13px; }
  .footer-main { gap: 25px; }
  .footer-main > p { font-size: 29px; }
}
@media (max-width: 640px) {
  .container { padding-inline: 24px; }
  .section { padding-block: 62px; }
  h2 { font-size: 33px; line-height: 1.2; }
  .eyebrow { font-size: 9px; letter-spacing: .12em; margin-bottom: 20px; gap: 10px; }
  .gold-rule { width: 24px; }
  .brand, .brand img { width: 192px; }
  .nav-wrap { min-height: 76px; gap: 16px; }
  .brand img { height: 74px; }
  #main-nav { padding-inline: 24px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin: 24px 0 0; font-size: 13px; max-width: none; }
  .button { min-height: 54px; font-size: 11px; padding-inline: 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field select, .field textarea { font-size: 16px; }
  .field label { font-size: 11px; }
  .form-panel { padding: 26px 22px; }
  .form-heading h3 { font-size: 18px; }
  .form-heading p { font-size: 11px; }
  .form-help, .local-notice { font-size: 11px; }
  .footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-block: 32px; }
  .footer-brand { width: 180px; grid-column: 1 / -1; }
  .footer-brand img { width: 180px; height: 80px; }
  .footer-main > p { font-size: 28px; }
  .footer-nav { justify-self: end; }
  .footer-nav a { font-size: 10px; }
  .footer-bottom { flex-direction: column; gap: 10px; font-size: 9px; }
  .back-top { display: inline-flex; align-items: center; min-height: 44px; align-self: flex-start; }
}
@media (max-width: 360px) {
  .nav-wrap { padding-inline: 16px; gap: 12px; }
  .brand, .brand img { width: 170px; }
  .menu-toggle { min-width: 70px; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
