:root {
  --ink: #17222b;
  --muted: #62717d;
  --line: #d9e2e8;
  --paper: #ffffff;
  --soft: #f4f8fa;
  --brand: #0b6b63;
  --brand-dark: #064c47;
  --accent: #d9a441;
  --accent-soft: #fff3d8;
  --danger: #9f3d2f;
  --shadow: 0 18px 45px rgba(23, 34, 43, 0.12);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.9rem;
}

.topbar__inner,
.nav__inner,
.section,
.footer__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.topbar a {
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--brand);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
}

.hero {
  background:
    linear-gradient(115deg, rgba(11, 107, 99, 0.92), rgba(6, 76, 71, 0.83)),
    url("assets/images/garnitura.webp") center / cover;
  color: #fff;
}

.hero--compact {
  background:
    linear-gradient(115deg, rgba(11, 107, 99, 0.94), rgba(6, 76, 71, 0.86)),
    url("assets/images/namestaj-stolica.webp") center / cover;
}

.hero__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: 76px 0 64px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section .eyebrow,
.breadcrumbs + main .eyebrow {
  color: var(--brand);
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

.hero__actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.button--primary {
  background: var(--accent);
  color: #211600;
}

.button--dark {
  background: var(--brand);
  color: #fff;
}

.button--light {
  background: #fff;
  color: var(--brand-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-card {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 1.15rem;
}

.hero-card ul,
.check-list,
.plain-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  margin-top: 10px;
}

.hero-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.trust-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-strip__item {
  padding: 20px;
  background: #fff;
}

.trust-strip__item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand);
}

.trust-strip__item span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.section--soft {
  width: 100%;
  max-width: none;
  background: var(--soft);
}

.section--soft > .section__inner,
.section--full > .section__inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section__heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section__heading p {
  max-width: 620px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(23, 34, 43, 0.06);
}

.card__body {
  padding: 22px;
}

.card p,
.price-card p,
.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process {
  counter-reset: step;
}

.process li {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  list-style: none;
}

.process li + li {
  margin-top: 12px;
}

.process li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card strong {
  color: var(--brand);
  font-size: 1.6rem;
}

.price-card .button {
  margin-top: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery a,
.gallery figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.locations span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #51380a;
  font-weight: 900;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.cta-band {
  background: var(--brand-dark);
  color: #fff;
}

.cta-band .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
}

.breadcrumbs {
  width: min(1160px, calc(100% - 32px));
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--brand);
}

.footer {
  background: #111b22;
  color: #dce8ee;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

.footer h2,
.footer h3 {
  color: #fff;
}

.footer p,
.footer a {
  color: #b9c7cf;
}

.footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.footer li + li {
  margin-top: 8px;
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 8px;
  color: #4a360d;
  font-weight: 800;
}

.contact-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-box a {
  color: var(--brand);
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav__inner {
    min-height: 68px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav__links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .hero__inner,
  .split,
  .grid--4,
  .grid--3,
  .grid--2,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .section__heading,
  .cta-band .section {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .topbar__inner,
  .hero__actions,
  .actions {
    flex-direction: column;
  }

  .hero__inner {
    padding: 54px 0 46px;
  }

  .trust-strip__inner,
  .gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .button {
    width: 100%;
  }
}
