/* ==========================================================================
   Terravek Systems N.V. — corporate stylesheet
   ---------------------------------------------------------------------------
   Version : 4.2.1
   Updated : 2026-06-30
   Owner   : Marketing / Web  —  tom.ashby@terravek.com  (ext. 4273)
   Design system tokens are mirrored in github.com/terravek/terravek-brand.
   Colour values are normative — see the Brand Guide v4.0, section 3.

   NOTE (TVK-WEB-1188): the legacy .tvk-panel--v3 rules at the bottom of this
   file are still referenced by the 2019 investor pages. Do not remove until
   those are migrated. — TA, 2026-02-11
   ========================================================================== */

/* ---------- 1. Design tokens ---------------------------------------------- */
:root {
  --tvk-deep:   #0d3b45;
  --tvk-teal:   #16697a;
  --tvk-aqua:   #3fa6a0;
  --tvk-signal: #e07a3f;
  --tvk-sand:   #f2efe9;
  --tvk-mist:   #edf3f4;
  --tvk-ink:    #14212a;
  --tvk-slate:  #5a6b75;

  --bg:          #ffffff;
  --bg-alt:      var(--tvk-mist);
  --bg-warm:     var(--tvk-sand);
  --surface:     #ffffff;
  --surface-alt: #f7fafa;
  --text:        var(--tvk-ink);
  --text-muted:  var(--tvk-slate);
  --border:      #d8e1e4;
  --border-soft: #e8eef0;
  --link:        var(--tvk-teal);
  --link-hover:  var(--tvk-deep);
  --accent:      var(--tvk-signal);
  --header-bg:   var(--tvk-deep);
  --header-text: #ffffff;
  --footer-bg:   var(--tvk-deep);
  --footer-text: #c9dade;
  --code-bg:     #f2f6f7;

  --font-sans: "Inter var", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas,
               "Liberation Mono", monospace;

  --measure: 68ch;
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(13, 59, 69, .06), 0 1px 3px rgba(13, 59, 69, .08);
  --shadow-md: 0 2px 6px rgba(13, 59, 69, .07), 0 8px 24px rgba(13, 59, 69, .08);
  --sp-1: .25rem; --sp-2: .5rem;  --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;   --sp-7: 3rem;   --sp-8: 4rem;  --sp-9: 6rem;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:          #0e181d;
    --bg-alt:      #132228;
    --bg-warm:     #16232a;
    --surface:     #14232a;
    --surface-alt: #182c33;
    --text:        #e6eef0;
    --text-muted:  #9db0b8;
    --border:      #27424b;
    --border-soft: #1e343c;
    --link:        #6fc7c1;
    --link-hover:  #9adfd9;
    --header-bg:   #0a2a32;
    --footer-bg:   #0a2a32;
    --footer-text: #a9c4ca;
    --code-bg:     #0d1b21;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 2px 6px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.3);
  }
}

:root[data-theme="dark"] {
  --bg:          #0e181d;
  --bg-alt:      #132228;
  --bg-warm:     #16232a;
  --surface:     #14232a;
  --surface-alt: #182c33;
  --text:        #e6eef0;
  --text-muted:  #9db0b8;
  --border:      #27424b;
  --border-soft: #1e343c;
  --link:        #6fc7c1;
  --link-hover:  #9adfd9;
  --header-bg:   #0a2a32;
  --footer-bg:   #0a2a32;
  --footer-text: #a9c4ca;
  --code-bg:     #0d1b21;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 2px 6px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.3);
}

/* ---------- 2. Base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-4);
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -.015em;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.1rem); margin-top: var(--sp-7); }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.45rem); margin-top: var(--sp-6); }
h4 { font-size: 1.05rem; margin-top: var(--sp-5); }
h1:first-child, h2:first-child, h3:first-child { margin-top: 0; }

p, ul, ol, dl, table, figure, pre, blockquote { margin: 0 0 var(--sp-4); }
p, li { max-width: var(--measure); }
li { margin-bottom: var(--sp-2); }
strong { font-weight: 650; }
small { font-size: .8125rem; }

a { color: var(--link); text-decoration: underline; text-underline-offset: .16em;
    text-decoration-thickness: .06em; }
a:hover { color: var(--link-hover); text-decoration-thickness: .12em; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--tvk-signal);
  outline-offset: 2px;
  border-radius: 2px;
}

img, svg, video { max-width: 100%; height: auto; }
figure { margin-inline: 0; }
figcaption { font-size: .8125rem; color: var(--text-muted); margin-top: var(--sp-2);
             max-width: var(--measure); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--sp-7) 0; }

code, kbd, samp, pre { font-family: var(--font-mono); font-size: .875em; }
code { background: var(--code-bg); padding: .12em .38em; border-radius: 3px;
       border: 1px solid var(--border-soft); }
pre { background: var(--code-bg); border: 1px solid var(--border); border-radius: var(--radius);
      padding: var(--sp-4); overflow-x: auto; line-height: 1.5; }
pre code { background: none; border: 0; padding: 0; }

blockquote {
  border-left: 3px solid var(--tvk-aqua);
  padding: var(--sp-1) 0 var(--sp-1) var(--sp-5);
  margin-left: 0; color: var(--text); font-size: 1.0625rem;
}
blockquote cite { display: block; margin-top: var(--sp-3); font-size: .875rem;
                  font-style: normal; color: var(--text-muted); }

/* Tables scroll inside their own container; the page body never does. */
.table-scroll { overflow-x: auto; margin-bottom: var(--sp-5);
                border: 1px solid var(--border); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; font-size: .9375rem; max-width: none; }
.table-scroll table { border: 0; }
th, td { text-align: left; padding: var(--sp-3) var(--sp-4);
         border-bottom: 1px solid var(--border-soft); vertical-align: top; }
th { font-weight: 650; background: var(--surface-alt); white-space: nowrap; }
tbody tr:last-child td { border-bottom: 0; }
caption { text-align: left; font-size: .8125rem; color: var(--text-muted);
          padding: var(--sp-2) var(--sp-4); }

/* ---------- 3. Layout ----------------------------------------------------- */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--sp-5); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-6); }
.section--alt { background: var(--bg-alt); }
.section--warm { background: var(--bg-warm); }
main { display: block; min-height: 50vh; }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid--sidebar { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 62rem) {
  .grid--sidebar { grid-template-columns: minmax(0, 1fr) 19rem; gap: var(--sp-7); }
  .grid--sidebar--left { grid-template-columns: 17rem minmax(0, 1fr); }
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--tvk-signal); color: #fff; padding: var(--sp-3) var(--sp-4);
  font-weight: 650; text-decoration: none;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-2); }

/* ---------- 4. Header & navigation ---------------------------------------- */
.utilitybar {
  background: #08272e; color: #a9c4ca; font-size: .8125rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.utilitybar .wrap { display: flex; gap: var(--sp-4); align-items: center;
                    justify-content: flex-end; min-height: 2.25rem; flex-wrap: wrap; }
.utilitybar a { color: #c9dade; text-decoration: none; }
.utilitybar a:hover { color: #fff; text-decoration: underline; }
.utilitybar__sep { opacity: .35; }

.site-header { background: var(--header-bg); color: var(--header-text); position: relative; z-index: 100; }
.site-header .wrap { display: flex; align-items: center; gap: var(--sp-5); min-height: 4.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none;
         color: #fff; flex: 0 0 auto; }
.brand:hover { color: #fff; }
.brand__mark { height: 34px; width: auto; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 1.32rem; font-weight: 700; letter-spacing: -.02em; }
.brand__tag { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
              color: #8fb6bd; font-weight: 500; }

.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; border: 1px solid rgba(255,255,255,.3); color: #fff;
  padding: .5rem .8rem; border-radius: var(--radius); font: inherit; font-size: .875rem;
  cursor: pointer;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }

.mainnav { margin-left: auto; }
.mainnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--sp-1); }
.mainnav li { margin: 0; max-width: none; }
.mainnav > ul > li > a {
  display: block; padding: .65rem .8rem; color: #dbe9ec; text-decoration: none;
  font-size: .9375rem; font-weight: 550; border-radius: var(--radius);
  border-bottom: 3px solid transparent;
}
.mainnav > ul > li > a:hover { color: #fff; background: rgba(255,255,255,.08); }
.mainnav > ul > li > a[aria-current="true"],
.mainnav > ul > li.is-active > a { color: #fff; border-bottom-color: var(--tvk-signal); }

.has-sub { position: relative; }
.subnav {
  position: absolute; top: 100%; left: 0; min-width: 15rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: var(--sp-2); display: none; flex-direction: column;
  gap: 0; z-index: 120;
}
.has-sub:hover > .subnav, .has-sub:focus-within > .subnav { display: flex; }
.subnav a { display: block; padding: .45rem .6rem; color: var(--text); text-decoration: none;
            font-size: .875rem; border-radius: 3px; }
.subnav a:hover { background: var(--bg-alt); color: var(--link-hover); }

@media (max-width: 61.99rem) {
  .mainnav { position: absolute; top: 100%; left: 0; right: 0; background: var(--header-bg);
             border-top: 1px solid rgba(255,255,255,.1); display: none; padding: var(--sp-3) 0; }
  .mainnav.is-open { display: block; }
  .mainnav ul { flex-direction: column; padding-inline: var(--sp-5); }
  .mainnav > ul > li > a { border-bottom: 0; padding: .6rem 0; }
  .subnav { position: static; display: flex; background: transparent; border: 0; box-shadow: none;
            padding: 0 0 var(--sp-2) var(--sp-4); }
  .subnav a { color: #b8ced3; }
  .subnav a:hover { background: transparent; color: #fff; }
}
@media (min-width: 62rem) { .nav-toggle { display: none; } .mainnav { display: block !important; } }

/* ---------- 5. Hero & page headers ---------------------------------------- */
.hero {
  background: linear-gradient(155deg, var(--tvk-deep) 0%, #114552 48%, var(--tvk-teal) 100%);
  color: #fff; padding-block: var(--sp-9); position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(25deg,  rgba(255,255,255,.035) 0 1px, transparent 1px 70px);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero h1 { color: #fff; max-width: 20ch; }
.hero__lead { font-size: clamp(1.05rem, .95rem + .5vw, 1.3rem); color: #cfe4e7;
              max-width: 56ch; margin-bottom: var(--sp-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.pagehead { background: var(--bg-alt); border-bottom: 1px solid var(--border);
            padding-block: var(--sp-7) var(--sp-6); }
.pagehead h1 { margin-bottom: var(--sp-3); }
.pagehead__lead { font-size: 1.125rem; color: var(--text-muted); max-width: 62ch; margin: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem;
           font-weight: 650; color: var(--tvk-aqua); margin-bottom: var(--sp-3); display: block; }
.pagehead .eyebrow { color: var(--tvk-teal); }

.breadcrumb { font-size: .8125rem; color: var(--text-muted); padding-block: var(--sp-3); }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumb li { margin: 0; max-width: none; }
.breadcrumb li + li::before { content: "›"; margin-right: .4rem; opacity: .55; }
.breadcrumb a { color: var(--text-muted); }

/* ---------- 6. Components ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.35rem; border-radius: var(--radius); border: 1px solid transparent;
  font: inherit; font-size: .9375rem; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--tvk-signal); color: #fff; border-color: var(--tvk-signal); }
.btn--primary:hover { background: #c96a31; border-color: #c96a31; color: #fff; }
.btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--secondary:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--ghost { background: transparent; color: var(--link); border-color: var(--border); }
.btn--ghost:hover { background: var(--bg-alt); color: var(--link-hover); }
.btn--small { padding: .45rem .9rem; font-size: .8125rem; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--sp-5); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.card > :last-child { margin-bottom: 0; }
.card h3 { margin-top: 0; font-size: 1.1rem; }
.card__meta { font-size: .8125rem; color: var(--text-muted); margin-bottom: var(--sp-2); }
.card__more { margin-top: auto; padding-top: var(--sp-3); font-weight: 600; font-size: .875rem; }
a.card { text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--tvk-aqua); box-shadow: var(--shadow-md); }
a.card h3 { color: var(--link); }

.panel { background: var(--surface-alt); border: 1px solid var(--border-soft);
         border-radius: var(--radius-lg); padding: var(--sp-5); }
.panel > :last-child { margin-bottom: 0; }
.panel--accent { border-left: 4px solid var(--tvk-signal); }
.panel--info   { border-left: 4px solid var(--tvk-teal); }
.panel--warn   { border-left: 4px solid #b4741f; background: #fdf7ef; }
:root[data-theme="dark"] .panel--warn { background: #241c10; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .panel--warn { background: #241c10; } }

.stat-row { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat { border-top: 3px solid var(--tvk-aqua); padding-top: var(--sp-3); }
.stat__value { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem); font-weight: 700;
               line-height: 1.05; letter-spacing: -.03em; }
.stat__label { font-size: .8125rem; color: var(--text-muted); }

.tag-list { list-style: none; padding: 0; margin: 0 0 var(--sp-4); display: flex;
            flex-wrap: wrap; gap: var(--sp-2); }
.tag-list li { margin: 0; max-width: none; }
.tag {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .02em;
  padding: .2rem .6rem; border-radius: 100px; background: var(--bg-alt);
  border: 1px solid var(--border); color: var(--text-muted); text-decoration: none;
}
a.tag:hover { border-color: var(--tvk-aqua); color: var(--link); }
.tag--status-open     { background: #e6f4ee; border-color: #b6dcc9; color: #1d6b47; }
.tag--status-closed   { background: #f0f0f0; border-color: #d6d6d6; color: #666; }
.tag--status-current  { background: #e7f1f4; border-color: #b4d3dc; color: #175d70; }
.tag--status-retired  { background: #f5efe8; border-color: #ddccb8; color: #7d5a2c; }
:root[data-theme="dark"] .tag--status-open    { background: #102b20; border-color: #24543c; color: #7fd3aa; }
:root[data-theme="dark"] .tag--status-closed  { background: #1d2429; border-color: #33404a; color: #93a3ad; }
:root[data-theme="dark"] .tag--status-current { background: #10262d; border-color: #1f4653; color: #74c3d4; }
:root[data-theme="dark"] .tag--status-retired { background: #2a2117; border-color: #4b3a24; color: #cfa96f; }

.definition-list { display: grid; grid-template-columns: minmax(9rem, 15rem) 1fr;
                   gap: var(--sp-3) var(--sp-5); margin-bottom: var(--sp-5); }
.definition-list dt { font-weight: 650; color: var(--text-muted); font-size: .875rem; }
.definition-list dd { margin: 0; }
@media (max-width: 40rem) { .definition-list { grid-template-columns: 1fr; gap: var(--sp-1) 0; }
                            .definition-list dd { margin-bottom: var(--sp-3); } }

.list-plain { list-style: none; padding: 0; }
.list-plain li { padding-left: 1.5rem; position: relative; }
.list-plain li::before { content: "—"; position: absolute; left: 0; color: var(--tvk-aqua); }

.linklist { list-style: none; padding: 0; margin: 0; }
.linklist li { margin: 0; border-bottom: 1px solid var(--border-soft); max-width: none; }
.linklist li:last-child { border-bottom: 0; }
.linklist a { display: block; padding: var(--sp-3) 0; text-decoration: none; }
.linklist a:hover { color: var(--link-hover); }
.linklist__meta { display: block; font-size: .8125rem; color: var(--text-muted); }

/* People */
.person-card { display: grid; grid-template-columns: 88px 1fr; gap: var(--sp-4);
               align-items: start; }
.person-card img { width: 88px; height: 88px; object-fit: cover; border-radius: var(--radius);
                   background: var(--bg-alt); border: 1px solid var(--border-soft); }
.person-card h3 { margin: 0 0 .15rem; font-size: 1.0625rem; }
.person-card .role { color: var(--text-muted); font-size: .875rem; margin: 0 0 var(--sp-2); }
.person-contact { font-size: .8125rem; line-height: 1.55; margin: 0; }
.person-contact a { text-decoration: none; }
.person-contact a:hover { text-decoration: underline; }

.profile-head { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 48rem) { .profile-head { grid-template-columns: 220px 1fr; } }
.profile-head img { width: 100%; max-width: 220px; border-radius: var(--radius-lg);
                    border: 1px solid var(--border); background: var(--bg-alt); }

/* Org chart */
.orgchart { list-style: none; padding: 0; margin: 0; font-size: .9375rem; }
.orgchart ul { list-style: none; margin: 0; padding-left: var(--sp-5); border-left: 1px solid var(--border); }
.orgchart li { margin: 0; padding: .3rem 0 .3rem var(--sp-4); position: relative; max-width: none; }
.orgchart ul > li::before { content: ""; position: absolute; left: 0; top: 1.1rem;
                            width: var(--sp-3); height: 1px; background: var(--border); }
.orgchart .org-name { font-weight: 600; }
.orgchart .org-role { color: var(--text-muted); font-size: .8125rem; }

/* Article */
.article-body { max-width: var(--measure); }
.article-body h2 { font-size: 1.4rem; }
.article-meta { font-size: .875rem; color: var(--text-muted); margin-bottom: var(--sp-5);
                display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); align-items: center; }
.article-meta img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
                    border: 1px solid var(--border-soft); }
.share { display: flex; gap: var(--sp-2); flex-wrap: wrap; align-items: center;
         font-size: .875rem; margin-block: var(--sp-6); padding-block: var(--sp-4);
         border-block: 1px solid var(--border-soft); }
.comments-note { font-size: .875rem; color: var(--text-muted); font-style: italic; }

.timeline { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--border); }
.timeline li { position: relative; padding: 0 0 var(--sp-6) var(--sp-6); margin: 0; max-width: none; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: .45rem; width: 12px;
                       height: 12px; border-radius: 50%; background: var(--tvk-aqua);
                       border: 2px solid var(--bg); }
.timeline__year { font-weight: 700; font-size: 1.05rem; color: var(--tvk-teal); }
.timeline h3 { margin: .1rem 0 var(--sp-2); font-size: 1.05rem; }
.timeline p { color: var(--text-muted); font-size: .9375rem; margin: 0; }

/* Forms */
.form-field { margin-bottom: var(--sp-5); max-width: 34rem; }
.form-field label { display: block; font-weight: 600; font-size: .9375rem; margin-bottom: var(--sp-2); }
.form-field .hint { display: block; font-size: .8125rem; color: var(--text-muted);
                    margin-bottom: var(--sp-2); font-weight: 400; }
input[type="text"], input[type="email"], input[type="tel"], input[type="search"],
input[type="url"], select, textarea {
  width: 100%; padding: .6rem .75rem; font: inherit; font-size: .9375rem;
  color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
textarea { min-height: 9rem; resize: vertical; }
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: #b3261e; }
.field-error { color: #b3261e; font-size: .8125rem; margin-top: var(--sp-2); display: none; }
.field-error.is-visible { display: block; }
:root[data-theme="dark"] .field-error { color: #f2b8b5; }
.required { color: #b3261e; }
.form-status { margin-top: var(--sp-4); padding: var(--sp-4); border-radius: var(--radius);
               display: none; }
.form-status.is-visible { display: block; }
.form-status--ok { background: #e6f4ee; border: 1px solid #b6dcc9; color: #1d6b47; }
:root[data-theme="dark"] .form-status--ok { background: #102b20; border-color: #24543c; color: #7fd3aa; }

/* Search */
.searchbox { display: flex; gap: var(--sp-2); max-width: 34rem; }
.searchbox input { flex: 1; }
.search-results { margin-top: var(--sp-5); }
.search-results li { margin-bottom: var(--sp-4); max-width: none; }
.search-empty { color: var(--text-muted); }

/* ---------- 7. Footer ----------------------------------------------------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: var(--sp-9);
               font-size: .9375rem; }
.site-footer a { color: #dbe9ec; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: .8125rem; text-transform: uppercase;
                                   letter-spacing: .1em; margin: 0 0 var(--sp-4); font-weight: 650; }
.footer-main { padding-block: var(--sp-8) var(--sp-6); }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: var(--sp-2); max-width: none; }
.footer-offices { border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--sp-6);
                  font-size: .8125rem; }
.footer-offices .grid { gap: var(--sp-5); }
.footer-offices address { font-style: normal; color: #a9c4ca; line-height: 1.55; }
.footer-offices strong { color: #fff; display: block; margin-bottom: .2rem; }
.footer-newsletter { border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--sp-6); }
.footer-newsletter form { display: flex; gap: var(--sp-2); flex-wrap: wrap; max-width: 30rem; }
.footer-newsletter input { flex: 1 1 14rem; background: rgba(255,255,255,.08); color: #fff;
                           border-color: rgba(255,255,255,.28); }
.footer-newsletter input::placeholder { color: #8fb6bd; }
.footer-certs { border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--sp-5);
                font-size: .75rem; color: #8fb6bd; }
.footer-certs ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap;
                   gap: var(--sp-2) var(--sp-4); }
.footer-certs li { margin: 0; max-width: none; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.12); padding-block: var(--sp-5);
                font-size: .8125rem; display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
                justify-content: space-between; align-items: center; color: #8fb6bd; }
.footer-legal ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap;
                   gap: var(--sp-2) var(--sp-4); }
.footer-legal li { margin: 0; max-width: none; }
.social-links { display: flex; gap: var(--sp-3); flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.social-links li { margin: 0; max-width: none; }
.social-links a { display: inline-flex; align-items: center; justify-content: center;
                  width: 2.25rem; height: 2.25rem; border: 1px solid rgba(255,255,255,.25);
                  border-radius: var(--radius); }
.social-links a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.social-links svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }

/* ---------- 8. Cookie banner & theme toggle -------------------------------- */
.cookie-banner {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 300;
  background: var(--surface); border-top: 3px solid var(--tvk-signal);
  box-shadow: 0 -4px 24px rgba(13,59,69,.16); padding: var(--sp-5) 0; display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner__inner { display: flex; gap: var(--sp-5); align-items: center;
                        flex-wrap: wrap; justify-content: space-between; }
.cookie-banner p { margin: 0; font-size: .875rem; max-width: 60ch; }
.cookie-banner__actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; }

.theme-toggle { background: transparent; border: 1px solid rgba(255,255,255,.28); color: inherit;
                font: inherit; font-size: .8125rem; padding: .2rem .55rem; border-radius: var(--radius);
                cursor: pointer; }
.theme-toggle:hover { background: rgba(255,255,255,.1); }

/* ---------- 9. Utilities --------------------------------------------------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-muted { color: var(--text-muted); }
.text-small { font-size: .875rem; }
.lead { font-size: 1.125rem; color: var(--text-muted); max-width: 62ch; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-5 { margin-bottom: var(--sp-5) !important; }
.mb-6 { margin-bottom: var(--sp-6) !important; }
.mt-6 { margin-top: var(--sp-6) !important; }
.flow > * + * { margin-top: var(--sp-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.divider { border-top: 1px solid var(--border); margin-block: var(--sp-6); }
.full-bleed-img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border-soft); }
.aspect-wide { aspect-ratio: 16 / 9; object-fit: cover; }
.aspect-4x3  { aspect-ratio: 4 / 3;  object-fit: cover; }

@media print {
  .site-header, .utilitybar, .site-footer, .cookie-banner, .nav-toggle, .share, .breadcrumb { display: none !important; }
  body { color: #000; background: #fff; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; }
  .wrap { max-width: none; padding: 0; }
}

/* ---------- 10. Legacy (TVK-WEB-1188 — remove after investor page migration) */
.tvk-panel--v3 { background: #f4f4f2; border: 1px solid #ddd; padding: 18px; margin-bottom: 20px; }
.tvk-panel--v3 h4 { margin-top: 0; font-size: 15px; color: #10525f; }
.tvk-legacy-table { width: 100%; border: 1px solid #ccc; font-size: 13px; }
.tvk-legacy-table td { border: 1px solid #e0e0e0; padding: 6px 8px; }
/* /legacy */
