/* ---------- Farebné tokeny, vytiahnuté priamo z loga ---------- */
:root {
  color-scheme: dark;
  --bg: #0a0a0c;
  --surface: #131317;
  --surface-2: #1a1a1f;
  --text: #ece9e3;
  --muted: #a09c96;
  --gold: #d7a956;
  --gold-bright: #f5cd70;
  --gold-deep: #966a2d;
  --silver: #ded6ca;
  --line: rgba(222, 214, 202, .14);
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 32px rgba(0,0,0,.45);
  --plaque: #000;
  --e: cubic-bezier(.22, .7, .2, 1);

  /* Tlačidlo má vlastné zlato, spoločné pre obe témy. Ostatné zlaté tokeny sa
     vo svetlom režime stmavujú kvôli kontrastu, ale tlačidlo má tmavý text,
     takže potrebuje opak. Všetky tri odtiene držia s #17130a nad 6:1. */
  --btn-hi: #f0c979;
  --btn-mid: #d7a956;
  --btn-lo: #b98f42;
  --btn-text: #17130a;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #faf8f4;
  --surface: #ffffff;
  --surface-2: #f3efe7;
  --text: #1a1814;
  --muted: #6b655c;
  /* Tmavšie zlato než v tmavom režime. Na svetlom podklade musí drobný text
     prejsť 4.5:1 a veľký nadpis 3:1, tieto hodnoty sú namerané, nie odhadnuté. */
  --gold: #7d6838;
  --gold-bright: #8e7748;
  --gold-deep: #5f4f2f;
  --silver: #676460;
  --line: rgba(26, 24, 20, .14);
  --shadow: 0 1px 2px rgba(26,24,20,.06), 0 12px 32px rgba(26,24,20,.08);
  --plaque: #0a0a0c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 16px; }

/* Zlato-strieborný prechod, ktorý drží celý web pokope */
.shine {
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold-bright) 28%, var(--silver) 52%, var(--gold) 78%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.display {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

a { color: var(--gold); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Hlavička ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}
.brand img { width: 38px; height: 38px; display: block; }
.brand b {
  font-size: 15px;
  letter-spacing: .12em;
  font-weight: 500;
  white-space: nowrap;
}
.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: .26em;
  color: var(--muted);
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
}
nav a:hover { color: var(--text); background: var(--surface-2); }
/* Na úzkych displejoch sa odkazy nezahadzujú, len sa stlačia. Pod 560 px
   ustúpi nápis pri značke, aby sa všetky tri zmestili vedľa prepínača. */
@media (max-width: 720px) {
  nav a { padding: 8px 9px; font-size: 13.5px; }
}
@media (max-width: 560px) {
  .bar { gap: 10px; }
  .brand > span { display: none; }
  nav a { padding: 8px 7px; font-size: 13px; }
}

.toggle {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.toggle:hover { color: var(--gold); border-color: var(--gold); }
.toggle svg { width: 18px; height: 18px; }
:root[data-theme="light"] .icon-sun { display: none; }
:root:not([data-theme="light"]) .icon-moon { display: none; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 64px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto 20%;
  height: 420px;
  background: radial-gradient(ellipse at center, color-mix(in srgb, var(--gold) 16%, transparent), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-art { order: -1; }
}

h1 { font-size: clamp(30px, 5.2vw, 50px); line-height: 1.12; margin: 0 0 18px; }
.lede { font-size: clamp(16px, 2vw, 19px); color: var(--muted); margin: 0 0 28px; max-width: 46ch; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--btn-hi), var(--btn-mid) 55%, var(--btn-lo));
  color: var(--btn-text);
}
.btn-primary:hover { filter: brightness(1.07); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-art { display: grid; place-items: center; }
/* Logo má priehľadné pozadie, takže žiadna doska, len mäkký tieň pod ním. */
.plaque { max-width: 400px; width: 100%; padding: 8px; }
.plaque img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, .5));
}
:root[data-theme="light"] .plaque img {
  filter: drop-shadow(0 14px 30px rgba(95, 79, 47, .26));
}

/* ---------- Sekcie ---------- */
section { padding: 64px 0; }
.sec-head { max-width: 58ch; margin-bottom: 36px; }
h2 { font-size: clamp(22px, 3.4vw, 32px); margin: 0 0 12px; line-height: 1.25; }
.sec-head p { color: var(--muted); margin: 0; }

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
}

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--silver));
  opacity: 0;
  transition: opacity .2s ease;
}
.card:hover::after { opacity: 1; }
.card h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: .01em; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.card .num {
  font-family: Georgia, serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 14px;
}

/* ---------- Prečo my ---------- */
.why { background: var(--surface-2); border-block: 1px solid var(--line); }
.why .grid { gap: 28px; }
.why-item h3 { margin: 0 0 6px; font-size: 16px; }
.why-item p { margin: 0; color: var(--muted); font-size: 14.5px; }
.why-item .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 9px;
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 14px;
}
.why-item svg { width: 17px; height: 17px; }

/* ---------- Skúsenosti: nekonečný pás log ---------- */
/* V pokoji sú logá masky v jednom tóne, farbu im dáva web, takže sú čitateľné
   v oboch režimoch. Klik ukáže skutočné farby na svetlej
   podložke (čierne logá by inak na tmavom webe zmizli). */
:root { --logo-ink: #ded6ca; --client-plate: #f3efe7; }
:root[data-theme="light"] { --logo-ink: #4a453e; --client-plate: #ffffff; }

.marquee {
  overflow: hidden;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
/* Dve rovnaké sady za sebou, posun o polovicu = plynulá slučka bez skoku. */
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track,
.marquee.has-pinned .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.client {
  flex: none;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.client-mono, .client-color {
  grid-area: 1 / 1;
  width: var(--w);
  height: var(--h);
  transition: opacity .3s ease, background-color .3s ease;
}
.client-mono {
  background-color: var(--logo-ink);
  opacity: .92;
  -webkit-mask: var(--src) center / contain no-repeat;
  mask: var(--src) center / contain no-repeat;
}
.client-color { display: block; opacity: 0; }

/* Hover bez zlatej, len jemné zosvetlenie. Farby ukáže až klik. */
.client:hover .client-mono { opacity: 1; }

.client[aria-pressed="true"] {
  background: var(--client-plate);
  box-shadow: 0 0 0 1px var(--line), 0 8px 24px rgba(0, 0, 0, .25);
}
.client[aria-pressed="true"] .client-mono { opacity: 0; }
.client[aria-pressed="true"] .client-color { opacity: 1; }
.client:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 620px) {
  .marquee-set { gap: 28px; padding-right: 28px; }
  .marquee-track { animation-duration: 28s; }
}

/* Bez pohybu: pás sa zastaví a logá sa zalomia do riadkov, nič sa neoreže. */
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { width: auto; justify-content: center; }
  .marquee-set { flex-wrap: wrap; justify-content: center; gap: 24px 40px; padding-right: 0; }
  .marquee-set[aria-hidden="true"] { display: none; }
}

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
}
.panel h3 { margin: 0 0 16px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.mail-link {
  font-size: clamp(18px, 2.6vw, 23px);
  text-decoration: none;
  word-break: break-word;
}
.mail-link:hover { text-decoration: underline; text-underline-offset: 4px; }

address { font-style: normal; color: var(--muted); line-height: 1.75; }
address strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

dl.ids { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; font-size: 14.5px; }
dl.ids dt { color: var(--muted); }
dl.ids dd { margin: 0; font-variant-numeric: tabular-nums; }
dl.ids dd small { display: block; color: var(--muted); font-size: 12.5px; font-variant-numeric: normal; }

/* ---------- Pätička ---------- */
footer { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: 13.5px; }
.foot { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; align-items: flex-start; }
.foot p { margin: 0 0 4px; }
.foot a { color: var(--muted); }
.foot a:hover { color: var(--gold); }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.foot-brand img { width: 34px; height: 34px; display: block; }

/* ---------- Pohyb ---------- */

/* Kovový prelesk cez logo. Maska je samo logo, takže svetlo prebehne
   len po písmenách a nie po obdĺžniku okolo nich. */
.logo-stage { position: relative; display: block; isolation: isolate; animation: float 7s ease-in-out infinite; }
.logo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background: linear-gradient(104deg,
    transparent 40%,
    rgba(255,255,255,.45) 47%,
    rgba(255,255,255,.85) 50%,
    rgba(255,255,255,.45) 53%,
    transparent 60%);
  background-size: 280% 100%;
  background-repeat: no-repeat;
  -webkit-mask-image: url("/logo-t-640.png");
  mask-image: url("/logo-t-640.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  animation: sheen 7.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@keyframes sheen {
  0%        { background-position: 190% 0; }
  32%       { background-position: -90% 0; }
  100%      { background-position: -90% 0; }
}

/* Pomalé prelievanie zlata v nadpise a v e-maile. */
.hero h1.shine, .mail-link.shine {
  background-size: 220% 100%;
  animation: shimmer 12s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0 0; }
  100% { background-position: -220% 0; }
}

/* Nábeh pri scrollovaní. Posúva sa cez `translate`, aby `transform`
   zostal voľný pre hover na kartách. */
.sec-head, .card, .why-item, .panel, .hero-copy > *, .hero-art {
  transition: opacity .75s var(--e) var(--rd, 0ms),
              translate .75s var(--e) var(--rd, 0ms);
}
html.js-reveal .sec-head,
html.js-reveal .card,
html.js-reveal .why-item,
html.js-reveal .panel,
html.js-reveal .hero-copy > *,
html.js-reveal .hero-art {
  opacity: 0;
  translate: 0 20px;
}
html.js-reveal .is-in { opacity: 1; translate: 0 0; }

.card {
  transition: opacity .75s var(--e) var(--rd, 0ms),
              translate .75s var(--e) var(--rd, 0ms),
              transform .22s ease,
              border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gold) 45%, var(--line));
}

header { transition: box-shadow .25s ease; }
header.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, .3); }
:root[data-theme="light"] header.scrolled { box-shadow: 0 6px 20px rgba(26, 24, 20, .09); }

.btn-primary { transition: filter .2s ease, transform .2s ease; }
.btn-primary:hover { transform: translateY(-2px); }
.toggle { transition: color .2s ease, border-color .2s ease; }

/* Pri systémovom obmedzení pohybu sa nič nehýbe a obsah je rovno viditeľný. */
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .sec-head,
  html.js-reveal .card,
  html.js-reveal .why-item,
  html.js-reveal .panel,
  html.js-reveal .hero-copy > *,
  html.js-reveal .hero-art {
    opacity: 1;
    translate: none;
  }
}

/* ---------- Cookie lišta ---------- */
.cc {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 420px;
  width: calc(100% - 32px);
}
.cc-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.cc-title { margin: 0 0 8px; font-size: 15px; font-weight: 600; letter-spacing: .01em; }
.cc-text { margin: 0 0 16px; font-size: 13.5px; color: var(--muted); }
/* Obe tlačidlá zámerne rovnako veľké a rovnako výrazné. Odmietnutie musí
   byť rovnako ľahké ako súhlas, inak to regulátori v EÚ berú ako nátlak. */
.cc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cc-btn {
  padding: 11px 14px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.cc-btn:hover { border-color: var(--gold); color: var(--gold); }
.cc-more {
  margin-top: 12px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--muted);
  font: inherit;
  font-size: 12.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cc-more:hover { color: var(--gold); }
.cc-list { margin: 0 0 16px; font-size: 12.5px; color: var(--muted); }
.cc-list h3 { margin: 12px 0 4px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--text); font-weight: 600; }
.cc-list ul { margin: 0; padding-left: 18px; }
.cc-list li { margin-bottom: 3px; }
.cc-list code { font-size: 11.5px; color: var(--gold); }

.cc-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 55;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.cc-reopen:hover { color: var(--gold); border-color: var(--gold); }
.cc-reopen svg { width: 19px; height: 19px; }

.skip {
  position: absolute; left: -9999px;
  background: var(--surface); color: var(--text);
  padding: 10px 16px; border-radius: 8px; border: 1px solid var(--gold);
}
.skip:focus { left: 16px; top: 12px; z-index: 50; }

/* ---------- Tlačidlo Kontaktujte nás v hlavičke ---------- */
/* Rovnaké zlato ako hlavné tlačidlo. Prelesk a jemný pulz ho odlíšia od odkazov,
   pri obmedzenom pohybe oboje vypne globálne pravidlo vyššie. */
.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  margin: 0 4px 0 8px;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  color: var(--btn-text);
  background: linear-gradient(135deg, var(--btn-hi), var(--btn-mid) 55%, var(--btn-lo));
  animation: cta-pulse 3.2s ease-out infinite;
  transition: filter .2s ease, transform .2s ease;
}
nav a.nav-cta, nav a.nav-cta:hover { color: var(--btn-text); background: linear-gradient(135deg, var(--btn-hi), var(--btn-mid) 55%, var(--btn-lo)); }
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, .6) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: cta-sheen 3.2s ease-in-out infinite;
  pointer-events: none;
}
.nav-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
@keyframes cta-sheen { 0%, 55% { transform: translateX(-130%); } 85%, 100% { transform: translateX(130%); } }
@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(215, 169, 86, .45); }
  70%, 100% { box-shadow: 0 0 0 10px rgba(215, 169, 86, 0); }
}
.nav-cta .cta-short { display: none; }
@media (max-width: 560px) {
  nav a.nav-cta { padding: 8px 11px; font-size: 13px; margin: 0 2px 0 4px; }
  .nav-cta .cta-long { display: none; }
  .nav-cta .cta-short { display: inline; }
}

/* ---------- Kontaktný formulár ---------- */
:root { --danger: #f28b82; --ok: #7fd4a0; }
:root[data-theme="light"] { --danger: #b3261e; --ok: #1e7a45; }

.page-head { padding-top: 56px; padding-bottom: 8px; }
.page-head h1 { font-size: clamp(28px, 4.6vw, 44px); margin: 0 0 12px; }
.page-head p { color: var(--muted); margin: 0; max-width: 56ch; }

.form-grid { display: grid; grid-template-columns: 1.45fr .85fr; gap: 24px; align-items: start; padding-top: 28px; padding-bottom: 72px; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.field .req { color: var(--gold); margin-left: 2px; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent);
}
.field [aria-invalid="true"] { border-color: var(--danger); }
.field .err { display: block; font-size: 12.5px; color: var(--danger); margin-top: 5px; }
.field .err:empty { display: none; }

/* Pasca na roboty: človek pole nevidí, robot ho vyplní. */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.captcha { margin: 4px 0 16px; min-height: 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
button.btn { font: inherit; font-size: 15px; font-weight: 500; cursor: pointer; border: 0; }
.btn[disabled] { opacity: .6; cursor: progress; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 16px 0 0; }

.form-status { margin-top: 18px; padding: 12px 14px; border-radius: 9px; font-size: 14px; border: 1px solid var(--line); }
.form-status:empty { display: none; }
.form-status.ok { border-color: color-mix(in srgb, var(--ok) 55%, transparent); color: var(--text); background: color-mix(in srgb, var(--ok) 10%, transparent); }
.form-status.bad { border-color: color-mix(in srgb, var(--danger) 55%, transparent); color: var(--text); background: color-mix(in srgb, var(--danger) 10%, transparent); }

.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; }
.aside-card h2 { margin: 0 0 12px; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.aside-card + .aside-card { margin-top: 16px; }
.aside-card address, .aside-card p { font-style: normal; color: var(--muted); margin: 0; line-height: 1.75; font-size: 14.5px; }
.aside-card strong { color: var(--text); }

/* ---------- Video ---------- */
.video-sec { padding: 8px 0 64px; }
.video-frame {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  line-height: 0;
}
.video-frame video { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; background: #000; }
.video-caption {
  text-align: center;
  margin: 22px auto 0;
  font-size: clamp(16px, 2.4vw, 21px);
  letter-spacing: .14em;
  color: var(--gold);
}
