:root {
    --charcoal:    #0F2942;
    --slate:       #1E3A5F;
    --slate-soft:  #3D5A7A;
    --ash:         #B8A082;
    --ash-soft:    #C8B595;
    --amber:       #C19A57;
    --amber-deep:  #8B6334;
    --amber-soft:  #D7B47A;
    --jade:        #6FA2A8;
    --jade-pale:   #9FC0C4;
    --sandstone:   #E8DEC9;
    --parchment:   #F4EDDF;
    --linen:       #FBF6E9;
    --bone:        #FDFCF6;
    --rule:        #D4C8AB;
    --rule-soft:   #E3DAC2;
    --muted:       #756B58;
    --ink:         #0F2942;
    --body:        #1B2A40;

    --display:     'Lora', 'Cambria', Georgia, serif;
    --body-font:   'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono:        'IBM Plex Mono', ui-monospace, monospace;

    --maxw:        1280px;
    --gutter:      clamp(20px, 4vw, 56px);
    --pad-y:       clamp(80px, 9vw, 140px);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    background: var(--parchment);
    color: var(--body);
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.005em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image:
      radial-gradient(circle at 8% 18%, rgba(193,154,87,0.06) 0%, transparent 38%),
      radial-gradient(circle at 92% 76%, rgba(111,162,168,0.05) 0%, transparent 42%);
  }

  /* ── Reading progress bar ──────────────────────────────────── */
  .progress-bar {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: linear-gradient(90deg, var(--amber-deep), var(--jade));
    z-index: 9999; transition: width 0.15s ease-out;
    opacity: 0.85;
  }

  /* ── Layout ────────────────────────────────────────────────── */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
  .wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }
  section { padding: var(--pad-y) 0; position: relative; }

  /* ── Top nav ───────────────────────────────────────────────── */
  .topnav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(244,237,223,0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .topnav-inner {
    max-width: var(--maxw); margin: 0 auto;
    padding: 16px var(--gutter);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .brand {
    font-family: var(--display); font-size: 22px; font-weight: 600;
    color: var(--charcoal); letter-spacing: 0.01em;
    text-decoration: none; display: flex; align-items: center; gap: 12px;
  }
  .brand .mark {
    color: var(--amber-deep); font-size: 22px;
    display: inline-flex; align-items: center; line-height: 1;
  }
  .brand .em {
    font-family: var(--body-font); font-size: 11px; font-weight: 500;
    color: var(--jade); letter-spacing: 0.18em; text-transform: uppercase;
    margin-left: 4px;
  }
  .nav-links {
    display: flex; gap: 26px;
    font-family: var(--body-font);
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.02em;
  }
  .nav-links a {
    color: var(--slate); text-decoration: none; padding: 4px 0;
    border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s;
  }
  .nav-links a:hover { color: var(--amber-deep); border-bottom-color: var(--amber-deep); }
  .lang-switch {
    display: flex; gap: 8px; font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  }
  .lang-switch a, .lang-switch .active {
    text-decoration: none; color: var(--muted); padding: 3px 8px;
    border: 1px solid transparent;
  }
  .lang-switch .active {
    color: var(--charcoal); border-color: var(--amber-deep);
    background: var(--linen);
  }
  .lang-switch a:hover { color: var(--charcoal); }

  @media (max-width: 880px) {
    .nav-links { display: none; }
    .topnav-inner .lang-switch { display: none; }
  }

  /* ── Headings & text ─────────────────────────────────────── */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--display); font-weight: 500;
    color: var(--charcoal); margin: 0;
    line-height: 1.08; letter-spacing: -0.01em;
  }
  h1 { font-size: clamp(48px, 8.5vw, 108px); line-height: 0.98; font-weight: 500; }
  h2 { font-size: clamp(34px, 5.2vw, 68px); line-height: 1.04; }
  h3 { font-size: clamp(22px, 2.5vw, 30px); }
  h4 { font-size: 19px; font-weight: 600; }
  p  { margin: 0 0 22px; max-width: 70ch; }
  em { font-style: italic; color: var(--amber-deep); }
  .em { color: var(--amber-deep); font-style: normal; font-weight: 500; }
  .ital { font-style: italic; }
  strong { font-weight: 600; color: var(--ink); }
  small { font-size: 0.82em; color: var(--muted); }
  a { color: var(--amber-deep); text-underline-offset: 3px; }
  a:hover { color: var(--jade); }

  .code, code { font-family: var(--mono); font-size: 0.85em; color: var(--amber-deep); }

  /* ── Section heads ──────────────────────────────────────── */
  .sec-head {
    margin-bottom: 64px;
    text-align: center;
    border-top: 1px solid var(--rule);
    padding-top: 36px;
    position: relative;
  }
  .sec-head::before {
    content: '✦';
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--parchment);
    padding: 0 16px;
    color: var(--amber-deep); font-size: 16px;
  }
  .sec-head .marker {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--jade); letter-spacing: 0.22em;
    text-transform: uppercase; margin-top: 6px;
  }
  .sec-head .numero {
    font-family: var(--body-font); font-size: 13px;
    color: var(--muted); letter-spacing: 0.04em;
    margin-top: 6px;
  }
  .sec-head .numero .accent { color: var(--amber-deep); font-family: var(--display); font-style: italic; font-weight: 500; }
  .sec-head h2 {
    margin-top: 22px; max-width: 18ch; margin-left: auto; margin-right: auto;
    font-style: italic; color: var(--charcoal); font-weight: 500;
  }
  .sec-head h2 .em { color: var(--amber-deep); font-style: normal; }
  .sec-head h2 .ital { font-style: italic; color: var(--jade); }
  .sec-head h2 .roman { font-style: normal; }

  /* ── Lozenge divider (Slovak heraldic motif) ──────────────── */
  .lozenge-div {
    text-align: center; margin: 64px auto;
    color: var(--amber-deep);
    font-size: 14px; line-height: 1;
    display: flex; align-items: center; justify-content: center; gap: 18px;
  }
  .lozenge-div .line {
    flex: 0 1 72px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--rule), transparent);
  }
  .lozenge-div .small { opacity: 0.6; font-size: 10px; }
  .lozenge-div .big { color: var(--amber-deep); }
  .lozenge-div .jade { color: var(--jade); }

  /* ── Hero ───────────────────────────────────────────────── */
  .hero { padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(48px, 6vw, 88px); }
  .hero-meta {
    display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 56px;
    font-family: var(--mono); font-size: 10.5px;
    letter-spacing: 0.12em; text-transform: uppercase;
    align-items: center;
  }
  .pill {
    padding: 7px 14px; background: var(--linen); color: var(--charcoal);
    border: 1px solid var(--rule);
    font-weight: 500;
  }
  .pill.bg-jade { background: var(--jade); color: var(--bone); border-color: var(--jade); }
  .pill.bg-amber { background: var(--amber); color: var(--charcoal); border-color: var(--amber-deep); }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
  }
  @media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }

  .hero h1 .row { display: block; font-weight: 500; }
  .hero h1 .row .roman { font-style: normal; }
  .hero h1 .row .ital { font-style: italic; }
  .hero h1 .dot { color: var(--amber-deep); }
  .hero-lead {
    font-family: var(--display); font-style: italic;
    font-size: clamp(22px, 2.6vw, 32px); line-height: 1.32;
    color: var(--jade); margin-top: 36px; max-width: 30ch;
    font-weight: 400;
  }
  .hero-sub {
    font-size: 16.5px; line-height: 1.7; margin-top: 30px;
    max-width: 62ch; color: var(--body);
    font-weight: 400;
  }
  .hero-sub strong { color: var(--charcoal); }
  .hero-sub em { color: var(--amber-deep); }

  /* ── Hero steelyard scale motif ─────────────────────── */
  .scale-frame {
    position: relative; width: 100%; aspect-ratio: 1 / 1;
    max-width: 400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
  }
  .scale-frame svg { width: 100%; height: 100%; }

  /* ── Hero foot ─────────────────────────────────────────── */
  .hero-foot {
    margin-top: 80px; padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
  }
  @media (max-width: 720px) { .hero-foot { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
  .hero-foot .cell .label {
    font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
    color: var(--amber-deep); text-transform: uppercase; margin-bottom: 8px;
    font-weight: 500;
  }
  .hero-foot .cell .val {
    font-family: var(--display); font-size: clamp(26px, 3vw, 38px);
    color: var(--charcoal); font-weight: 500; line-height: 1.05;
    letter-spacing: -0.01em;
    font-style: italic;
  }
  .hero-foot .cell .val .roman { font-style: normal; }
  .hero-foot .cell .val small { font-family: var(--body-font); font-style: normal; font-weight: 400; font-size: 13px; color: var(--muted); margin-left: 4px; }
  .hero-foot .cell .val .plus { color: var(--amber-deep); font-style: normal; }

  /* ── Bands strip (commodity categories ticker) ───────── */
  .band-strip {
    background: var(--charcoal); padding: 18px 0; overflow: hidden;
    border-top: 1px solid var(--slate); border-bottom: 1px solid var(--slate);
  }
  .band-ticker {
    display: flex; gap: 48px; animation: band-roll 70s linear infinite;
    white-space: nowrap; width: max-content;
  }
  .band-ticker:hover { animation-play-state: paused; }
  .band-ticker span {
    font-family: var(--body-font); font-size: 13.5px; font-weight: 500;
    color: var(--bone); letter-spacing: 0.08em;
    opacity: 0.78; text-transform: uppercase;
  }
  .band-ticker span .mark { color: var(--amber); margin-right: 10px; }
  @keyframes band-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── Manifesto / long-form ──────────────────────────────── */
  .essay {
    max-width: 740px; margin: 0 auto;
    font-family: var(--body-font);
    font-size: 17.5px;
    line-height: 1.75;
    color: var(--body);
    font-weight: 400;
  }
  .essay .lead-para {
    font-family: var(--display); font-style: italic;
    font-size: clamp(24px, 2.6vw, 32px); line-height: 1.36;
    color: var(--charcoal); margin-bottom: 36px;
    text-align: center;
    font-weight: 500;
    max-width: 24ch; margin-left: auto; margin-right: auto;
  }
  .essay p { margin-bottom: 24px; max-width: none; }
  .essay p:first-of-type::first-letter {
    font-family: var(--display);
    font-size: 4.5em;
    float: left;
    line-height: 0.88;
    margin: 0.05em 0.1em 0 0;
    color: var(--amber-deep);
    font-weight: 600;
    font-style: italic;
  }
  .essay p em { color: var(--amber-deep); font-style: italic; }
  .essay p strong { color: var(--charcoal); font-weight: 600; }
  .essay blockquote {
    margin: 40px 0;
    padding: 0 32px;
    border-left: 2px solid var(--amber);
    font-family: var(--display); font-style: italic;
    font-size: 21px; line-height: 1.5;
    color: var(--jade);
    font-weight: 500;
  }
  .essay blockquote cite {
    display: block; margin-top: 14px;
    font-family: var(--mono); font-style: normal;
    font-size: 11px; color: var(--muted);
    letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 500;
  }
  .essay-meta {
    margin-top: 60px; padding-top: 32px;
    border-top: 1px solid var(--rule-soft);
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  @media (max-width: 880px) { .essay-meta { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
  @media (max-width: 480px) { .essay-meta { grid-template-columns: 1fr; } }
  .essay-meta .em-cell {
    font-family: var(--body-font);
    font-size: 14.5px; line-height: 1.55;
    color: var(--body);
  }
  .essay-meta .em-cell .lbl {
    display: block; font-family: var(--mono);
    font-size: 10px; color: var(--amber-deep);
    letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 10px; font-weight: 500;
  }
  .essay-meta .em-cell em { color: var(--jade); font-style: italic; }

  /* ── Practice / Four disciplines ─────────────────────────── */
  .practice-list { display: flex; flex-direction: column; gap: 80px; max-width: 980px; margin: 0 auto; }
  .practice-disc {
    display: grid; grid-template-columns: 160px 1fr;
    gap: 48px; align-items: start;
  }
  @media (max-width: 720px) { .practice-disc { grid-template-columns: 1fr; gap: 16px; } }
  .pr-num {
    font-family: var(--display); font-weight: 500;
    font-size: 76px; color: var(--amber-deep);
    line-height: 0.9;
    position: relative;
    font-style: italic;
  }
  .pr-num::after {
    content: ''; position: absolute;
    left: 0; top: calc(100% + 14px);
    width: 36px; height: 1px;
    background: var(--jade);
  }
  .pr-num small {
    display: block; font-family: var(--mono); font-style: normal;
    font-size: 10px; color: var(--jade);
    letter-spacing: 0.18em; margin-top: 28px;
    text-transform: uppercase; font-weight: 500;
  }
  .pr-name {
    font-family: var(--display); font-size: clamp(28px, 3vw, 38px);
    color: var(--charcoal); line-height: 1.1; margin-bottom: 12px;
    font-weight: 500;
    font-style: italic;
  }
  .pr-name .roman { font-style: normal; }
  .pr-name em { color: var(--amber-deep); font-style: italic; }
  .pr-tag {
    font-family: var(--mono); font-size: 10.5px; color: var(--muted);
    letter-spacing: 0.12em; margin-bottom: 22px; text-transform: uppercase;
    font-weight: 500;
  }
  .pr-prose {
    font-family: var(--body-font);
    font-size: 16px; line-height: 1.75; color: var(--body);
  }
  .pr-prose p { margin-bottom: 18px; }
  .pr-prose em { color: var(--amber-deep); font-style: italic; }
  .pr-prose strong { color: var(--charcoal); font-weight: 600; }

  /* ── Principles ─────────────────────────────────────────── */
  .principle-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 64px;
    max-width: 1040px; margin: 0 auto;
  }
  @media (max-width: 720px) { .principle-list { grid-template-columns: 1fr; gap: 44px; } }
  .principle .pn-num {
    font-family: var(--display); font-style: italic;
    font-size: 26px; color: var(--jade);
    margin-bottom: 10px;
    font-weight: 500;
  }
  .principle .pn-t {
    font-family: var(--display); font-size: 28px;
    color: var(--charcoal); line-height: 1.2; margin-bottom: 14px;
    font-weight: 500;
    font-style: italic;
  }
  .principle .pn-t .roman { font-style: normal; }
  .principle .pn-t em { color: var(--amber-deep); font-style: italic; }
  .principle .pn-d {
    font-family: var(--body-font);
    font-size: 15.5px; line-height: 1.75;
    color: var(--body);
  }

  /* ── Numbers ────────────────────────────────────────────── */
  .numbers-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
    max-width: 1100px; margin: 0 auto;
  }
  @media (max-width: 880px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
  .num-cell {
    padding: 36px 24px;
    background: var(--linen); border: 1px solid var(--rule);
    text-align: center; position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .num-cell::before {
    content: '✦'; position: absolute;
    top: -10px; left: 50%; transform: translateX(-50%);
    color: var(--amber-deep); font-size: 14px;
    background: var(--parchment); padding: 0 8px;
  }
  .num-cell:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15,41,66,0.08);
  }
  .num-cell .val {
    font-family: var(--display); font-size: 64px; color: var(--charcoal);
    line-height: 0.9; font-weight: 500;
    letter-spacing: -0.02em;
    font-style: italic;
  }
  .num-cell .val .roman { font-style: normal; }
  .num-cell .val .plus { color: var(--amber-deep); font-style: normal; }
  .num-cell .lbl {
    font-family: var(--mono); font-size: 10.5px;
    color: var(--jade); letter-spacing: 0.12em; margin-top: 16px;
    text-transform: uppercase; font-weight: 500;
  }
  .num-cell .note {
    font-family: var(--body-font);
    font-size: 13px; color: var(--muted); margin-top: 12px;
    line-height: 1.55;
  }
  .numbers-intro {
    font-family: var(--display); font-style: italic;
    font-size: clamp(18px, 2vw, 22px); line-height: 1.5;
    color: var(--jade); text-align: center;
    max-width: 56ch; margin: 0 auto 56px;
    font-weight: 500;
  }

  /* ── Geography ──────────────────────────────────────────── */
  .geo-essay { max-width: 740px; margin: 0 auto 52px; }
  .geo-essay p { font-family: var(--body-font); font-size: 16.5px; line-height: 1.75; margin-bottom: 22px; color: var(--body); }
  .geo-essay p em { color: var(--amber-deep); font-style: italic; }
  .regions-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    max-width: 1100px; margin: 0 auto;
  }
  @media (max-width: 880px) { .regions-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .regions-grid { grid-template-columns: 1fr; } }
  .region {
    padding: 28px;
    background: var(--bone);
    border-top: 3px solid var(--amber-deep);
    transition: border-top-width 0.3s;
  }
  .region:hover { border-top-width: 6px; }
  .region h4 {
    font-family: var(--display); font-weight: 500;
    color: var(--charcoal); margin-bottom: 8px;
    font-style: italic;
  }
  .region .tag {
    font-family: var(--mono); font-size: 10px;
    color: var(--jade); letter-spacing: 0.10em;
    text-transform: uppercase; margin-bottom: 14px;
    font-weight: 500;
  }
  .region p {
    font-family: var(--body-font); font-size: 14px;
    line-height: 1.65; color: var(--body); margin: 0;
  }

  /* ── Standing (light-touch legal) ──────────────────────── */
  .standing-prose { max-width: 740px; margin: 0 auto 52px; }
  .standing-prose p { font-family: var(--body-font); font-size: 16.5px; line-height: 1.75; margin-bottom: 22px; color: var(--body); }
  .standing-prose p em { color: var(--amber-deep); font-style: italic; }
  .standing-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px;
    max-width: 1100px; margin: 0 auto;
  }
  @media (max-width: 720px) { .standing-grid { grid-template-columns: 1fr; } }
  .standing-block h4 {
    font-family: var(--display);
    font-size: 24px; color: var(--charcoal); margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid var(--amber);
    font-weight: 500;
    font-style: italic;
  }
  .standing-block h4 .roman { font-style: normal; }
  .standing-block dl { margin: 0; }
  .standing-block dt {
    font-family: var(--mono); font-size: 10px;
    color: var(--amber-deep); letter-spacing: 0.10em;
    text-transform: uppercase; margin-top: 16px; font-weight: 500;
  }
  .standing-block dt:first-child { margin-top: 0; }
  .standing-block dd {
    font-family: var(--body-font); font-size: 14.5px;
    line-height: 1.65; color: var(--body);
    margin: 4px 0 0; padding: 0;
  }
  .standing-block dd em { color: var(--amber-deep); font-style: italic; }

  /* ── Correspondence (Contact) ───────────────────────────── */
  .corr-inner {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px;
    align-items: start; max-width: 1100px; margin: 0 auto;
  }
  @media (max-width: 880px) { .corr-inner { grid-template-columns: 1fr; } }
  .corr-prose {
    font-family: var(--body-font);
    font-size: 16.5px; line-height: 1.75;
    margin-bottom: 32px; color: var(--body);
  }
  .corr-prose em { color: var(--amber-deep); font-style: italic; }
  .corr-meta { font-family: var(--body-font); font-size: 14.5px; }
  .corr-meta dl { margin: 0; }
  .corr-meta dt {
    font-family: var(--mono); font-size: 10px;
    color: var(--amber-deep); letter-spacing: 0.10em;
    text-transform: uppercase; margin-top: 18px; font-weight: 500;
  }
  .corr-meta dt:first-child { margin-top: 0; }
  .corr-meta dd {
    line-height: 1.6; color: var(--body);
    margin: 4px 0 0; padding: 0;
  }

  form.corr-form {
    background: var(--bone); padding: 22px;
    border: 1px solid var(--rule);
    border-top: 3px solid var(--amber-deep);
  }
  form.corr-form .fld { margin-bottom: 22px; }
  form.corr-form label {
    display: block;
    font-family: var(--body-font); font-weight: 500;
    font-size: 13px;
    color: var(--jade);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
  }
  form.corr-form label small {
    font-family: var(--mono); font-weight: 400; font-size: 10px;
    color: var(--muted); letter-spacing: 0.04em;
    margin-left: 6px;
  }
  form.corr-form input,
  form.corr-form select,
  form.corr-form textarea {
    width: 100%; padding: 12px 14px;
    background: var(--linen);
    border: 1px solid var(--rule);
    color: var(--ink);
    font-family: var(--body-font); font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
  }
  form.corr-form input:focus,
  form.corr-form select:focus,
  form.corr-form textarea:focus {
    outline: none; border-color: var(--amber-deep);
    background: var(--linen);
    box-shadow: 0 0 0 3px rgba(193,154,87,0.15);
  }
  form.corr-form textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
  form.corr-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 600px) { form.corr-form .row2 { grid-template-columns: 1fr; } }
  form.corr-form .consent {
    display: flex; align-items: flex-start; gap: 12px;
    font-family: var(--body-font);
    font-size: 13px; color: var(--muted); line-height: 1.6;
    margin: 22px 0;
  }
  form.corr-form .consent input { width: auto; margin-top: 3px; }
  form.corr-form .consent label {
    font-family: var(--body-font); font-weight: 400;
    color: var(--muted); margin: 0;
  }
  form.corr-form .honey { position: absolute; left: -9999px; }
  form.corr-form button {
    background: var(--charcoal); color: var(--bone);
    border: 1px solid var(--charcoal); padding: 14px 36px;
    font-family: var(--body-font); font-weight: 500;
    font-size: 15px; letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  form.corr-form button:hover { background: var(--amber-deep); border-color: var(--amber-deep); }
  form.corr-form .note {
    font-family: var(--body-font);
    font-size: 12.5px; color: var(--muted); margin-top: 16px;
    line-height: 1.6;
  }
  .form-status {
    margin-top: 18px; padding: 12px 16px;
    font-family: var(--body-font);
    font-size: 14px; display: none;
  }
  .form-status.ok {
    background: rgba(111,162,168,0.15); color: var(--jade);
    border-left: 3px solid var(--jade); display: block;
  }
  .form-status.err {
    background: rgba(193,154,87,0.15); color: var(--amber-deep);
    border-left: 3px solid var(--amber-deep); display: block;
  }

  /* ── Fiľakovo castle silhouette ─────────────────────── */
  .skyline {
    margin-top: 100px; padding: 40px 0 24px;
    border-top: 1px solid var(--rule);
    background: linear-gradient(180deg, transparent 0%, var(--sandstone) 100%);
    text-align: center;
  }
  .skyline svg { width: 100%; max-width: 940px; height: auto; }
  .skyline-caption {
    margin-top: 12px; font-family: var(--display); font-style: italic;
    font-size: 13px; color: var(--muted); letter-spacing: 0.04em;
    font-weight: 500;
  }
  .skyline-caption .mark { color: var(--amber-deep); margin: 0 8px; font-style: normal; }

  /* ── Records (Policies) ────────────────────────────────── */
  .records-list { display: flex; flex-direction: column; gap: 8px; max-width: 1100px; margin: 0 auto; }
  details.record {
    background: var(--bone);
    border: 1px solid var(--rule);
    transition: border-color 0.2s;
  }
  details.record[open] { border-color: var(--amber-deep); }
  details.record summary {
    list-style: none; cursor: pointer;
    padding: 24px 30px;
    display: grid; grid-template-columns: 60px 1fr 24px;
    gap: 18px; align-items: center;
  }
  details.record summary::-webkit-details-marker { display: none; }
  details.record .n {
    font-family: var(--display); font-style: italic;
    font-size: 16px; color: var(--jade);
    font-weight: 500;
  }
  details.record .n .num { color: var(--amber-deep); font-style: normal; font-weight: 600; }
  details.record .t {
    font-family: var(--display);
    font-size: 22px; color: var(--charcoal);
    line-height: 1.25; font-weight: 500;
    font-style: italic;
  }
  details.record .t .roman { font-style: normal; }
  details.record .t small {
    display: block;
    font-family: var(--body-font); font-style: normal;
    font-size: 13px; color: var(--muted); margin-top: 4px;
    font-weight: 400;
  }
  details.record .icon {
    font-family: var(--display); font-size: 22px;
    color: var(--amber-deep); text-align: right;
    transition: transform 0.25s;
  }
  details.record[open] .icon { transform: rotate(45deg); }
  .record-body {
    padding: 8px 36px 36px 36px;
    font-family: var(--body-font);
    font-size: 14.5px; line-height: 1.75;
  }
  .record-body h5 {
    font-family: var(--display);
    font-size: 19px; color: var(--amber-deep); margin: 24px 0 10px;
    font-weight: 500;
    font-style: italic;
  }
  .record-body p { font-size: 14.5px; line-height: 1.75; max-width: 76ch; margin-bottom: 14px; color: var(--body); }
  .record-body ul { padding-left: 24px; margin: 10px 0 14px; }
  .record-body li { margin-bottom: 6px; font-size: 14px; color: var(--body); }

  /* ── Footer ───────────────────────────────────────────── */
  footer.site {
    background: var(--charcoal); color: var(--bone);
    padding: 88px 0 56px; margin-top: 80px;
    border-top: 3px solid var(--amber-deep);
    position: relative;
    overflow: hidden;
  }
  footer.site::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--jade), var(--amber), var(--jade), transparent);
    opacity: 0.5;
  }
  footer.site .grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px;
  }
  @media (max-width: 880px) { footer.site .grid { grid-template-columns: 1fr; gap: 40px; } }
  footer.site h5 {
    font-family: var(--display);
    font-size: 17px; color: var(--amber); margin-bottom: 20px;
    font-weight: 500;
    font-style: italic;
  }
  footer.site .imp {
    font-family: var(--body-font);
    font-size: 13.5px; line-height: 1.75; color: rgba(253,252,246,0.78);
    margin-bottom: 22px;
  }
  footer.site .imp strong { color: var(--bone); font-weight: 600; }
  footer.site .imp em { color: var(--amber); font-style: italic; }
  footer.site .links { list-style: none; padding: 0; margin: 0; }
  footer.site .links li { padding: 5px 0; }
  footer.site .links a {
    color: rgba(253,252,246,0.72); text-decoration: none;
    font-family: var(--body-font); font-size: 14px;
  }
  footer.site .links a:hover { color: var(--amber); }
  .footer-bottom {
    margin-top: 64px; padding-top: 24px;
    border-top: 1px solid rgba(253,252,246,0.18);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px;
    font-family: var(--mono); font-size: 11px;
    color: rgba(253,252,246,0.5); letter-spacing: 0.06em;
  }
  .footer-bottom .mark { color: var(--amber); }

  /* ── Side rail navigation ─────────────────────────────── */
  .side-rail {
    position: fixed; left: 28px; top: 50%; transform: translateY(-50%);
    z-index: 50; display: flex; flex-direction: column; gap: 14px;
  }
  .side-rail a {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(184,160,130,0.32); position: relative;
    transition: background 0.2s, transform 0.2s;
  }
  .side-rail a:hover, .side-rail a.active {
    background: var(--amber-deep); transform: scale(1.4);
  }
  .side-rail a:hover::after {
    content: attr(data-tooltip);
    position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
    background: var(--charcoal); color: var(--bone);
    padding: 5px 12px; white-space: nowrap;
    font-family: var(--display); font-style: italic; font-weight: 500;
    font-size: 12px; letter-spacing: 0.02em;
  }
  @media (max-width: 1280px) { .side-rail { display: none; } }

  /* ── Cookie banner ───────────────────────────────────── */
  .cookie-banner {
    position: fixed; bottom: 24px; left: 24px; right: 24px;
    max-width: 580px; margin: 0 auto;
    background: var(--charcoal); color: var(--bone);
    padding: 20px 26px;
    border-left: 3px solid var(--amber-deep);
    z-index: 200; box-shadow: 0 12px 36px rgba(15,41,66,0.30);
    display: none; align-items: center; gap: 18px; flex-wrap: wrap;
    font-family: var(--body-font); font-size: 13.5px;
  }
  .cookie-banner.show { display: flex; }
  .cookie-banner a { color: var(--amber); }
  .cookie-banner button {
    background: var(--amber); color: var(--charcoal); border: none;
    padding: 9px 20px;
    font-family: var(--body-font); font-weight: 500;
    font-size: 14px; cursor: pointer;
  }
  .cookie-banner button:hover { background: var(--bone); color: var(--charcoal); }

  /* ── Fade-up reveal ──────────────────────────────────── */
  .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.9s, transform 0.9s; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── Selection ──────────────────────────────────────── */
  ::selection { background: rgba(193,154,87,0.30); color: var(--charcoal); }

  /* ── Harbour wave & ship animation ──────────────────── */
  @keyframes wave-shimmer {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.65; }
  }
  @keyframes ship-bob {
    0%, 100% { transform: translate(0,0) rotate(-0.8deg); }
    50% { transform: translate(0,-1px) rotate(0.8deg); }
  }
  .scale-frame svg .waves {
    animation: wave-shimmer 4.5s ease-in-out infinite;
  }
  .scale-frame svg .distant-ship {
    transform-origin: 170px 132px;
    animation: ship-bob 5.5s ease-in-out infinite;
  }
  /* ── Mobile menu ─────────────────────────────────────── */
  .nav-toggle {
    display: none;
    background: none; border: 1px solid var(--rule);
    color: var(--charcoal); cursor: pointer;
    width: 44px; height: 44px; padding: 0;
    align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
  }
  .nav-toggle:hover { border-color: var(--amber-deep); background: var(--linen); }
  .nav-toggle span {
    display: block; width: 20px; height: 2px;
    background: var(--charcoal); margin: 4px auto;
    transition: transform 0.25s, opacity 0.25s;
  }
  @media (max-width: 880px) {
    .nav-toggle { display: flex; flex-direction: column; }
  }

  .mobile-menu {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(15, 41, 66, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .mobile-menu.open { opacity: 1; visibility: visible; }
  .mobile-menu-panel {
    position: absolute; top: 0; right: 0;
    width: min(340px, 92vw); height: 100%;
    background: var(--parchment);
    border-left: 3px solid var(--amber-deep);
    box-shadow: -12px 0 48px rgba(15, 41, 66, 0.18);
    display: flex; flex-direction: column;
    padding: 24px var(--gutter) 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
  .mobile-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 36px; padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-menu-head .brand { font-size: 20px; }
  .mobile-menu-close {
    background: var(--charcoal); color: var(--bone);
    border: none; width: 44px; height: 44px;
    font-size: 22px; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .mobile-menu-close:hover { background: var(--amber-deep); }
  .mobile-menu-links {
    display: flex; flex-direction: column; gap: 4px;
    font-family: var(--display); font-style: italic;
    font-size: 22px; font-weight: 500;
  }
  .mobile-menu-links a {
    color: var(--charcoal); text-decoration: none;
    padding: 14px 0; border-bottom: 1px solid var(--rule-soft);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu-links a:hover {
    color: var(--amber-deep); padding-left: 8px;
  }
  .mobile-menu-lang {
    margin-top: auto; padding-top: 32px;
    display: flex; gap: 12px;
    font-family: var(--mono); font-size: 12px;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .mobile-menu-lang a,
  .mobile-menu-lang .active {
    text-decoration: none; color: var(--muted); padding: 3px 8px;
    border: 1px solid transparent;
  }
  .mobile-menu-lang .active {
    color: var(--charcoal); border-color: var(--amber-deep);
    background: var(--linen);
  }
  .mobile-menu-lang a:hover { color: var(--charcoal); }
  body.menu-open { overflow: hidden; }

  /* ── Form field validation ───────────────────────────── */
  form.corr-form .fld.invalid label { color: #B85C38; }
  form.corr-form .fld.invalid input,
  form.corr-form .fld.invalid select,
  form.corr-form .fld.invalid textarea {
    border-color: #C45A3A;
    background: rgba(196, 90, 58, 0.06);
    box-shadow: 0 0 0 3px rgba(196, 90, 58, 0.12);
    animation: fld-shake 0.45s ease;
  }
  form.corr-form .consent.invalid {
    padding: 12px; margin-left: -12px; margin-right: -12px;
    border-radius: 2px;
    background: rgba(196, 90, 58, 0.08);
    border: 1px solid rgba(196, 90, 58, 0.35);
    animation: fld-shake 0.45s ease;
  }
  form.corr-form .consent.invalid label { color: #B85C38; }
  @keyframes fld-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
  }

  .turnstile-wrap { margin: 20px 0; min-height: 65px; }
