/* =============================================================================
   Arthur Gyros — stilovi
   Paleta je uzeta direktno sa LED flajera i iz logotipa:
     #ED8015  narandzasta iz logotipa
     #EE8D22  narandzasta sa flajera (svetlija, za hover)
     #971555  vinska iz cenovnih polja na LED 03
     #1F1E1D  brend crna iz logotipa
     kraft    ton papirne ambalaze
   ========================================================================== */

/* ------------------------------------------------------------- 1. tokeni -- */
:root {
  --ink:        #100e0c;
  --ink-2:      #1a1817;
  --ink-3:      #24211f;
  --ink-line:   #322e2a;

  --flame:      #ed8015;
  --ember:      #ee8d22;
  --wine:       #971555;
  --wine-soft:  #b52568;

  --kraft:      #c4a47c;
  --paper:      #f6f1e9;
  --paper-2:    #ebe3d6;

  --text:       #f4efe9;
  --text-dim:   #b3a89c;
  --text-mute:  #8b8177;

  --font-display: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Barlow", system-ui, -apple-system, sans-serif;
  --font-label:   "Barlow Condensed", "Barlow", system-ui, sans-serif;

  --radius:     14px;
  --radius-sm:  8px;
  --wrap:       1180px;
  --gutter:     clamp(1.15rem, 4vw, 2.5rem);
  --section:    clamp(3.75rem, 8vw, 6.75rem);

  --shadow:     0 24px 60px -24px rgb(0 0 0 / .75);
  --ease:       cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 clamp(1rem, .96rem + .2vw, 1.075rem)/1.65 var(--font-body);
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.022em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

ul { margin: 0; padding: 0; list-style: none; }

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

::selection { background: var(--flame); color: #1b1006; }

/* ------------------------------------------------------------ 3. tipovi -- */
.h-xl { font-size: clamp(2.6rem, 7.4vw, 5.25rem); }
.h-lg { font-size: clamp(2.05rem, 4.6vw, 3.35rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.h-sm { font-size: clamp(1.15rem, 1.7vw, 1.4rem); letter-spacing: -.012em; }

.lead {
  font-size: clamp(1.06rem, 1rem + .45vw, 1.3rem);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kraft);
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 3px;
  background: var(--flame);
  border-radius: 2px;
  flex: none;
}

.dim  { color: var(--text-dim); }
.mute { color: var(--text-mute); }

/* ------------------------------------------------------------ 4. raster -- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
/* uvodni blok stranice ne treba donji razmak — sekcija ispod ga vec ima */
.section--tight:has(.page-head) { padding-bottom: 0; }
.section--tight { padding-block: calc(var(--section) * .62); }
.section--paper {
  background: var(--paper);
  color: #241f1a;
}
.section--paper .lead { color: #5c5148; }
.section--paper .eyebrow { color: #8a6a3f; }
.section--edge { border-top: 1px solid var(--ink-line); }

.stack > * + * { margin-top: 1.15rem; }

.head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.head__text { max-width: 46rem; }
.head .lead { margin-top: .9rem; }

/* ------------------------------------------------------------ 5. dugmad -- */
.btn {
  --btn-bg: var(--flame);
  --btn-fg: #1b1006;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .82rem 1.5rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: -.005em;
  white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s var(--ease),
              box-shadow .18s var(--ease);
}
.btn:hover { --btn-bg: var(--ember); transform: translateY(-2px); box-shadow: 0 10px 26px -12px var(--flame); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
}
.btn--ghost:hover { --btn-bg: rgb(237 128 21 / .1); --btn-fg: var(--ember); box-shadow: inset 0 0 0 1.5px var(--flame); }

.btn--wine { --btn-bg: var(--wine); --btn-fg: #fff; }
.btn--wine:hover { --btn-bg: var(--wine-soft); box-shadow: 0 10px 26px -12px var(--wine); }

.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ember);
}
.link-arrow svg { transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* -------------------------------------------------------------- 6. cipovi -- */
.chip {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  padding: .34rem .72rem;
  border-radius: var(--radius-sm);
  background: var(--flame);
  color: #1b1006;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.25;
  white-space: nowrap;
}
.chip small {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .78;
}
.chip--wine { background: var(--wine); color: #fff; }

/* oznaka velicine bez cene -- ne sme da vice kao cenovna plocica */
.chip--plain {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
  color: var(--text-dim);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .8rem .34rem;
  border-radius: 999px;
  background: rgb(255 255 255 / .05);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.tag svg { color: var(--flame); flex: none; }
.tag--paper { background: rgb(0 0 0 / .04); box-shadow: inset 0 0 0 1px rgb(0 0 0 / .12); color: #5c5148; }

/* ------------------------------------------------------------ 7. header -- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgb(16 14 12 / .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.header.is-stuck { border-bottom-color: var(--ink-line); background: rgb(16 14 12 / .96); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 72px;
  padding-block: .7rem;
}

.brand { flex: none; color: var(--text); }
.brand__logo { width: clamp(124px, 15vw, 158px); height: auto; }

.nav { display: flex; align-items: center; gap: .25rem; margin-inline: auto; }
.nav__link {
  padding: .55rem .8rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  color: var(--text-dim);
  transition: color .18s var(--ease), background-color .18s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgb(255 255 255 / .05); }
.nav__link[aria-current="page"] { color: var(--flame); }

/* Instagram i mejl u mobilnom meniju — na desktopu su u zaglavlju i futeru */
.nav__contact { display: none; }
.nav__contact-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem .25rem;
}
.nav__contact-row svg { flex: none; color: var(--flame); }
.nav__contact-row span { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.nav__contact-row b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}
.nav__contact-row small {
  font-size: .86rem;
  color: var(--text-mute);
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__contact-row:hover b { color: var(--ember); }

/* Sest stavki u navigaciji ne staje udobno na uze ekrane -- pre nego sto
   se predje na burger meni, red se sazima. */
@media (max-width: 1100px) {
  .nav { gap: .15rem; }
  .nav__link { padding: .5rem .42rem; font-size: .9rem; }
}

.header__side { display: flex; align-items: center; gap: .55rem; margin-left: auto; }

.header__ig {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--text-dim);
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
  transition: color .18s var(--ease), box-shadow .18s var(--ease);
}
.header__ig:hover { color: var(--ember); box-shadow: inset 0 0 0 1.5px var(--flame); }

.lang {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .18s var(--ease), box-shadow .18s var(--ease);
}
.lang:hover { color: var(--text); box-shadow: inset 0 0 0 1.5px var(--kraft); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
  align-items: center;
  justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.burger span::before { transform: translateY(-6px); }
.burger span::after  { transform: translateY(4px); }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1.2rem;
  background: var(--flame);
  color: #1b1006;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

/* --------------------------------------------------------------- 8. hero -- */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgb(237 128 21 / .22), transparent 62%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: normal;
  color: var(--flame);
}
.hero .lead { margin-bottom: 1.9rem; }
.hero__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.9rem; }

.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(340px, 46vw, 560px);
}
.hero__art::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(238 141 34 / .32), rgb(151 21 85 / .16) 45%, transparent 68%);
  filter: blur(6px);
}
.hero__art img {
  position: relative;
  width: auto;
  max-height: clamp(340px, 46vw, 560px);
  filter: drop-shadow(0 34px 40px rgb(0 0 0 / .6));
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50%      { transform: translateY(-14px) rotate(1.2deg); }
}

/* ---------------------------------------------------------- 9. velicine -- */
.sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.size {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) 1.25rem 1.6rem;
  background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  overflow: hidden;
}
.size::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--flame), transparent);
  opacity: .5;
}
.size img { height: clamp(150px, 20vw, 218px); width: auto; object-fit: contain; }
.size__name {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  letter-spacing: -.02em;
}
.size__meat {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-top: .3rem;
}
.size .chip { margin-top: 1rem; }

/* ------------------------------------------------------- 10. LED tabla ---- */
/* potpis sajta: rekonstrukcija svetlece table iznad pulta */
.board {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgb(237 128 21 / .10), transparent 60%),
    linear-gradient(180deg, #17130f, #0c0a09);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--ink-line), var(--shadow);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  overflow: hidden;
}
.board + .board { margin-top: clamp(1.25rem, 2.5vw, 2rem); }
.board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--flame), var(--wine) 70%, transparent);
}
.board--wine::before { background: linear-gradient(90deg, var(--wine), var(--flame) 70%, transparent); }

.board__head { margin-bottom: clamp(1.2rem, 2.4vw, 1.9rem); }
.board__head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: -.015em;
}
.board__head p { margin-top: .55rem; color: var(--text-dim); max-width: 52ch; }

.board__list > * + * { border-top: 1px solid var(--ink-line); }

.row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(.9rem, 2vw, 1.6rem);
  padding-block: clamp(.95rem, 2vw, 1.35rem);
}
.row--noimg { grid-template-columns: minmax(0, 1fr) auto; }
.row__img {
  height: 96px;
  display: grid;
  place-items: center;
}
.row__img img {
  max-height: 96px;
  width: auto;
  filter: drop-shadow(0 12px 16px rgb(0 0 0 / .55));
  transition: transform .3s var(--ease);
}
.row:hover .row__img img { transform: scale(1.07) rotate(-2deg); }
.row__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.08rem, 1.9vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1.1;
}
.row__desc {
  margin-top: .3rem;
  font-size: .97rem;
  line-height: 1.45;
  color: var(--ember);
}
.row__prices { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: flex-end; }

/* --------------------------------------------------- 11. kartice / mreze -- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
}

.card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  background: var(--ink-2);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card p { color: var(--text-dim); }
.card h3 { margin-bottom: .6rem; }

a.card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--flame); }

.card__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--flame);
  line-height: 1;
  margin-bottom: 1rem;
}

/* proizvod — istaknuta kartica na pocetnoj */
.pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.25rem 1.6rem;
  background: linear-gradient(180deg, var(--ink-2), #0d0b0a);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.pcard:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--flame); }
.pcard img { height: clamp(160px, 21vw, 230px); width: auto; object-fit: contain; }
.pcard h3 { margin-top: 1.1rem; font-size: clamp(1.12rem, 1.7vw, 1.32rem); text-transform: uppercase; }
.pcard p { margin-top: .45rem; font-size: .95rem; color: var(--text-mute); }
.pcard .chip { margin-top: 1rem; }

/* ------------------------------------------------------- 12. lokacije ----- */
.loc-card {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.35rem, 2.6vw, 1.85rem);
  background: var(--ink-2);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.loc-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--flame); }
.loc-card__city {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.3vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.loc-card__city span { display: block; font-size: .72em; color: var(--flame); }
.loc-card dl { display: grid; grid-template-columns: auto 1fr; gap: .35rem .9rem; margin: 0; font-size: .97rem; }
.loc-card dt {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: .18rem;
}
.loc-card dd { margin: 0; color: var(--text-dim); }
.loc-card dd a { color: var(--text); border-bottom: 1px solid var(--ink-line); }
.loc-card dd a:hover { color: var(--ember); border-color: currentColor; }
.loc-card__actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .35rem; }

/* mapa — ucitava se tek na klik */
.map {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--ink-line);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__facade {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .9rem;
  justify-items: center;
  text-align: center;
  padding: 1.5rem;
  background:
    repeating-linear-gradient(45deg, rgb(255 255 255 / .014) 0 12px, transparent 12px 24px),
    var(--ink-2);
}
.map__facade p { font-size: .88rem; color: var(--text-mute); max-width: 30ch; }

/* --------------------------------------------------------- 13. dostava ---- */
.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1rem; }
.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--ink-line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s var(--ease);
}
.order-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px var(--flame); }
.order-card span { display: flex; align-items: center; gap: .7rem; }
.order-card svg { color: var(--flame); }

/* ------------------------------------------------------------- 14. FAQ ---- */
.faq { border-top: 1px solid var(--ink-line); }
.faq details {
  border-bottom: 1px solid var(--ink-line);
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: .35rem;
  border-right: 2.5px solid var(--flame);
  border-bottom: 2.5px solid var(--flame);
  transform: rotate(45deg);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: .6rem; }
.faq p { padding: 0 0 1.5rem; color: var(--text-dim); max-width: 70ch; }

/* ------------------------------------------------------------ 15. poslovi -- */
.job {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--ink-2);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px var(--ink-line);
}
.job + .job { margin-top: 1.25rem; }
.job__top { display: flex; flex-wrap: wrap; align-items: baseline; gap: .75rem 1.25rem; }
.job__top h2 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); text-transform: uppercase; }
.job__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.job__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem 2rem;
  margin-top: 1.5rem;
}
.job h3 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: .7rem;
}
.ticks li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-dim);
  font-size: .98rem;
}
.ticks li + li { margin-top: .5rem; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--flame);
}
.job__apply { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--ink-line); }

/* ------------------------------------------------------------- 16. futer -- */
.footer {
  background: #0a0908;
  border-top: 1px solid var(--ink-line);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.footer h2 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: 1rem;
}
.footer li + li { margin-top: .6rem; }
.footer a { color: var(--text-dim); }
.footer a:hover { color: var(--ember); }
.footer__logo { width: 165px; height: auto; color: var(--text); }
.footer__brand p { margin-top: 1.1rem; color: var(--text-mute); font-size: .96rem; max-width: 34ch; }
.footer__socials { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer__socials { flex-direction: column; align-items: flex-start; gap: .5rem; }
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .85rem .5rem .6rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
  color: var(--text-dim);
  font-size: .93rem;
  transition: color .18s var(--ease), box-shadow .18s var(--ease);
}
.footer__social svg { flex: none; }
.footer__social:hover { color: var(--ember); box-shadow: inset 0 0 0 1.5px var(--flame); }
.footer__shop { font-size: .96rem; color: var(--text-dim); }
.footer__shop b { display: block; color: var(--text); font-weight: 600; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-line);
  font-size: .9rem;
  color: var(--text-mute);
}

/* potpis autora — diskretniji od ostatka reda */
.footer__by a {
  color: var(--text-dim);
  border-bottom: 1px solid var(--ink-line);
}
.footer__by a:hover { color: var(--ember); border-color: currentColor; }

/* --------------------------------------------------- 17. mobilna traka --- */
.orderbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  gap: .5rem;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgb(10 9 8 / .95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ink-line);
}
.orderbar .btn { flex: 1; padding-inline: .75rem; gap: .4rem; }

/* --- izbor objekta za poziv --------------------------------------------- */
/* Na mobilnom izlazi odozdo kao list, na sirim ekranima stoji centrirano. */
.sheet {
  width: 100%;
  max-width: 34rem;
  margin: auto auto 0;
  padding: 1.35rem var(--gutter) calc(1.35rem + env(safe-area-inset-bottom));
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--ink-2);
  box-shadow: inset 0 1px 0 var(--ink-line), 0 -20px 50px -20px rgb(0 0 0 / .8);
  color: var(--text);
  animation: sheet-up .24s var(--ease);
}
.sheet::backdrop { background: rgb(0 0 0 / .62); backdrop-filter: blur(2px); }

@keyframes sheet-up { from { transform: translateY(14px); opacity: 0; } }

.sheet__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.sheet__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.015em;
  margin: 0;
}
.sheet__x {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -.35rem -.35rem 0 0;
  border-radius: 10px;
  color: var(--text-mute);
  box-shadow: inset 0 0 0 1.5px var(--ink-line);
}
.sheet__x:hover { color: var(--text); }
.sheet__lead { margin: .5rem 0 1rem; font-size: .94rem; color: var(--text-mute); }

.sheet__list > li + li { border-top: 1px solid var(--ink-line); }
.sheet__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem .25rem;
}
.sheet__row:hover { color: var(--ember); }
.sheet__where { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.sheet__where b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}
.sheet__where small { font-size: .84rem; color: var(--text-mute); line-height: 1.35; }
.sheet__tel {
  flex: none;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  color: var(--flame);
}

@media (max-width: 420px) {
  .sheet__tel { display: none; }   /* na uskim ekranima broj nije potreban */
}

/* -------------------------------------------------------- 18. proza ------ */
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.15rem; }
.prose h2 { margin-top: clamp(2.25rem, 4vw, 3rem); margin-bottom: .9rem; }
.prose h2:first-child { margin-top: 0; }

.notice {
  display: flex;
  gap: .85rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgb(237 128 21 / .09);
  box-shadow: inset 0 0 0 1px rgb(237 128 21 / .3);
  font-size: .95rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.notice svg { flex: none; color: var(--flame); margin-top: .2rem; }

/* --------------------------------------------------------- 19. animacija -- */
/* Sakriva se samo ako JS radi — bez skripte sadrzaj mora ostati vidljiv. */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
/* vec u vidnom polju pri ucitavanju — prikazi bez animacije */
.js .reveal.no-anim { transition: none; }

/* ------------------------------------------------------- 20. responsive -- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; min-height: 300px; }
  .hero__art img { max-height: 320px; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: .75rem var(--gutter) 1.5rem;
    background: rgb(12 10 9 / .99);
    border-bottom: 1px solid var(--ink-line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: .9rem .25rem; font-size: 1.15rem; border-radius: 0; }
  .nav { gap: 0; }
  .nav__link + .nav__link { border-top: 1px solid var(--ink-line); }
  .header__side .btn { display: none; }
  .header__ig { display: none; }          /* dupliralo bi stavku iz menija */
  .nav__contact {
    display: block;
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid var(--ink-line);
  }
  .orderbar { display: flex; }
  body { padding-bottom: 4.6rem; }
}

@media (max-width: 720px) {
  .sizes { grid-template-columns: 1fr; }
  .size { flex-direction: row; align-items: center; text-align: left; gap: 1.25rem; padding: 1.15rem 1.25rem; }
  .size img { height: 120px; }
  .size .chip, .size__name { margin-top: 0; }
  .size__body { display: flex; flex-direction: column; gap: .35rem; align-items: flex-start; }
  .row { grid-template-columns: 68px minmax(0, 1fr); }
  .row__img, .row__img img { height: 68px; max-height: 68px; }
  .row__prices { grid-column: 2; justify-content: flex-start; margin-top: .55rem; }
  .row--noimg { grid-template-columns: 1fr; }
  .row--noimg .row__prices { grid-column: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .head { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .orderbar, .map { display: none; }
  body { background: #fff; color: #000; }
}

/* ------------------------------------------------- 21. pomocne klase ----- */
/* uvedene da bi sabloni ostali bez inline stilova */

.page-head .lead        { margin-top: 1.2rem; }
.page-head .btn-row     { margin-top: 1.8rem; }
.page-head .hero__tags  { margin-top: 1.6rem; }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(1.25rem, 2.6vw, 2rem);
  align-items: start;
}

.spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem 1.25rem;
  margin: 0;
  font-size: 1rem;
}
.spec dt {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: .2rem;
}
.spec dd { margin: 0; color: var(--text-dim); }
.spec dd a { color: var(--text); border-bottom: 1px solid var(--ink-line); }
.spec dd a:hover { color: var(--ember); border-color: currentColor; }
.spec dd.big { font-family: var(--font-display); font-weight: 700; color: var(--text); }

.board__head--flat { margin-bottom: 1.25rem; }
.board__head h2 .area { color: var(--flame); }

.actions-row { margin-top: 1.5rem; }
.fineprint { margin-top: 2rem; font-size: .92rem; max-width: 62ch; color: var(--text-mute); }
.board-figure img { width: 100%; border-radius: var(--radius); }
.narrow { max-width: 46rem; }
.narrow-sm { max-width: 44rem; }
.crumb a { color: inherit; }
.crumb a:hover { color: var(--ember); }

.job__summary     { margin-top: 1rem; font-size: 1.05rem; line-height: 1.55; color: var(--text-dim); max-width: 62ch; }
.job__apply-lead  { margin-bottom: 1rem; }
.card__body       { margin-top: .75rem; }
.ulink            { border-bottom: 1px solid var(--ink-line); }
.ulink:hover      { color: var(--ember); border-color: currentColor; }

/* ------------------------------------------------- pristanak na kolacice - */
/* z-index 90: iznad zaglavlja (60) i sheet-a (55), ispod dijaloga (100) */
.cc {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 0 var(--gutter) calc(.9rem + env(safe-area-inset-bottom));
  pointer-events: none;
}
.cc[hidden] { display: none; }

.cc__box {
  pointer-events: auto;
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  padding: 1.1rem 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cc__text  { flex: 1; min-width: 15rem; }
.cc__title {
  margin: 0 0 .3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.cc__desc { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--text-dim); }

.cc__actions { display: flex; flex-wrap: wrap; gap: .55rem; }

/* Ispod 900px izlazi .orderbar (fiksna traka za porudzbinu, 4.6rem - isto
   koliko body dobija kao padding). Traka za pristanak mora da stane iznad
   nje; inace na prvoj poseti zaklanja glavni CTA sajta. */
@media (max-width: 900px) {
  .cc {
    bottom: calc(4.6rem + env(safe-area-inset-bottom));
    padding-bottom: .6rem;
  }
}

@media (max-width: 640px) {
  /* obrnut redosled: "Prihvatam" ostaje gore, palcu na dohvatu */
  .cc__actions { width: 100%; flex-direction: column-reverse; }
  .cc__actions .btn { width: 100%; }
}

/* tekst samo za citace ekrana i indeksere */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
