:root {
  --ink: #171615;
  --muted: #68605a;
  --paper: #f8f4ed;
  --white: #fffdf8;
  --copper: #a9633f;
  --copper-dark: #7d3f27;
  --sage: #5b6f61;
  --line: rgba(23, 22, 21, 0.14);
  --shadow: 0 24px 70px rgba(23, 22, 21, 0.18);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(248, 244, 237, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.site-nav,
.hero-actions,
.trust-strip,
.contact-stack a,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.77rem;
  text-transform: uppercase;
}

.site-nav {
  gap: 22px;
  font-size: 0.92rem;
}

.site-nav a,
.site-footer a,
.text-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  border-bottom-color: currentColor;
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.header-call,
.btn {
  min-height: 42px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.lang-toggle {
  width: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.header-call {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--copper);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 8vw, 118px) clamp(18px, 4vw, 44px);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(248, 244, 237, 0.97) 0%, rgba(248, 244, 237, 0.9) 36%, rgba(248, 244, 237, 0.4) 66%, rgba(23, 22, 21, 0.1) 100%),
    linear-gradient(0deg, rgba(248, 244, 237, 0.95) 0%, rgba(248, 244, 237, 0) 34%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  max-width: 720px;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--copper-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.05rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #332f2b;
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
}

.btn.secondary {
  background: var(--copper);
  color: var(--white);
}

.btn.ghost {
  background: rgba(255, 253, 248, 0.76);
  border-color: var(--line);
}

.trust-strip {
  width: min(650px, 100%);
  gap: 1px;
  margin: 36px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  flex: 1 1 0;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 253, 248, 0.8);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.section-grid,
.services,
.hours-contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(62px, 9vw, 118px) clamp(18px, 4vw, 32px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 78px);
  border-top: 1px solid var(--line);
}

.intro-copy {
  color: #3d3833;
  font-size: 1.05rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 34px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.service-feature,
.service-cards article,
.hours-panel,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(23, 22, 21, 0.07);
}

.service-feature {
  display: grid;
  grid-template-rows: auto 1fr;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-feature div,
.service-cards article {
  padding: 24px;
}

.service-feature p,
.service-cards p,
.proof-band p,
.source-note,
.no-email,
.site-footer p {
  color: var(--muted);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-cards article {
  min-height: 210px;
}

.service-cards span {
  display: block;
  margin-bottom: 40px;
  color: var(--sage);
  font-weight: 900;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(62px, 9vw, 105px) clamp(18px, 5vw, 56px);
  background: #20201e;
  color: var(--white);
}

.proof-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof-band .section-kicker {
  color: #e0a884;
}

.proof-band p {
  max-width: 620px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: #f0c4a6;
  font-weight: 900;
}

.hours-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 22px;
}

.hours-panel,
.contact-panel {
  padding: clamp(24px, 5vw, 40px);
}

.hours-list {
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li.is-today {
  color: var(--copper-dark);
}

.hours-list li.is-today span::after {
  content: " danas";
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 900;
}

body[data-lang="en"] .hours-list li.is-today span::after {
  content: " today";
}

.contact-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 26px;
}

.contact-stack a {
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: #f1ede4;
  text-decoration: none;
  border: 1px solid transparent;
}

.contact-stack a:hover {
  border-color: rgba(169, 99, 63, 0.45);
}

.contact-stack span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-stack strong {
  text-align: right;
}

.no-email {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 44px) 94px;
  background: #171615;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(23, 22, 21, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 880px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(248, 244, 237, 0.94) 0%, rgba(248, 244, 237, 0.87) 52%, rgba(248, 244, 237, 0.98) 100%),
      linear-gradient(90deg, rgba(248, 244, 237, 0.86), rgba(248, 244, 237, 0.52));
  }

  .hero-media img {
    object-position: 63% center;
  }

  .section-grid,
  .service-layout,
  .proof-band,
  .hours-contact {
    grid-template-columns: 1fr;
  }

  .service-feature {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    grid-template-rows: none;
  }

  .service-feature img {
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand small,
  .header-call {
    display: none;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }

  .trust-strip,
  .service-cards,
  .service-feature {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    align-items: stretch;
  }

  .trust-strip div {
    padding: 13px;
  }

  .service-feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-cards article {
    min-height: 0;
  }

  .service-cards span {
    margin-bottom: 22px;
  }

  .contact-stack a,
  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-stack strong {
    text-align: left;
  }

  .mobile-cta {
    display: grid;
  }
}
