:root {
  --bg: #eef3ef;
  --surface: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.18));
  --surface-strong: rgba(255, 255, 255, 0.58);
  --surface-soft: rgba(255, 255, 255, 0.28);
  --text: #0a0e0b;
  --muted: #18201b;
  --line: rgba(255, 255, 255, 0.3);
  --accent: #d64c37;
  --accent-dark: #aa3224;
  --forest: #214a34;
  --shadow: 0 24px 80px rgba(20, 34, 21, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.34), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(rgba(238, 243, 239, 0.4), rgba(238, 243, 239, 0.72)),
    url("assets-pozadi-opt.jpg") center top / cover fixed no-repeat;
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.14));
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 40px rgba(20, 34, 21, 0.08);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(214, 76, 55, 0.94), rgba(234, 122, 52, 0.82));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36), 0 16px 32px rgba(204, 62, 46, 0.26);
}

.brand-copy {
  display: grid;
  gap: 0.06rem;
}

.brand-title {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.hero,
.page-hero {
  padding: 4.75rem 0 2rem;
}

.hero-panel,
.page-hero-card,
.section-panel,
.cta-band,
.image-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: var(--shadow);
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 1.2rem;
  align-items: center;
}

.hero-panel::before,
.page-hero-card::before,
.section-panel::before,
.cta-band::before,
.image-band::before,
.info-card::before,
.contact-card::before,
.machine-card::before,
.brand-card::before,
.offer-card::before,
.note-card::before,
.brand-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 1.25rem;
  padding: 1.25rem;
  align-items: start;
}

.hero-copy {
  padding: 1.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  color: #070909;
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45), 0 10px 28px rgba(15, 27, 18, 0.12);
}

.lead {
  max-width: 62ch;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.lead-strong {
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 800;
}

.lead-lines {
  line-height: 1.45;
}

.lead-lines span {
  display: block;
}

.lead-nowrap {
  white-space: nowrap;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button {
  background: linear-gradient(135deg, var(--accent), #ea7a34);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 14px 30px rgba(204, 62, 46, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
  color: var(--text);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.hero-visual {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.hero-visual img,
.wide-image img,
.promo-image img,
.machine-logo-strip img {
  width: 100%;
  border-radius: 22px;
}

.hero-visual img,
.wide-image img,
.promo-image img {
  height: auto;
  object-fit: contain;
}

.hero-image-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0.8rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 20px 50px rgba(20, 34, 21, 0.08);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.hero-image-card img {
  border-radius: 18px;
}

.page-hero-card,
.section-panel,
.cta-band,
.image-band {
  padding: 1.6rem;
}

.section {
  padding: 1rem 0 3rem;
}

.section-heading {
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  color: #080b09;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 22px rgba(15, 27, 18, 0.1);
}

.section-heading p {
  max-width: 62ch;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 1.25rem;
  align-items: center;
}

.info-grid,
.benefit-grid,
.contact-grid,
.brand-feature,
.machine-grid,
.offer-grid {
  display: grid;
  gap: 1rem;
}

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

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

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.brand-feature {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.machine-overview {
  display: grid;
  gap: 1.25rem;
}

.machine-overview .info-grid {
  margin-top: 0.25rem;
}

.machine-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

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

.info-card,
.contact-card,
.machine-card,
.brand-card,
.offer-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  box-shadow: 0 20px 50px rgba(20, 34, 21, 0.08);
}

.contact-block,
.map-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  box-shadow: 0 20px 50px rgba(20, 34, 21, 0.08);
}

.benefit-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 50px rgba(20, 34, 21, 0.06);
}

.benefit-card strong {
  display: block;
  font-size: 1.04rem;
  color: #090c0a;
}

.benefit-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.contact-block::before,
.map-frame::before,
.contact-title-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.contact-title-chip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-title-chip h2 {
  margin: 0;
  color: #090c0a;
  font-size: 1.08rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.info-card h3,
.contact-card h2,
.machine-card h3,
.brand-card h3,
.offer-card h3 {
  margin: 0 0 0.65rem;
  color: #090c0a;
  font-size: 1.08rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.info-card p,
.info-card li,
.contact-card p,
.contact-card li,
.machine-card p,
.brand-card p,
.offer-card p {
  color: var(--muted);
}

.info-card > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.info-card > img.image-right-crop {
  object-position: left center;
}

.info-card h3,
.info-card p,
.info-card ul {
  margin-top: 1rem;
}

.offer-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.info-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.wide-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 22px;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item strong,
.contact-item a {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  font-weight: 700;
}

.brand-chip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.brand-visual img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(20, 34, 21, 0.12);
}

.hero-side-image img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(20, 34, 21, 0.12);
}

.machine-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center bottom;
  background: rgba(255, 255, 255, 0.74);
  padding: 0.85rem;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.machine-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100%;
  padding: 0.9rem;
}

.machine-card-copy {
  width: 100%;
  margin-top: 0.95rem;
  text-align: left;
}

.machine-card-copy h3 {
  margin: 0;
  font-size: 1.02rem;
}

.machine-card-copy p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.machine-actions {
  margin-top: 1rem;
}

.machine-logo-strip {
  overflow: hidden;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(33, 74, 52, 0.58), rgba(204, 62, 46, 0.54)),
    #214a34;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-band p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(20, 34, 21, 0.1);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-panel,
  .page-hero-split,
  .info-grid,
  .benefit-grid,
  .feature-split,
  .contact-grid,
  .brand-feature,
  .machine-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .header-actions .desktop-only {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-nav.is-open {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.75rem);
    display: grid;
    gap: 0.35rem;
    padding: 0.9rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(166, 171, 156, 0.95), rgba(166, 171, 156, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: var(--shadow);
  }
}

@media (max-width: 720px) {
  .hero,
  .page-hero {
    padding-top: 2.8rem;
  }

  .hero-panel,
  .page-hero-card,
  .section-panel,
  .cta-band,
  .image-band {
    padding: 1.1rem;
  }

  .hero-copy {
    padding: 0.35rem;
  }

  .brand-subtitle {
    display: none;
  }

  .footer-inner {
    display: grid;
  }

  .lead-nowrap {
    white-space: normal;
  }

  .machine-card {
    min-height: auto;
  }

  .machine-card img {
    height: 180px;
  }
}
