/* =========================================================================
   Mali Dron — stylesheet
   Light & minimal. Design tokens first, then base, layout, components, pages.
   No build step: plain CSS with custom properties.
   ========================================================================= */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  --bg: #ffffff;
  --surface: #f6f7f8;
  --surface-2: #eef0f2;
  --ink: #14171a;
  --ink-soft: #55606a;
  --ink-faint: #8b959e;
  --line: #e4e7ea;
  --line-strong: #d3d8dc;
  --accent: #1f6f6a;          /* muted Adriatic slate-teal, used sparingly */
  --accent-ink: #12413e;
  --accent-wash: #e9f2f1;
  --danger: #b23b3b;
  --focus: #1f6f6a;

  --radius-s: 8px;
  --radius: 12px;
  --radius-l: 20px;

  --shadow-1: 0 1px 2px rgba(20, 23, 26, .04), 0 4px 16px rgba(20, 23, 26, .05);
  --shadow-2: 0 6px 28px rgba(20, 23, 26, .10);

  --container: 1120px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --step--1: clamp(.82rem, .8rem + .1vw, .9rem);
  --step-0: clamp(1rem, .96rem + .2vw, 1.08rem);
  --step-1: clamp(1.2rem, 1.1rem + .5vw, 1.45rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3: clamp(1.95rem, 1.6rem + 1.8vw, 2.9rem);
  --step-4: clamp(2.4rem, 1.9rem + 2.8vw, 4rem);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ----- Reset / base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* i18n first-paint guard: hide until dictionary applied for non-default langs */
html.i18n-loading body { opacity: 0; }
body { opacity: 1; transition: opacity .15s var(--ease); }

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

h1, h2, h3, h4 { line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
p { text-wrap: pretty; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-ink); }

img, video, svg { display: block; max-width: 100%; height: auto; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 3px;
}

/* keep anchor targets clear of the sticky header */
:target,
[id="forma"], [id="prijava"], [id="ponuda"],
section[id], .form-success { scroll-margin-top: 90px; }

::selection { background: var(--accent-wash); }

/* ----- Utilities ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--surface); }

.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;
}

.skip-link {
  position: absolute;
  left: .75rem; top: -3rem;
  background: var(--ink); color: #fff;
  padding: .6rem 1rem; border-radius: var(--radius-s);
  z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: .75rem; color: #fff; }

.kicker {
  display: inline-block;
  font-size: var(--step--1);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: .9rem;
}

.lead { font-size: var(--step-1); color: var(--ink-soft); font-weight: 400; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head p { color: var(--ink-soft); margin-top: .75rem; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

/* ----- Buttons --------------------------------------------------------- */
.btn {
  --_bg: var(--ink);
  --_fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: .5ch;
  padding: .85em 1.5em;
  font: inherit;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: .02em;
  color: var(--_fg);
  background: var(--_bg);
  border: 1px solid var(--_bg);
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease);
}
.btn:hover { color: var(--_fg); transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --_bg: transparent;
  --_fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--surface); }
.btn--accent { --_bg: var(--accent); --_fg: #fff; }
.btn--lg { padding: 1em 1.9em; font-size: var(--step-0); }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ----- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
}
.brand svg { width: 26px; height: 26px; flex: 0 0 auto; }
.brand span { white-space: nowrap; }
.brand:hover { color: var(--ink); }

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(.5rem, 2vw, 1.6rem);
}
.primary-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: var(--step--1);
  font-weight: 500;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }
.primary-nav .btn { color: #fff; padding: .7em 1.3em; border-bottom: 0; white-space: nowrap; }
.primary-nav .btn:hover { color: #fff; }
.primary-nav .btn--ghost { color: var(--ink); }

.header-tools { display: flex; align-items: center; gap: .75rem; }

.lang-switch { position: relative; }
.lang-switch select {
  appearance: none;
  font: inherit;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .45rem 2rem .45rem .9rem;
  cursor: pointer;
}
.lang-switch::after {
  content: "";
  position: absolute;
  right: .8rem; top: 50%;
  width: .5rem; height: .5rem;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.5rem;
    margin-left: 0;
    transform: translateY(-120%);
    transition: transform .28s var(--ease);
    box-shadow: var(--shadow-2);
  }
  .primary-nav[data-open="true"] { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .25rem; }
  .primary-nav a { padding: .8rem .25rem; border-bottom: 1px solid var(--line); }
  .primary-nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .header-tools { margin-left: auto; }
}

/* ----- Hero + rotating background ----------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4rem, 12vw, 9rem);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--surface);
}
.hero__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  background-size: cover;
  background-position: center;
}
.hero__layer.is-active { opacity: 1; }
.hero__layer video,
.hero__layer img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {   /* readability wash for light theme */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
      rgba(255,255,255,.72) 0%,
      rgba(255,255,255,.58) 45%,
      rgba(255,255,255,.86) 100%);
}
.hero__inner { max-width: 40rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__note {
  display: inline-flex; align-items: center; gap: .55ch;
  margin-top: 1.5rem;
  font-size: var(--step--1); font-weight: 600;
  color: var(--accent-ink);
  background: var(--accent-wash);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  border-radius: 999px;
  padding: .45rem 1rem;
}
.hero__note svg { width: 15px; height: 15px; flex: 0 0 auto; }

/* Animated placeholder backgrounds (used until real drone clips are added).
   Slow, subtle pan/zoom of a layered gradient "aerial horizon". */
.ph-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 15%, #dfeeee 0%, rgba(223,238,238,0) 60%),
    radial-gradient(1000px 700px at 85% 90%, #e7eef3 0%, rgba(231,238,243,0) 55%),
    linear-gradient(175deg, #eef3f4 0%, #f7f8f9 55%, #eceff1 100%);
}
.ph-bg::before {
  content: "";
  position: absolute; inset: -10%;
  background:
    linear-gradient(115deg, transparent 40%, rgba(31,111,106,.06) 50%, transparent 60%);
  animation: ph-pan 22s linear infinite;
}
.ph-bg--b { filter: hue-rotate(-12deg) saturate(1.05); }
.ph-bg--c { filter: hue-rotate(10deg) brightness(1.02); }
@keyframes ph-pan {
  0%   { transform: translate3d(-6%, -3%, 0) scale(1.05); }
  50%  { transform: translate3d(4%, 3%, 0) scale(1.12); }
  100% { transform: translate3d(-6%, -3%, 0) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .ph-bg::before { animation: none; }
  .hero__layer { transition: none; }
}

/* ----- Cards ------------------------------------------------------------ */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.card--link:hover { box-shadow: var(--shadow-1); transform: translateY(-2px); border-color: var(--line-strong); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); }
.card__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent-wash);
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.card__icon svg { width: 22px; height: 22px; }

.tag {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-soft);
}
.tag--free { background: var(--accent); color: #fff; letter-spacing: .04em; }

/* ----- Service detail blocks ------------------------------------------- */
.service {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.service:first-of-type { border-top: 0; }
@media (min-width: 820px) {
  .service { grid-template-columns: 1.1fr 1fr; align-items: center; }
  .service--flip .service__media { order: -1; }
}
.service__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.service__media video, .service__media img { width: 100%; height: 100%; object-fit: cover; }
.service__body h2 { font-size: var(--step-2); margin-bottom: .4rem; }
.service__meta { font-size: var(--step--1); color: var(--ink-faint); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 1.5rem; display: grid; gap: .55rem; }
.checklist li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: .5em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ----- Steps (how it works) ------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: clamp(1rem, 3vw, 1.75rem); }
.steps--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.step { position: relative; padding: 1.75rem 1.4rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -18px; left: 1.2rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  font-weight: 700; font-size: .95rem;
}
.step h3 { font-size: var(--step-0); margin-bottom: .35rem; }
.step p { color: var(--ink-soft); font-size: var(--step--1); }

/* ----- Gallery -------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  gap: clamp(.6rem, 1.6vw, 1.1rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
}
.media-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}
.media-tile video, .media-tile img { width: 100%; height: 100%; object-fit: cover; }
.media-tile__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(255,255,255,.25);
  transition: background .2s var(--ease);
}
.media-tile__play svg { width: 54px; height: 54px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.media-tile.is-playing .media-tile__play { display: none; }
/* placeholder tiles (no real <video> yet) shouldn't look clickable */
.media-tile:not(:has(video)) { cursor: default; }
.media-tile:not(:has(video)) .media-tile__play { display: none; }
.media-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .8rem 1rem;
  font-size: var(--step--1);
  color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
}

/* ----- Forms ------------------------------------------------------------ */
.form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.form-grid { display: grid; gap: 1.1rem 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--ink); }
.field .req { color: var(--danger); }
.field .hint { font-size: var(--step--1); color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: var(--step-0);
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-s);
  padding: .7rem .85rem;
  width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-wash);
}
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--danger); }
.field .error { font-size: var(--step--1); color: var(--danger); font-weight: 600; min-height: 1.1em; }

.checkbox-row { display: flex; gap: .65rem; align-items: flex-start; }
.checkbox-row input { width: 1.1rem; height: 1.1rem; margin-top: .28rem; flex: 0 0 auto; }
.checkbox-row label { font-weight: 400; color: var(--ink-soft); font-size: var(--step--1); }

.checkbox-group { display: grid; gap: .5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.checkbox-group .checkbox-row label { font-size: var(--step-0); color: var(--ink); }

.form-note {
  font-size: var(--step--1);
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-s);
  padding: .9rem 1rem;
  margin: 1.25rem 0;
}
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status { margin-top: 1rem; font-weight: 600; }
.form-status[data-state="ok"] { color: var(--accent-ink); }
.form-status[data-state="err"] { color: var(--danger); }

.form-success {
  display: none;
  border: 1px solid var(--accent);
  background: var(--accent-wash);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--accent-ink);
}
.form-success[data-show="true"] { display: block; }
.form-success + form[data-hidden="true"] { display: none; }

/* ----- Tabs (contact page) --------------------------------------------- */
.tabs { display: flex; gap: .5rem; border-bottom: 1px solid var(--line); margin-bottom: 1.75rem; flex-wrap: wrap; }
.tab {
  font: inherit; font-weight: 600; font-size: var(--step--1);
  background: transparent; border: 0;
  padding: .8rem 1rem;
  color: var(--ink-soft);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tab[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }
.tabpanel[hidden] { display: none; }

/* ----- Proposal page accent ------------------------------------------------ */
.proposal-hero {
  background: linear-gradient(180deg, var(--accent-wash), var(--bg));
  border-bottom: 1px solid var(--line);
}
.free-badge {
  display: inline-flex; align-items: center; gap: .5ch;
  background: var(--accent); color: #fff;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  font-size: var(--step--1);
  padding: .5rem 1rem; border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* ----- Landmarks page ---------------------------------------------------- */
.price-callout {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 1.5rem 1.75rem; background: var(--surface);
}
.price-callout .price { font-size: var(--step-3); font-weight: 700; letter-spacing: -.02em; }
.price-callout .price small { font-size: var(--step-0); color: var(--ink-soft); font-weight: 500; }

.landmark-list { list-style: none; padding: 0; display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }
.landmark-list li { border: 1px solid var(--line); border-radius: var(--radius-s); padding: .7rem .9rem; color: var(--ink-soft); font-size: var(--step--1); }

/* ----- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #c9ced3;
  padding-block: clamp(3rem, 7vw, 4.5rem);
  font-size: var(--step--1);
}
.site-footer a { color: #fff; }
.site-footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.site-footer h4 { color: #fff; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .5rem; }
.site-footer__brand { font-size: 1.15rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: .5rem; }
.site-footer__brand svg { width: 24px; height: 24px; }
.site-footer__bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  color: var(--ink-faint);
}

/* ----- CTA band ---------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-l);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p { color: #c9ced3; max-width: 40rem; margin: 0 auto 1.75rem; }
.cta-band .btn--ghost { --_fg: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ----- Misc page furniture --------------------------------------------- */
.page-hero { padding-block: clamp(3rem, 8vw, 5.5rem); background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero p { color: var(--ink-soft); max-width: 44rem; margin-top: .75rem; }
.prose { max-width: 44rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; margin-bottom: .75rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.25rem; display: grid; gap: .4rem; margin-block: 1rem; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-faint); font-size: 1.3rem; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--ink-soft); margin-top: .75rem; }

.center { text-align: center; }
.mt-l { margin-top: clamp(2rem, 5vw, 3rem); }
