/* ==========================================================================
   Aquanika — www.aquanika.rs
   Čist CSS, bez build koraka. Tokeni izvedeni iz brend/PALETTE.md i
   brend/theme.css (shadcn HSL vrednosti prevedene u HEX).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokeni — svetla tema
   -------------------------------------------------------------------------- */
:root {
  /* Površine i tekst */
  --bg:            #F7F7FB;   /* Bg blago */
  --surface:       #FFFFFF;   /* Kartice */
  --heading:       #2A2A4A;   /* Brand Deep */
  --text:          #1A1A2E;   /* Tekst 1 */
  --muted:         #6B6E8A;   /* Tekst 2 */
  --soft:          #8C8CB4;   /* Lavanda — tihe oznake */
  --line:          #EDEDF5;   /* Border */
  --mist:          #C8C8DC;   /* Mist */

  /* Brend */
  --primary:       #5B5FA8;
  --primary-hover: #2A2A4A;

  /* Akcent — voda */
  --aqua:          #4A9BB5;
  --aqua-mist:     #E0F2F8;
  --aqua-ink:      #4A6E7B;
  --aqua-line:     #B9DDE9;

  /* Dugmad (puna) */
  --btn-bg:        #2A2A4A;
  --btn-fg:        #FFFFFF;
  --btn-bg-hover:  #5B5FA8;

  /* Tamni panel „Proizvodnja” */
  --deep-bg:       #2A2A4A;
  --deep-line:     #43436B;
  --deep-text:     #C8C8DC;
  --deep-head:     #FFFFFF;
  --deep-accent:   #8FC4D4;

  /* Ljubičasti panel „Za firme” */
  --panel-bg:      #5B5FA8;
  --panel-head:    #FFFFFF;
  --panel-text:    #E2E3F2;
  --panel-label:   #D8D9EC;
  --panel-line:    #A9ABD6;

  /* Placeholderi za fotografije */
  --ph-a:          #EDEDF5;
  --ph-b:          #F7F7FB;
  --ph-line:       #EDEDF5;
  --ph-ink:        #6B6E8A;
  --ph-chip:       #FFFFFF;

  /* Ritam */
  --wrap:          1440px;
  --gutter:        clamp(20px, 4vw, 56px);
  --section-y:     clamp(56px, 7vw, 96px);
  --radius:        6px;
  --header-h:      88px;

  --font-sans:     Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono:     "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Sajt je namerno SAMO u svetloj temi — nema prefers-color-scheme bloka.
     color-scheme: light sprečava da browser sam potamni kontrole, skrolbar
     i pozadinu (npr. Auto dark theme na Chrome-u za Android). */
  color-scheme: light;
}

/* --------------------------------------------------------------------------
   2. Osnova
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

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

::selection { background: var(--aqua-mist); color: var(--heading); }

h1, h2, h3 { color: var(--heading); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Preskoči na sadržaj — vidljivo tek na fokus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--surface);
  color: var(--heading);
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   3. Raspored
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section[id] { scroll-margin-top: var(--header-h); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin: 0 0 20px;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin: 0 0 12px;
}

/* Rešetka sa hairline linijama: 1px razmak preko pozadine u boji ivice */
.hairline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.hairline > * { background: var(--surface); }
ul.hairline { margin: 0; padding: 0; }
dl.stats { margin: 0; }

/* --------------------------------------------------------------------------
   4. Zaglavlje i navigacija (mobilni meni je čist CSS, preko :target)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}

.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--heading); }

.site-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 11px 20px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 13px;
  transition: background-color 0.15s ease;
}
.site-nav a.nav-cta:hover { background: var(--primary-hover); color: #fff; }

/* Dugmad za otvaranje/zatvaranje — vidljiva samo na uskim ekranima */
.nav-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  border-radius: 4px;
  color: var(--heading);
}
.nav-btn svg { width: 22px; height: 22px; }

@media (max-width: 899px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 6px var(--gutter) 20px;
    box-shadow: 0 18px 30px -22px rgba(20, 20, 28, 0.5);
  }
  /* Meta je sam sticky header: uvek je iscrtan u vidnom polju, pa
     otvaranje menija ne pomera stranicu. Klik na stavku menja :target
     u sekciju -> meni se sam zatvara, bez JavaScripta. */
  .site-header:target .site-nav { display: flex; }

  .site-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }
  .site-nav > a.nav-cta {
    justify-content: center;
    border-bottom: 0;
    margin-top: 16px;
    padding: 15px 20px;
    font-size: 14px;
  }

  .nav-btn.nav-open { display: inline-flex; }
  .site-header:target .nav-open { display: none; }
  .site-header:target .nav-close { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   5. Dugmad
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-solid { background: var(--btn-bg); color: var(--btn-fg); }
.btn-solid:hover { background: var(--btn-bg-hover); color: var(--btn-fg); }

.btn-ghost { border: 1px solid var(--mist); color: var(--heading); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

.link-underline {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 3px;
}

.link-mono {
  font-family: var(--font-mono);
  font-size: 14px;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(36px, 4.5vw, 64px) clamp(40px, 5vw, 64px);
}
.hero .eyebrow { color: var(--primary); margin-bottom: 24px; }

.hero h1 {
  font-size: clamp(38px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-media { justify-self: end; width: 100%; max-height: 420px; aspect-ratio: 4 / 3; }

@media (max-width: 899px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { justify-self: stretch; max-height: 320px; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* --------------------------------------------------------------------------
   7. Placeholderi za fotografije (zameniti pravim <img>)
   -------------------------------------------------------------------------- */
.ph {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(135deg, var(--ph-a) 0 10px, var(--ph-b) 10px 20px);
  border: 1px solid var(--ph-line);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.ph span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ph-ink);
  background: var(--ph-chip);
  padding: 6px 10px;
}
.ph-aqua {
  background: repeating-linear-gradient(135deg, var(--aqua-mist) 0 10px, color-mix(in srgb, var(--aqua-mist) 45%, var(--surface)) 10px 20px);
  border-color: var(--aqua-line);
}
.ph-aqua span { color: var(--aqua-ink); }

/* --------------------------------------------------------------------------
   8. Traka sa brojkama
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { background: var(--bg); padding: 30px 28px; }
.stat dt {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.1;
}
.stat dt span { font-size: 0.45em; font-weight: 500; color: var(--muted); }
.stat dd {
  margin: 8px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 900px) {
  .stat:first-child { padding-left: 0; }
  .stat:last-child  { padding-right: 0; }
}

/* --------------------------------------------------------------------------
   9. O nama
   -------------------------------------------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.section-title {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.prose { font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 54ch; margin: 0 0 16px; }
.prose:last-child { margin-bottom: 0; }

.vm { grid-template-rows: 1fr 1fr; }
.vm > div { padding: 32px 30px; display: flex; flex-direction: column; justify-content: center; }
.vm p { font-size: 16px; line-height: 1.6; margin: 0; color: var(--heading); }

.o-nama { padding-block: var(--section-y) 0; }

/* --------------------------------------------------------------------------
   10. Voda — analiza
   -------------------------------------------------------------------------- */
.voda { padding-block: var(--section-y) clamp(48px, 6vw, 80px); }
.voda .eyebrow { margin-bottom: 20px; }
.voda h2 {
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}
.voda-lede {
  font-size: clamp(16.5px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 clamp(36px, 4vw, 56px);
}
.voda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.spec { width: 100%; border-collapse: collapse; font-size: 16px; }
/* Dostupno čitačima ekrana i pretraživačima, nevidljivo na ekranu */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.spec tr { border-bottom: 1px solid var(--line); }
.spec th, .spec td { padding: 16px 0; }
.spec th { text-align: left; font-weight: 400; color: var(--muted); }
.spec td {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--heading);
}
.voda-note { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 24px 0 0; max-width: 52ch; }
.voda-media { width: 100%; max-height: 400px; aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------------------
   11. Proizvodnja — tamna traka
   -------------------------------------------------------------------------- */
.band {
  max-width: var(--wrap);
  margin-inline: auto;
  background: var(--deep-bg);
  color: var(--deep-text);
  padding-block: clamp(56px, 7vw, 92px);
}
.band .wrap { padding-inline: var(--gutter); }
.band .eyebrow { color: var(--deep-accent); margin-bottom: 18px; }
.band h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--deep-head);
}
.band-lede { font-size: 17px; line-height: 1.6; color: var(--deep-text); max-width: 58ch; margin: 0 0 48px; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--deep-line);
}
.step { background: var(--deep-bg); padding: 32px 28px 36px; }
.step-no { font-family: var(--font-mono); font-size: 12px; color: var(--deep-accent); }
.step h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
  color: var(--deep-head);
}
.step p { font-size: 15.5px; line-height: 1.65; color: var(--deep-text); margin: 0; }
@media (min-width: 900px) {
  .step:first-child { padding-left: 0; }
  .step:last-child  { padding-right: 0; }
}

.certs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--deep-line);
  font-size: 15px;
  color: var(--deep-text);
  list-style: none;
}
.certs li::before { content: "✓"; color: var(--deep-accent); margin-right: 8px; }

/* --------------------------------------------------------------------------
   12. Usluge
   -------------------------------------------------------------------------- */
.usluge { padding-block: var(--section-y); }
.usluge > h2 { font-size: clamp(28px, 3.2vw, 46px); letter-spacing: -0.03em; margin: 0 0 12px; }
.usluge-lede { font-size: 17px; color: var(--muted); margin: 0 0 44px; max-width: 60ch; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color 0.15s ease;
}
.card:hover { border-color: var(--soft); }
.card-kicker { font-family: var(--font-mono); font-size: 12px; color: var(--aqua); }
.card h3 {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
}
.card p { font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 0 0 20px; }
.card-meta { font-family: var(--font-mono); font-size: 13px; color: var(--soft); margin: 0; }

/* Poziv na sanitizaciju */
.callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--aqua-mist);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 52px);
  margin-top: 20px;
}
.callout .eyebrow { margin-bottom: 16px; letter-spacing: 0.12em; }
.callout h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.028em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.callout p { font-size: 16px; line-height: 1.65; color: var(--aqua-ink); margin: 0 0 24px; max-width: 50ch; }
.callout .btn { padding: 14px 26px; }
.callout-media { width: 100%; max-height: 340px; aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------------------
   13. Split — domaćinstva / firme
   -------------------------------------------------------------------------- */
.split { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split > * { padding: clamp(32px, 4vw, 52px); }
.split h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.split p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; max-width: 46ch; }

.hairline > .panel { background: var(--panel-bg); }
.panel { color: var(--panel-text); }
.panel .label { color: var(--panel-label); }
.panel h2 { color: var(--panel-head); }
.panel p { color: var(--panel-text); }
.panel .link-mono { color: #fff; border-bottom-color: var(--panel-line); }
.panel .link-mono:hover { color: #fff; border-bottom-color: #fff; }

/* --------------------------------------------------------------------------
   14. Distributeri
   -------------------------------------------------------------------------- */
.distributeri { padding-block: var(--section-y); }
.dist-head {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.dist-head h2 { font-size: clamp(28px, 3.2vw, 46px); letter-spacing: -0.03em; margin: 0 0 14px; }
.dist-head p { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 56ch; }

/* 3x3: devet distributera staje tačno u tri reda po tri, bez siročeta u
   poslednjem redu. Linije i dalje crtamo box-shadow-om, ne razmakom — na
   tabletu (2 kolone) poslednji red ostaje nepopunjen, pa bi gap pokazao
   boju ivice kao sivi blok. */
.dist-grid {
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface);
}
@media (min-width: 600px) {
  .dist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .dist-grid { grid-template-columns: repeat(3, 1fr); }
}
.dist-grid > li {
  padding: 26px 24px;
  list-style: none;
  background: var(--surface);
  box-shadow: 1px 0 0 var(--line), 0 1px 0 var(--line);
}
.dist-name { font-size: 18px; font-weight: 600; margin: 0 0 8px; color: var(--heading); }
.dist-grid address {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  font-style: normal;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. Kontakt
   -------------------------------------------------------------------------- */
.kontakt {
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}
.kontakt h2 { font-size: clamp(28px, 3.2vw, 46px); letter-spacing: -0.03em; margin: 0 0 16px; }
.kontakt-lede { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin: 0 0 32px; max-width: 46ch; }
.kontakt-links { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.tel-big {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--heading);
  line-height: 1.2;
}
.tel-big:hover { color: var(--primary); }
.mail-mono { font-family: var(--font-mono); font-size: 17px; }

.kontakt-cards { display: grid; gap: 20px; align-content: start; }
.info-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.info-card address { font-size: 16px; line-height: 1.6; margin: 0; color: var(--heading); font-style: normal; }
.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  font-size: 16px;
  margin: 0;
}
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-family: var(--font-mono); color: var(--heading); }
.hours dd.closed { color: var(--soft); }

/* --------------------------------------------------------------------------
   16. Podnožje
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 32px;
  align-items: start;
}
.site-footer img { height: 34px; width: auto; margin-bottom: 14px; }
.site-footer address {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--soft);
  font-style: normal;
  margin: 0;
}
.footer-contact { font-size: 14.5px; line-height: 1.9; color: var(--muted); }
.footer-hours { font-family: var(--font-mono); font-size: 13px; line-height: 1.9; color: var(--soft); }
.footer-nav { display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; list-style: none; margin: 0; padding: 0; }
.footer-nav a { color: var(--muted); }
.footer-nav a:hover { color: var(--heading); }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13.5px;
  color: var(--soft);
  margin: 8px 0 0;
}

/* --------------------------------------------------------------------------
   17. Stranica 404
   -------------------------------------------------------------------------- */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(56px, 10vw, 120px);
}
.page-404 h1 { font-size: clamp(32px, 5vw, 60px); letter-spacing: -0.03em; margin: 0 0 16px; }
