:root {
  --espresso: #27160f;
  --nearly-black: #160c08;
  --coffee: #51311f;
  --cocoa: #70472e;
  --caramel: #b4773d;
  --banner-yellow: #d9cf75;
  --gold: #d39a57;
  --cream: #fff7e8;
  --linen: #efe0c5;
  --paper: #f9f1e3;
  --white: #ffffff;
  --ink: #2d211b;
  --muted: #7b6658;
  --shadow: 0 22px 60px rgba(39, 22, 15, 0.18);
  --radius: 8px;
  --max-width: 1180px;
  --theme-accent: var(--banner-yellow);
  --theme-dark: var(--espresso);
  --theme-soft: #ead8bc;
  --theme-rgb: 180, 119, 61;
}

.theme-vending {
  --theme-accent: #e0663f;
  --theme-dark: #241713;
  --theme-soft: #f1d7c8;
  --theme-rgb: 224, 102, 63;
}

.theme-water {
  --theme-accent: #55b6d6;
  --theme-dark: #123a4a;
  --theme-soft: #d7f0f6;
  --theme-rgb: 85, 182, 214;
}

.theme-tea {
  --theme-accent: #7fa85b;
  --theme-dark: #263a1d;
  --theme-soft: #e1edcf;
  --theme-rgb: 127, 168, 91;
}

.theme-parfume {
  --theme-accent: #c47a92;
  --theme-dark: #3b1729;
  --theme-soft: #f0d5df;
  --theme-rgb: 196, 122, 146;
}

.theme-contact {
  --theme-accent: #d39a57;
  --theme-dark: #27160f;
  --theme-soft: #efe0c5;
  --theme-rgb: 211, 154, 87;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(39, 22, 15, 0.18), transparent 34%),
    radial-gradient(circle at 12% 14%, rgba(180, 119, 61, 0.12), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--paper) 44%, #f2dec1);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(81, 49, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 49, 31, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse at 42% 50%, rgba(70, 38, 21, 0.1) 0 28%, transparent 29%);
  background-size: 32px 32px, 32px 32px, 74px 48px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 247, 232, 0.16);
  background:
    linear-gradient(rgba(22, 12, 8, 0.88), rgba(22, 12, 8, 0.88)),
    radial-gradient(ellipse at 38% 50%, #7b4c2d 0 30%, transparent 31%) 0 0 / 46px 30px;
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(rgba(22, 12, 8, 0.94), rgba(22, 12, 8, 0.94)),
    radial-gradient(ellipse at 38% 50%, #7b4c2d 0 30%, transparent 31%) 0 0 / 46px 30px;
  box-shadow: 0 10px 34px rgba(39, 22, 15, 0.22);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(217, 207, 117, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, #e2d88a, #a99545);
  box-shadow: inset 0 0 0 5px rgba(39, 22, 15, 0.08), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.brand-mark span,
.banner-logo-mark span {
  width: 15px;
  height: 36px;
  border-radius: 50%;
  background: var(--coffee);
  transform: rotate(32deg);
}

.brand-mark span::before,
.banner-logo-mark span::before {
  display: block;
  width: 9px;
  height: 100%;
  margin-left: 7px;
  border-left: 3px solid rgba(255, 247, 232, 0.42);
  border-radius: 50%;
  content: "";
}

.logo-wordmark strong,
.logo-wordmark small {
  display: block;
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: lowercase;
}

.logo-wordmark strong {
  font-size: 1.34rem;
}

.logo-wordmark small {
  color: var(--banner-yellow);
  font-size: 1.02rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: rgba(255, 247, 232, 0.88);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--banner-yellow);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  color: var(--nearly-black);
  background: linear-gradient(135deg, var(--theme-accent), var(--gold));
  box-shadow: 0 14px 30px rgba(81, 49, 31, 0.24);
}

.btn-secondary {
  color: var(--espresso);
  border: 1px solid rgba(81, 49, 31, 0.18);
  background: rgba(255, 255, 255, 0.58);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 14px;
  color: var(--coffee);
  font-size: 0.92rem;
  font-weight: 900;
  border-bottom: 2px solid var(--theme-accent);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(81, 49, 31, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(81, 49, 31, 0.18);
  border-radius: var(--radius);
  background: var(--cream);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--espresso);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding:
    clamp(56px, 9vw, 120px)
    clamp(18px, 4vw, 52px)
    clamp(56px, 9vw, 120px)
    clamp(58px, 7vw, 104px);
  overflow: hidden;
  isolation: isolate;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 4vw, 52px);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(80, 48, 30, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 15% 22%, rgba(var(--theme-rgb), 0.22), transparent 27%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), color-mix(in srgb, var(--theme-soft) 70%, #ffffff 30%));
  background-size: 22px 22px, 22px 22px, auto, auto;
}

.page-hero h1 {
  max-width: 920px;
  color: #f4f0e6;
  font-size: clamp(3.3rem, 9vw, 7.8rem);
}

.page-hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(var(--theme-rgb), 0.36);
  border-radius: 999px;
  color: var(--theme-accent);
  background: color-mix(in srgb, var(--theme-dark) 88%, #000000 12%);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-visual {
  position: relative;
  min-height: 310px;
  border: 1px solid rgba(81, 49, 31, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(color-mix(in srgb, var(--theme-dark) 86%, transparent), color-mix(in srgb, var(--theme-dark) 86%, transparent)),
    radial-gradient(ellipse at 42% 50%, #8d5935 0 27%, #2b160d 28% 52%, transparent 54%) 0 0 / 44px 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-visual::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(var(--theme-rgb), 0.28);
  border-radius: var(--radius);
}

.page-visual::after {
  position: absolute;
  right: -42px;
  top: 44px;
  width: 78%;
  height: 120px;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  content: "";
  background:
    linear-gradient(rgba(80, 48, 30, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, color-mix(in srgb, var(--theme-accent) 72%, #ffffff 28%), var(--theme-accent));
  background-size: 13px 13px, 13px 13px, auto;
}

.page-visual span {
  position: absolute;
  left: 34px;
  bottom: 30px;
  z-index: 1;
  max-width: 280px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.98;
}

.vending-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.68fr);
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--theme-rgb), 0.16), transparent 30%),
    linear-gradient(135deg, #fffaf0, #f0d8cb);
}

.vending-hero-card {
  position: relative;
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(36, 23, 19, 0.12);
  border-radius: var(--radius);
  color: var(--cream);
  background:
    linear-gradient(rgba(36, 23, 19, 0.86), rgba(36, 23, 19, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(var(--theme-rgb), 0.38), transparent 34%),
    linear-gradient(135deg, #3c2720, #130b08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.vending-hero-card::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: var(--radius);
  content: "";
}

.vending-hero-card::after {
  position: absolute;
  right: -50px;
  top: 50px;
  width: 70%;
  height: 132px;
  clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%);
  content: "";
  background:
    linear-gradient(rgba(255, 247, 232, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 232, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #f09a6c, var(--theme-accent));
  background-size: 14px 14px, 14px 14px, auto;
}

.panel-kicker,
.vending-hero-card strong,
.vending-stat-grid {
  position: relative;
  z-index: 1;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--theme-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vending-hero-card strong {
  display: block;
  max-width: 360px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.vending-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(72px, 9vw, 118px);
}

.vending-stat-grid span {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 247, 232, 0.08);
  font-weight: 800;
}

.vending-stat-grid b {
  display: block;
  margin-bottom: 4px;
  color: var(--theme-accent);
  font-size: 1.2rem;
}

.hero::before,
.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(9vw, 112px);
  content: "";
  opacity: 0.78;
  background:
    linear-gradient(rgba(22, 12, 8, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 12, 8, 0.22) 1px, transparent 1px),
    radial-gradient(ellipse at 42% 50%, #8d5935 0 27%, #2b160d 28% 52%, transparent 54%) 0 0 / 44px 30px,
    linear-gradient(180deg, var(--nearly-black), var(--coffee));
  background-size: 16px 16px, 16px 16px, 44px 30px, auto;
}

.hero::before {
  left: 0;
  mask-image: linear-gradient(90deg, #000 0 18%, transparent 100%);
}

.hero::after {
  right: 0;
  mask-image: linear-gradient(270deg, #000 0 28%, transparent 100%);
}

.section-grain {
  background:
    linear-gradient(rgba(80, 48, 30, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 22% 18%, rgba(211, 154, 87, 0.22), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(81, 49, 31, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.94), rgba(239, 224, 197, 0.94));
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
}

.hero-copy,
.hero-visual,
section > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 247, 232, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 247, 232, 0.7), rgba(255, 247, 232, 0.52)),
    radial-gradient(circle at 0 0, rgba(217, 207, 117, 0.18), transparent 35%);
  box-shadow: 0 24px 60px rgba(39, 22, 15, 0.12);
  backdrop-filter: blur(2px);
}

.banner-logo {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px 15px 12px 12px;
  border: 1px solid rgba(217, 207, 117, 0.4);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(39, 22, 15, 0.72), rgba(39, 22, 15, 0.72)),
    radial-gradient(ellipse at 42% 50%, #8d5935 0 27%, #2b160d 28% 52%, transparent 54%) 0 0 / 38px 26px;
  box-shadow: 0 14px 30px rgba(39, 22, 15, 0.18);
}

.banner-logo-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(217, 207, 117, 0.7);
  border-radius: 50%;
  background: linear-gradient(135deg, #ebe08a, #a99545);
}

.banner-logo-mark span {
  width: 19px;
  height: 45px;
}

.banner-logo-type strong,
.banner-logo-type small {
  display: block;
  color: var(--cream);
  font-weight: 900;
  line-height: 0.82;
  text-transform: lowercase;
}

.banner-logo-type strong {
  font-size: 1.6rem;
}

.banner-logo-type small {
  color: var(--banner-yellow);
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--espresso);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #f4f0e6;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.55rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    3px 4px 0 rgba(39, 22, 15, 0.64),
    0 13px 26px rgba(39, 22, 15, 0.32);
  text-transform: uppercase;
  -webkit-text-stroke: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.3rem);
}

h3 {
  color: var(--espresso);
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 14px;
  color: var(--coffee);
  font-size: clamp(1.28rem, 2.4vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(81, 49, 31, 0.14);
  border-radius: 999px;
  color: var(--coffee);
  background: rgba(255, 255, 255, 0.45);
  font-weight: 900;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.banner-ribbon {
  position: absolute;
  top: 2%;
  right: 0;
  z-index: 2;
  width: min(88%, 430px);
  padding: 19px 30px 19px 54px;
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
  color: var(--espresso);
  background:
    linear-gradient(rgba(80, 48, 30, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #eee994, #c9be60);
  background-size: 13px 13px, 13px 13px, auto;
  box-shadow: 0 16px 36px rgba(39, 22, 15, 0.2);
  transform: rotate(2deg);
}

.banner-ribbon strong,
.banner-ribbon span {
  display: block;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}

.banner-ribbon strong {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.1;
}

.banner-ribbon span {
  margin-top: 5px;
  color: #9b332e;
  font-weight: 900;
}

.coffee-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(81, 49, 31, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(rgba(80, 48, 30, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 48% 52%, rgba(255, 247, 232, 0.72), transparent 36%),
    radial-gradient(circle at 65% 62%, rgba(180, 119, 61, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(81, 49, 31, 0.18), rgba(255, 255, 255, 0.42));
  background-size: 18px 18px, 18px 18px, auto, auto, auto;
  box-shadow: var(--shadow);
}

.hero-machine {
  position: relative;
  z-index: 1;
  width: min(106%, 540px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 20px 24px rgba(39, 22, 15, 0.18));
}

.bean {
  position: absolute;
  z-index: 0;
  width: 54px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 42% 50%, transparent 0 18%, rgba(238, 210, 174, 0.45) 19% 23%, transparent 24%),
    linear-gradient(135deg, #2a160d, #81502f);
  box-shadow: 0 12px 26px rgba(39, 22, 15, 0.22);
}

.bean-one {
  left: 8%;
  bottom: 25%;
  transform: rotate(24deg);
}

.bean-two {
  right: 10%;
  top: 23%;
  transform: rotate(-28deg);
}

.bean-three {
  right: 15%;
  bottom: 16%;
  transform: rotate(14deg);
}

section {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 52px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.why-panel p,
.real-info p {
  color: var(--muted);
}

.service-grid,
.brand-grid,
.audience-grid,
.contact-layout,
.real-info-inner,
.assortment-grid {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.service-card,
.audience-card,
.contact-form,
.contact-card {
  border: 1px solid rgba(81, 49, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 16px 38px rgba(39, 22, 15, 0.1);
}

.service-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--cream);
  background: var(--coffee);
  font-size: 0.83rem;
  font-weight: 900;
}

.real-info {
  padding-top: clamp(44px, 7vw, 82px);
  padding-bottom: clamp(44px, 7vw, 82px);
  background:
    linear-gradient(rgba(22, 12, 8, 0.9), rgba(22, 12, 8, 0.9)),
    linear-gradient(rgba(255, 247, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 232, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse at 42% 50%, #8d5935 0 27%, #2b160d 28% 52%, transparent 54%) 0 0 / 44px 30px;
  background-size: auto, 18px 18px, 18px 18px, 44px 30px;
}

.real-info-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.real-info h2,
.real-info .eyebrow {
  color: var(--cream);
}

.real-info p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 247, 232, 0.74);
}

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

.fact-grid span {
  min-height: 128px;
  padding: 22px;
  border: 1px solid rgba(217, 207, 117, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 247, 232, 0.76);
  background: rgba(255, 247, 232, 0.08);
  font-weight: 800;
}

.fact-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--banner-yellow);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
}

.split-copy {
  max-width: 520px;
  justify-self: end;
}

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

.audience-card {
  min-height: 230px;
  padding: 34px;
  background:
    linear-gradient(rgba(255, 252, 244, 0.84), rgba(255, 252, 244, 0.84)),
    radial-gradient(circle at top right, rgba(180, 119, 61, 0.22), transparent 46%);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}

.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 104px;
  border: 1px solid rgba(81, 49, 31, 0.14);
  border-radius: var(--radius);
  color: var(--espresso);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 224, 197, 0.72));
  font-family: "Playfair Display", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(39, 22, 15, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.brand-grid span:hover {
  border-color: rgba(180, 119, 61, 0.56);
  transform: translateY(-4px);
}

.assortment {
  background:
    radial-gradient(circle at 16% 20%, rgba(217, 207, 117, 0.14), transparent 26%),
    linear-gradient(135deg, #fffaf0, #ead8bc);
}

.assortment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.assortment-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(81, 49, 31, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 252, 244, 0.88), rgba(255, 252, 244, 0.88)),
    linear-gradient(rgba(80, 48, 30, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.055) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  box-shadow: 0 16px 38px rgba(39, 22, 15, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.assortment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.assortment-card h3::before {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  content: "";
  background: var(--caramel);
}

.content-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--theme-rgb), 0.14), transparent 28%),
    linear-gradient(135deg, #fffaf0, var(--theme-soft));
}

.page-grid,
.detail-grid,
.cta-band {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.info-card,
.detail-card {
  border: 1px solid rgba(81, 49, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.82);
  box-shadow: 0 16px 38px rgba(39, 22, 15, 0.1);
}

.info-card {
  min-height: 230px;
  padding: 28px;
}

.service-pillars,
.service-detail-layout {
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-pillar {
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(36, 23, 19, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.9);
  box-shadow: 0 16px 38px rgba(39, 22, 15, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-pillar span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--theme-dark);
  background: rgba(var(--theme-rgb), 0.18);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-pillar p {
  color: var(--muted);
}

.info-card p,
.detail-card p {
  color: var(--muted);
}

.detail-card {
  padding: clamp(26px, 4vw, 42px);
}

.vending-service-detail {
  background:
    linear-gradient(rgba(80, 48, 30, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 48, 30, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 86% 12%, rgba(var(--theme-rgb), 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), var(--theme-soft));
  background-size: 22px 22px, 22px 22px, auto, auto;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.service-copy,
.service-checklist {
  border: 1px solid rgba(36, 23, 19, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(39, 22, 15, 0.1);
}

.service-copy {
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255, 252, 244, 0.9);
}

.service-copy p {
  color: var(--muted);
}

.service-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.service-detail-list div {
  padding: 20px;
  border-left: 5px solid var(--theme-accent);
  border-radius: var(--radius);
  background: rgba(var(--theme-rgb), 0.1);
}

.service-detail-list h3,
.service-detail-list p {
  margin-bottom: 0;
}

.service-detail-list h3 {
  margin-bottom: 6px;
}

.service-checklist {
  padding: clamp(24px, 4vw, 38px);
  color: var(--cream);
  background:
    linear-gradient(rgba(36, 23, 19, 0.92), rgba(36, 23, 19, 0.92)),
    radial-gradient(ellipse at 42% 50%, #8d5935 0 27%, #2b160d 28% 52%, transparent 54%) 0 0 / 44px 30px;
}

.service-checklist h3 {
  color: var(--cream);
}

.service-checklist .feature-list li {
  color: var(--cream);
  border: 1px solid rgba(255, 247, 232, 0.12);
  background: rgba(255, 247, 232, 0.08);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 13px 15px;
  border-radius: var(--radius);
  color: var(--coffee);
  background: rgba(var(--theme-rgb), 0.12);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  color: var(--cream);
  background:
    linear-gradient(color-mix(in srgb, var(--theme-dark) 92%, transparent), color-mix(in srgb, var(--theme-dark) 92%, transparent)),
    radial-gradient(ellipse at 42% 50%, #8d5935 0 27%, #2b160d 28% 52%, transparent 54%) 0 0 / 44px 30px;
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p {
  margin-bottom: 0;
  color: var(--cream);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.theme-water .site-header {
  background:
    linear-gradient(rgba(18, 58, 74, 0.9), rgba(18, 58, 74, 0.9)),
    radial-gradient(ellipse at 38% 50%, #3f8fa5 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-water .site-header.is-scrolled {
  background:
    linear-gradient(rgba(18, 58, 74, 0.96), rgba(18, 58, 74, 0.96)),
    radial-gradient(ellipse at 38% 50%, #3f8fa5 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-tea .site-header {
  background:
    linear-gradient(rgba(38, 58, 29, 0.91), rgba(38, 58, 29, 0.91)),
    radial-gradient(ellipse at 38% 50%, #607d40 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-tea .site-header.is-scrolled {
  background:
    linear-gradient(rgba(38, 58, 29, 0.97), rgba(38, 58, 29, 0.97)),
    radial-gradient(ellipse at 38% 50%, #607d40 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-parfume .site-header {
  background:
    linear-gradient(rgba(59, 23, 41, 0.91), rgba(59, 23, 41, 0.91)),
    radial-gradient(ellipse at 38% 50%, #8e4d62 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-parfume .site-header.is-scrolled {
  background:
    linear-gradient(rgba(59, 23, 41, 0.97), rgba(59, 23, 41, 0.97)),
    radial-gradient(ellipse at 38% 50%, #8e4d62 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-vending .site-header {
  background:
    linear-gradient(rgba(58, 23, 16, 0.91), rgba(58, 23, 16, 0.91)),
    radial-gradient(ellipse at 38% 50%, #9a4a32 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.theme-vending .site-header.is-scrolled {
  background:
    linear-gradient(rgba(58, 23, 16, 0.97), rgba(58, 23, 16, 0.97)),
    radial-gradient(ellipse at 38% 50%, #9a4a32 0 30%, transparent 31%) 0 0 / 46px 30px;
}

.vending-site {
  --vending-ink: #20161d;
  --vending-muted: #755f67;
  --vending-green: #ff6f7d;
  --vending-lime: #25aef2;
  --vending-orange: #ffd43d;
  --vending-mist: #fff0f2;
  --vending-line: rgba(32, 22, 29, 0.12);
  color: var(--vending-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 111, 125, 0.26), transparent 25%),
    radial-gradient(circle at 86% 14%, rgba(37, 174, 242, 0.22), transparent 24%),
    linear-gradient(135deg, #fff8f9, #ffe3e7 48%, #eef8ff);
}

.vending-site::before {
  background-image:
    linear-gradient(rgba(255, 111, 125, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 174, 242, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.vending-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(32, 22, 29, 0.1);
  background: rgba(255, 246, 247, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.24s ease, background 0.24s ease;
}

.vending-header.is-scrolled {
  background: rgba(255, 246, 247, 0.98);
  box-shadow: 0 10px 30px rgba(255, 111, 125, 0.15);
}

.vending-brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-width: max-content;
}

.vending-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--vending-green), #ff9aa3),
    var(--vending-green);
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.24), 0 10px 22px rgba(255, 111, 125, 0.22);
}

.vending-brand strong,
.vending-brand small {
  display: block;
  line-height: 1;
}

.vending-brand strong {
  color: var(--vending-ink);
  font-size: 1rem;
  font-weight: 900;
}

.vending-brand small {
  margin-top: 3px;
  color: var(--vending-green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vending-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--vending-muted);
  font-size: 0.93rem;
  font-weight: 900;
}

.vending-nav a:hover {
  color: var(--vending-green);
}

.vending-header-cta,
.vending-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vending-header-cta,
.vending-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--vending-green), #ff9aa3);
  box-shadow: 0 14px 28px rgba(255, 111, 125, 0.28);
}

.vending-btn-secondary {
  color: #0d7fbd;
  border: 1px solid rgba(37, 174, 242, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.vending-header-cta:hover,
.vending-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 111, 125, 0.26);
}

.vending-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 111, 125, 0.18);
  border-radius: 12px;
  background: #ffffff;
}

.vending-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--vending-ink);
}

.vending-hero-new {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.86fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.vending-label,
.vending-section-heading p,
.vending-final-card p {
  margin: 0 0 14px;
  color: var(--vending-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vending-hero-copy h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--vending-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.05rem, 7.1vw, 6.65rem);
  font-weight: 900;
  line-height: 1.1;
  text-wrap: balance;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.vending-hero-copy p {
  max-width: 690px;
  color: var(--vending-muted);
  font-size: 1.13rem;
}

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

.vending-device {
  position: relative;
  display: grid;
  align-items: start;
  min-height: 640px;
  transform: translateY(28px);
}

.vending-device::before {
  position: absolute;
  top: 5%;
  right: 2%;
  width: min(88%, 430px);
  aspect-ratio: 1;
  border-radius: 34px;
  content: "";
  background:
    radial-gradient(circle at 78% 22%, rgba(37, 174, 242, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 111, 125, 0.17), rgba(255, 255, 255, 0.54));
  box-shadow: 0 28px 70px rgba(255, 111, 125, 0.15);
}

.vending-machine-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 500px);
  margin: 0 0 0 auto;
  filter: drop-shadow(0 28px 34px rgba(32, 22, 29, 0.22));
}

.vending-service-note {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 0;
  width: min(78%, 330px);
  padding: 20px 22px;
  border: 1px solid rgba(255, 111, 125, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(255, 111, 125, 0.16);
  backdrop-filter: blur(14px);
}

.vending-service-note strong,
.vending-service-note span {
  display: block;
}

.vending-service-note strong {
  color: var(--vending-ink);
  font-size: 1.5rem;
}

.vending-service-note span {
  color: var(--vending-muted);
  font-weight: 800;
}

.vending-section,
.vending-split,
.vending-operation,
.vending-final-cta {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.vending-section {
  background: #ffffff;
}

.vending-section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.vending-section-heading h2,
.vending-split-copy h2,
.vending-operation-card h2,
.vending-final-card h2 {
  color: var(--vending-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.vending-section-heading span,
.vending-split-copy p,
.vending-operation-card p {
  color: var(--vending-muted);
}

.vending-pillar-grid,
.vending-split,
.vending-operation-card,
.vending-final-card {
  max-width: var(--max-width);
  margin: 0 auto;
}

.vending-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vending-pillar,
.vending-type-card {
  border: 1px solid var(--vending-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(255, 111, 125, 0.09);
}

.vending-pillar {
  min-height: 260px;
  padding: 30px;
}

.vending-pillar span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--vending-lime);
  font-weight: 900;
}

.vending-pillar p,
.vending-type-card p {
  color: var(--vending-muted);
}

.vending-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 32px;
  align-items: start;
}

.vending-type-list {
  display: grid;
  gap: 14px;
}

.vending-type-card {
  padding: 26px;
}

.vending-type-card h3::before {
  display: inline-block;
  width: 38px;
  height: 5px;
  margin-right: 12px;
  border-radius: 999px;
  vertical-align: middle;
  content: "";
  background: var(--vending-orange);
}

.vending-operation {
  background:
    radial-gradient(circle at 84% 18%, rgba(37, 174, 242, 0.25), transparent 30%),
    linear-gradient(135deg, #24151d, #4d202d);
}

.vending-operation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
  color: #f6fbf4;
}

.vending-operation-card h2,
.vending-operation-card p {
  color: #f6fbf4;
}

.vending-operation-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vending-operation-card li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.vending-final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(37, 174, 242, 0.25), transparent 30%),
    radial-gradient(circle at 12% 10%, rgba(255, 212, 61, 0.22), transparent 26%),
    linear-gradient(135deg, #ffffff, #fff0f2);
  box-shadow: 0 22px 60px rgba(255, 111, 125, 0.13);
}

.vending-footer {
  padding: 28px 20px;
  color: rgba(255, 246, 247, 0.82);
  background: #20161d;
  text-align: center;
}

.vending-footer p {
  margin: 0;
}

.why-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  color: var(--cream);
  background:
    radial-gradient(circle at 88% 20%, rgba(211, 154, 87, 0.26), transparent 30%),
    linear-gradient(135deg, var(--espresso), var(--coffee));
  box-shadow: var(--shadow);
}

.why-panel h2,
.why-panel .eyebrow {
  color: var(--cream);
}

.why-panel h2 {
  line-height: 1.12;
}

.why-panel p {
  margin-bottom: 0;
}

.why-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  padding: 15px 18px;
  border: 1px solid rgba(255, 247, 232, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 247, 232, 0.08);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--coffee);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(81, 49, 31, 0.18);
  border-radius: var(--radius);
  outline: none;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(180, 119, 61, 0.16);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--coffee);
  font-weight: 800;
}

.contact-card {
  padding: 32px;
  background:
    linear-gradient(rgba(39, 22, 15, 0.88), rgba(39, 22, 15, 0.88)),
    radial-gradient(circle at 20% 10%, var(--gold), transparent 34%);
  color: var(--cream);
}

.contact-card h3 {
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.contact-card p,
.contact-card dt {
  color: rgba(255, 247, 232, 0.72);
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-card dt {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.site-footer {
  padding: 28px 20px;
  color: rgba(255, 247, 232, 0.78);
  background: var(--espresso);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@keyframes steam {
  0%,
  100% {
    opacity: 0.18;
    transform: translateY(12px) scaleX(0.9);
  }
  50% {
    opacity: 0.74;
    transform: translateY(-10px) scaleX(1.1);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  .site-nav.is-open a {
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 247, 232, 0.09);
  }

  .hero,
  .page-hero,
  .split-section,
  .why-panel,
  .real-info-inner,
  .detail-grid,
  .service-detail-layout,
  .cta-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding:
      clamp(48px, 8vw, 86px)
      clamp(18px, 4vw, 52px)
      clamp(48px, 8vw, 86px)
      clamp(32px, 5vw, 54px);
  }

  .split-copy {
    justify-self: start;
  }

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

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

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

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

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

  .vending-header {
    grid-template-columns: auto auto;
  }

  .vending-nav-toggle {
    display: block;
    justify-self: end;
  }

  .vending-nav,
  .vending-header-cta {
    display: none;
  }

  .vending-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    justify-content: stretch;
    padding-top: 8px;
  }

  .vending-nav.is-open a {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 111, 125, 0.1);
  }

  .vending-hero-new,
  .vending-split,
  .vending-operation-card,
  .vending-final-card {
    grid-template-columns: 1fr;
  }

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

  .vending-machine-image {
    margin: 0 auto;
  }

  .vending-device {
    min-height: 610px;
    transform: translateY(14px);
  }

  .vending-service-note {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .logo-wordmark strong {
    font-size: 1.02rem;
  }

  .logo-wordmark small {
    font-size: 0.78rem;
  }

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

  .brand-mark span {
    width: 12px;
    height: 28px;
  }

  .hero {
    min-height: auto;
    padding: 46px 16px 64px;
  }

  .hero::before,
  .hero::after {
    width: 68px;
    opacity: 0.22;
  }

  .hero-copy {
    padding: 18px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.7rem);
  }

  .banner-logo {
    transform: scale(0.88);
    transform-origin: left center;
  }

  .banner-ribbon {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 350px);
    margin: 0 0 -22px auto;
    padding: 15px 22px 15px 42px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .coffee-scene {
    width: min(100%, 360px);
  }

  .service-grid,
  .audience-grid,
  .brand-grid,
  .fact-grid,
  .assortment-grid,
  .page-grid,
  .service-pillars,
  .vending-stat-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .vending-hero-card {
    min-height: 330px;
  }

  .vending-stat-grid {
    margin-top: 38px;
  }

  .page-visual {
    min-height: 240px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .brand-grid span {
    min-height: 84px;
  }

  .vending-header {
    padding: 12px 16px;
  }

  .vending-hero-new,
  .vending-section,
  .vending-split,
  .vending-operation,
  .vending-final-cta {
    padding: 54px 16px;
  }

  .vending-hero-copy h1 {
    font-size: clamp(2.6rem, 13vw, 4.15rem);
    line-height: 1.06;
  }

  .vending-pillar-grid {
    grid-template-columns: 1fr;
  }

  .vending-device {
    min-height: 500px;
    transform: none;
  }

  .vending-machine-image {
    width: min(100%, 340px);
    margin: 0 auto;
  }

  .vending-service-note {
    bottom: 0;
    width: min(92%, 300px);
  }

  .vending-final-card .vending-btn {
    width: 100%;
  }
}

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

/* Sjednocený vícestránkový web KAFE CENTRUM */
.kc-site {
  --kc-brown: #4d3427;
  --kc-brown-dark: #241812;
  --kc-cream: #f7efe2;
  --kc-cream-2: #fffaf2;
  --kc-card: #ffffff;
  --kc-text: #29231f;
  --kc-muted: #74675f;
  --kc-line: rgba(77, 52, 39, 0.14);
  --kc-shadow: 0 18px 48px rgba(36, 24, 18, 0.12);
  --kc-radius: 18px;
  margin: 0;
  overflow-x: hidden;
  color: var(--kc-text);
  background:
    linear-gradient(rgba(77, 52, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 52, 39, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, var(--kc-cream-2), #f2e5d4);
  background-size: 36px 36px, 36px 36px, auto;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

.kc-water-page {
  --kc-brown: #1f6f8c;
  --kc-brown-dark: #12384a;
  --kc-cream: #eaf7fb;
  --kc-cream-2: #f6fcff;
  --kc-line: rgba(31, 111, 140, 0.16);
  --kc-water-accent: #5bbbd7;
  --kc-water-deep: #092331;
}

.kc-vending-page {
  --kc-brown: #171a1d;
  --kc-brown-dark: #070809;
  --kc-cream: #eceff1;
  --kc-cream-2: #f8f9fa;
  --kc-line: rgba(17, 20, 24, 0.14);
  --kc-vending-black: #111316;
  --kc-vending-deep: #050607;
  --kc-vending-graphite: #252a30;
  --kc-vending-accent: #4b5563;
  --kc-vending-muted: #626870;
}

.kc-site::before,
.kc-site::after {
  display: none;
}

.kc-site a {
  color: inherit;
  text-decoration: none;
}

.kc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, rgba(47, 25, 16, 0.98), rgba(31, 15, 10, 0.98));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.kc-header.is-hidden {
  transform: translateY(-100%);
}

.kc-header.is-scrolled {
  background: rgba(31, 15, 10, 0.98);
  box-shadow: 0 14px 32px rgba(31, 15, 10, 0.22);
}

.kc-water-page .kc-header {
  background: linear-gradient(180deg, rgba(18, 56, 74, 0.98), rgba(9, 35, 49, 0.98));
}

.kc-water-page .kc-header.is-scrolled {
  background: rgba(9, 35, 49, 0.98);
  box-shadow: 0 14px 32px rgba(9, 35, 49, 0.22);
}

.kc-water-page .kc-brand-mark {
  background: linear-gradient(135deg, #62c0dc, #1f6f8c);
}

.kc-water-page .kc-brand-mark span {
  background: #092331;
}

.kc-water-page .kc-brand-text small,
.kc-site.kc-water-page .kc-phone::before {
  color: #86d8ed;
}

.kc-water-page .kc-nav a:hover,
.kc-water-page .kc-nav a[aria-current="page"] {
  border-color: #5bbbd7;
}

.kc-site.kc-water-page .kc-phone {
  border-color: rgba(134, 216, 237, 0.28);
  background: rgba(134, 216, 237, 0.1);
}

.kc-vending-page .kc-header {
  background: linear-gradient(180deg, rgba(17, 19, 22, 0.98), rgba(5, 6, 7, 0.98));
}

.kc-vending-page .kc-header.is-scrolled {
  background: rgba(5, 6, 7, 0.98);
  box-shadow: 0 14px 32px rgba(5, 6, 7, 0.22);
}

.kc-vending-page .kc-brand-mark {
  background: linear-gradient(135deg, #5b6570, #15181c);
}

.kc-vending-page .kc-brand-mark span {
  background: #050607;
}

.kc-vending-page .kc-brand-text small,
.kc-site.kc-vending-page .kc-phone::before {
  color: #cbd5e1;
}

.kc-vending-page .kc-nav a:hover,
.kc-vending-page .kc-nav a[aria-current="page"] {
  border-color: #9ca3af;
}

.kc-site.kc-vending-page .kc-phone {
  border-color: rgba(203, 213, 225, 0.26);
  background: rgba(203, 213, 225, 0.08);
}

.kc-brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
}

.kc-brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.kc-brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e3bd62, #b98734);
  box-shadow: none;
}

.kc-brand-mark span {
  width: 13px;
  height: 30px;
  border-radius: 50%;
  background: #3a1d12;
  transform: rotate(28deg);
}

.kc-brand-text strong,
.kc-brand-text small {
  display: block;
  line-height: 1;
}

.kc-brand-text strong {
  color: #fff7ea;
  font-size: clamp(1.05rem, 1.9vw, 1.8rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.kc-brand-text small {
  margin-top: 4px;
  color: #d7a247;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.kc-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: rgba(255, 247, 234, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.kc-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.kc-nav a:hover,
.kc-nav a[aria-current="page"] {
  color: #ffffff;
  border-color: #c99542;
}

.kc-header-cta,
.kc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kc-header-cta,
.kc-btn-primary,
.kc-btn.kc-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--kc-brown), var(--kc-brown-dark));
  box-shadow: 0 14px 28px rgba(77, 52, 39, 0.22);
}

.kc-btn-secondary {
  color: var(--kc-brown-dark);
  border: 1px solid var(--kc-line);
  background: #ffffff;
}

.kc-btn-light {
  color: var(--kc-brown-dark);
  background: #efe2cf;
}

.kc-btn:hover,
.kc-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(77, 52, 39, 0.2);
}

.kc-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 247, 234, 0.2);
  border-radius: 12px;
  background: rgba(255, 247, 234, 0.08);
}

.kc-nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: rgba(255, 247, 234, 0.9);
}

.kc-hero,
.kc-page-hero,
.kc-section,
.kc-cta {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.kc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  min-height: calc(100vh - 74px);
  margin-top: -20px;
  padding-top: calc(clamp(68px, 9vw, 128px) + 20px);
  padding-bottom: clamp(68px, 9vw, 128px);
}

.kc-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  margin-top: -20px;
  padding-top: calc(clamp(64px, 9vw, 118px) + 20px);
  padding-bottom: clamp(64px, 9vw, 118px);
}

.kc-page-hero-water {
  background:
    radial-gradient(circle at 86% 18%, rgba(80, 181, 219, 0.22), transparent 28%),
    linear-gradient(135deg, #f8fdff, #e8f7fc);
}

.kc-contact-hero {
  min-height: 520px;
}

.kc-kicker {
  margin: 0 0 12px;
  color: var(--kc-brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-hero h1,
.kc-page-hero h1,
.kc-section-heading h2,
.kc-cta h2 {
  margin: 0;
  color: var(--kc-brown-dark);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
}

.kc-hero h1 {
  max-width: 930px;
  font-size: clamp(3.1rem, 7.4vw, 7rem);
}

.kc-page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.kc-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--kc-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

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

.kc-hero-panel,
.kc-product-visual,
.kc-vending-visual,
.kc-water-visual,
.kc-product-card-large,
.kc-location-card-hero {
  border: 1px solid var(--kc-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--kc-shadow);
}

.kc-hero-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.kc-hero-panel::before {
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(77, 52, 39, 0.11) 0 32%, transparent 33%),
    linear-gradient(135deg, rgba(247, 239, 226, 0.92), rgba(255, 255, 255, 0.4));
  background-size: 86px 54px, auto;
}

.kc-hero-panel img,
.kc-product-visual img,
.kc-vending-visual img,
.kc-product-card-large img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(82%, 430px);
  filter: drop-shadow(0 22px 30px rgba(36, 24, 18, 0.18));
}

.kc-hero-note {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 18px 20px;
  border: 1px solid var(--kc-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.kc-hero-note strong,
.kc-hero-note span {
  display: block;
}

.kc-hero-note span {
  color: var(--kc-muted);
  font-weight: 700;
}

.kc-section {
  padding-top: clamp(66px, 9vw, 112px);
  padding-bottom: clamp(66px, 9vw, 112px);
  background: #ffffff;
}

.kc-section-cream {
  background: rgba(247, 239, 226, 0.76);
}

.kc-section-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.kc-section-heading-left {
  margin: 0;
  text-align: left;
}

.kc-section-heading h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.kc-split .kc-section-heading p:not(.kc-kicker) {
  margin-top: 22px;
}

.kc-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.12;
}

.kc-cta p:not(.kc-kicker) {
  margin-top: 14px;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.65;
  max-width: 560px;
}

.kc-section-heading p:not(.kc-kicker),
.kc-cta p,
.kc-service-card p,
.kc-product-card p,
.kc-location-card p,
.kc-water-card p {
  color: var(--kc-muted);
}

.kc-card-grid,
.kc-split,
.kc-brand-strip,
.kc-about-layout,
.kc-about-points,
.kc-benefit-list,
.kc-chip-grid,
.kc-location-grid,
.kc-contact-layout,
.kc-map-placeholder,
.kc-info-band,
.kc-cta {
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

.kc-card-grid {
  display: grid;
  gap: 18px;
}

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

.kc-service-card,
.kc-product-card,
.kc-location-card,
.kc-water-card,
.kc-info-band,
.kc-form,
.kc-contact-info {
  border: 1px solid var(--kc-line);
  border-radius: var(--kc-radius);
  background: var(--kc-card);
  box-shadow: 0 12px 32px rgba(36, 24, 18, 0.08);
}

.kc-service-card,
.kc-product-card,
.kc-location-card,
.kc-water-card,
.kc-info-band {
  padding: 28px;
}

.kc-service-card span,
.kc-location-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--kc-brown);
  font-size: 0.78rem;
  font-weight: 900;
}

.kc-service-card h3,
.kc-product-card h3,
.kc-location-card h3,
.kc-water-card h3,
.kc-info-band h3 {
  margin: 0 0 12px;
  color: var(--kc-brown-dark);
  font-size: 1.35rem;
  line-height: 1.18;
}

.kc-service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--kc-brown);
  font-weight: 900;
}

.kc-brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.kc-brand-strip-small {
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.kc-brand-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--kc-line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--kc-brown-dark);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 900;
  text-align: center;
}

/* ── About section ──────────────────────────────────────────────────── */

/* Contained within ~1240 px for a more balanced, premium feel */
.kc-about-section .kc-about-layout,
.kc-about-section .kc-about-points {
  max-width: 1240px;
}

/* Section: airy vertical padding, soft warm cream */
.kc-about-section {
  padding-top: clamp(64px, 6.5vw, 96px);
  padding-bottom: clamp(64px, 6.5vw, 96px);
  background: #f7f0e5;
}

/* Two-column: text (1fr) | visual (2fr) — wider right so photo dominates */
.kc-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(40px, 4.5vw, 56px);
  align-items: center;
}

/* Balanced serif heading — elegant, not oversized */
.kc-about-section .kc-section-heading h2 {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 0;
}

/* Subdued paragraph — decenter so heading stays focal */
.kc-about-section .kc-section-heading p:not(.kc-kicker) {
  max-width: 460px;
  color: #74675e;
  font-size: clamp(0.9375rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  margin-top: 0;
}

/* Short gold rule */
.kc-about-divider {
  width: 38px;
  height: 2px;
  margin: 18px 0 20px;
  border-radius: 2px;
  background: #bd8732;
  display: block;
}

/* Visual wrapper: wide + moderately tall for a horizontal photo feel */
.kc-about-visual {
  position: relative;
  height: clamp(360px, 30vw, 420px);
}

/* Photo: wide horizontal card — leaves right ~27 % for the dark card */
.kc-about-photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 76%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: 40% 46%;
  display: block;
  box-shadow: 0 6px 28px rgba(36, 20, 15, 0.13);
}

/* Dark card: sits right, clearly overlapping photo edge */
.kc-about-overlay-card {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 38%;
  border-radius: 22px;
  background: linear-gradient(155deg, #2c1a0e 0%, #1b0c06 100%);
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(28, 12, 4, 0.26);
}

.kc-about-overlay-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

/* Linear gold icons in overlay card */
.kc-about-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #c8923c;
  stroke-width: 1.8;
}

/* Light, readable text — not too bold */
.kc-about-overlay-item p {
  margin: 0;
  color: rgba(255, 248, 238, 0.86);
  font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
  line-height: 1.58;
  font-weight: 450;
}

/* Bottom four benefit tiles */
.kc-about-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 3.2vw, 48px);
}

.kc-about-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  min-height: 158px;
  padding: 28px 20px;
  border: 1px solid rgba(70, 45, 30, 0.09);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 2px 10px rgba(70, 45, 30, 0.07);
}

/* Larger gold icons sitting above text */
.kc-about-tile-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: #c8923c;
  stroke-width: 1.75;
}

.kc-about-point strong {
  color: #24140f;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.3;
}

.kc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.kc-split-center {
  align-items: center;
}

.kc-benefit-list,
.kc-chip-grid {
  display: grid;
  gap: 12px;
}

.kc-benefit-list span,
.kc-chip-grid span {
  padding: 15px 18px;
  border: 1px solid var(--kc-line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--kc-brown-dark);
  font-weight: 800;
}

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

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

.kc-info-band {
  margin-top: 20px;
  background: linear-gradient(135deg, #fff, var(--kc-cream));
}

.kc-product-visual,
.kc-vending-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.kc-vending-visual {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 111, 125, 0.14), transparent 44%),
    #ffffff;
}

.kc-vending-visual img {
  width: min(78%, 390px);
}

.kc-product-card-large {
  display: grid;
  place-items: start;
  gap: 16px;
}

.kc-product-card-large img {
  justify-self: center;
  width: min(70%, 270px);
}

.kc-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kc-water-panel {
  background:
    radial-gradient(circle at 16% 18%, rgba(93, 190, 225, 0.24), transparent 26%),
    linear-gradient(135deg, #f6fcff, #e4f6fb);
}

.kc-water-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(80, 181, 219, 0.2), transparent 46%),
    #ffffff;
}

.kc-water-visual span,
.kc-water-card span {
  display: block;
  width: 90px;
  height: 140px;
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0 28%, transparent 29%),
    linear-gradient(180deg, #7fd3ef, #2c99c1);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.42), 0 18px 36px rgba(35, 109, 140, 0.2);
}

.kc-water-visual strong,
.kc-water-visual small {
  display: block;
}

.kc-water-visual strong {
  margin-top: 20px;
  color: var(--kc-brown-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.kc-water-visual small {
  color: var(--kc-muted);
  font-weight: 800;
}

.kc-water-card {
  background: rgba(255, 255, 255, 0.84);
}

.kc-water-card span {
  width: 70px;
  height: 104px;
  margin-bottom: 20px;
}

.kc-water-page .kc-section-cream {
  background: #eaf7fb;
}

.kc-water-page .kc-chip-grid span,
.kc-water-page .kc-water-card,
.kc-water-page .kc-cta-water {
  border-color: rgba(31, 111, 140, 0.16);
}

.kc-water-page .kc-chip-grid span {
  background: #ffffff;
  color: #12384a;
}

.kc-water-page .kc-cta-water {
  background:
    radial-gradient(circle at 88% 18%, rgba(91, 187, 215, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff, #e8f7fc);
}

/* ── Coffee subpage ─────────────────────────────────────────────── */

.kc-page-hero-coffee {
  background:
    radial-gradient(circle at 88% 14%, rgba(189, 135, 50, 0.16), transparent 32%),
    radial-gradient(circle at 10% 80%, rgba(189, 135, 50, 0.07), transparent 28%),
    linear-gradient(135deg, #fdf8f2, #f7f0e5);
}

.kc-hero-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.kc-hero-illustration svg {
  width: min(100%, 340px);
  filter: drop-shadow(0 8px 28px rgba(189, 135, 50, 0.14));
}

.kc-feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--kc-cream);
  color: #bd8732;
}

.kc-feature-card {
  padding: 32px 28px;
}

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

.kc-card-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.kc-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--kc-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.kc-card-list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: #bd8732;
}

.kc-servis-cta {
  display: inline-flex;
  margin-top: 28px;
}

.kc-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.kc-contact-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Hero copy column on coffee subpage */
.kc-coffee-hero-copy {
  width: min(100%, 650px);
}

.kc-coffee .kc-hero h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 4.3vw, 4.6rem);
  line-height: 1.04;
}

/* Dark espresso section */
.kc-section-espresso {
  background: linear-gradient(160deg, #1d0e05 0%, #0e0702 100%);
}

.kc-section-espresso .kc-kicker {
  color: #bd8732;
}

.kc-section-espresso .kc-section-heading h2 {
  color: #fff8ee;
}

.kc-section-espresso .kc-section-heading p:not(.kc-kicker) {
  color: rgba(255, 248, 238, 0.65);
}

/* 5-column quick nav */
.kc-card-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

/* Coffee brand dark cards */
.kc-coffee-brand-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--kc-radius);
  background: linear-gradient(145deg, #2a1709, #170c04);
  padding: clamp(28px, 3.5vw, 44px);
  box-shadow: 0 20px 56px rgba(24, 10, 2, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kc-coffee-brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(24, 10, 2, 0.48);
}

.kc-coffee-brand-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(189, 135, 50, 0.07);
  pointer-events: none;
}

.kc-coffee-brand-card .kc-brand-marker {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 20px;
  border-radius: 2px;
  background: #bd8732;
}

.kc-coffee-brand-card h3 {
  margin: 0 0 14px;
  color: #e8c97a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.kc-coffee-brand-card p {
  margin: 0;
  color: rgba(255, 248, 238, 0.74);
  font-size: clamp(0.875rem, 1.05vw, 0.9375rem);
  line-height: 1.65;
}

.kc-coffee-brand-note {
  max-width: 620px;
  margin: clamp(36px, 3.5vw, 48px) auto 0;
  text-align: center;
  color: rgba(255, 248, 238, 0.5);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* Machine brand showcase */
.kc-machine-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 3vw, 36px);
}

.kc-machine-brand-card {
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--kc-radius);
  background: #ffffff;
  border: 1px solid var(--kc-line);
  border-top: 3px solid #bd8732;
  box-shadow: 0 8px 24px rgba(36, 24, 18, 0.07);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.kc-machine-brand-card:hover {
  box-shadow: 0 14px 36px rgba(36, 24, 18, 0.13);
  transform: translateY(-2px);
}

.kc-machine-brand-card h3 {
  margin: 0 0 10px;
  color: var(--kc-brown-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.12;
}

.kc-machine-brand-card p {
  margin: 0;
  color: var(--kc-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Subsection heading (separator within a section) */
.kc-subsection-heading {
  margin-top: clamp(52px, 5vw, 72px);
  padding-top: clamp(40px, 4vw, 54px);
  border-top: 1px solid var(--kc-line);
  text-align: center;
}

.kc-subsection-heading h3 {
  margin: 8px 0 0;
  color: var(--kc-brown-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.1;
}

/* Intro text in machine cards */
.kc-machine-card-intro {
  margin: 0 0 18px;
  color: var(--kc-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Hero visual composition */
.kc-coffee-hero-visual {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--kc-cream), #ede0cc);
}

.kc-hero-img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 74%;
  height: 90%;
  border-radius: 20px;
  overflow: hidden;
}

.kc-hero-img-primary img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.kc-hero-img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  padding: 5px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(36, 24, 18, 0.14);
}

.kc-hero-img-secondary img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
  object-fit: cover;
}

/* 5-card asymmetric grid (3 narrow + 2 wide) */
.kc-card-grid-5-asym {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.kc-card-grid-5-asym > :nth-child(-n+3) {
  grid-column: span 2;
}

.kc-card-grid-5-asym > :nth-child(n+4) {
  grid-column: span 3;
}

/* Kávovary section: text left / stacked cards right */
.kc-kavovary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.kc-kavovary-cards {
  display: grid;
  gap: 18px;
}

/* Service chips */
.kc-service-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.kc-service-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--kc-line);
  border-radius: 14px;
  background: #ffffff;
  color: var(--kc-brown-dark);
  font-size: 0.9375rem;
  font-weight: 800;
}

.kc-service-chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--kc-cream);
  color: #bd8732;
}

/* ── /Coffee subpage ─────────────────────────────────────────────── */

.kc-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(44px, 7vw, 88px);
  margin-bottom: clamp(44px, 7vw, 88px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 20%, rgba(221, 209, 117, 0.28), transparent 28%),
    linear-gradient(135deg, #ffffff, var(--kc-cream));
  box-shadow: var(--kc-shadow);
}

.kc-cta-water {
  background:
    radial-gradient(circle at 88% 18%, rgba(80, 181, 219, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff, #e8f7fc);
}

.kc-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 242, 0.84);
  background: var(--kc-brown-dark);
}

.kc-footer p {
  margin: 0;
}

.kc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.kc-contact-info,
.kc-call-card,
.kc-form {
  padding: clamp(24px, 4vw, 38px);
}

.kc-call-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  align-content: center;
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 12%, rgba(221, 209, 117, 0.22), transparent 30%),
    linear-gradient(135deg, var(--kc-brown), var(--kc-brown-dark));
  box-shadow: var(--kc-shadow);
}

.kc-call-card .kc-kicker,
.kc-call-card p {
  color: rgba(255, 250, 242, 0.82);
}

.kc-call-card h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
}

.kc-call-card p {
  max-width: 520px;
  margin: 0;
}

.kc-call-number {
  width: fit-content;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.kc-call-mail {
  width: fit-content;
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 250, 242, 0.45);
  text-underline-offset: 5px;
}

.kc-info-list {
  display: grid;
  gap: 12px;
}

.kc-info-list p {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--kc-line);
}

.kc-info-list strong {
  color: var(--kc-brown-dark);
}

.kc-info-list span {
  color: var(--kc-muted);
}

.kc-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kc-form-note,
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--kc-muted);
  font-size: 0.92rem;
}

.kc-form label {
  display: grid;
  gap: 8px;
  color: var(--kc-brown-dark);
  font-weight: 800;
}

.kc-form input,
.kc-form select,
.kc-form textarea {
  width: 100%;
  border: 1px solid var(--kc-line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--kc-text);
  background: #fffaf5;
  font: inherit;
}

.kc-form textarea {
  resize: vertical;
}

.kc-form-full,
.kc-form .kc-btn {
  grid-column: 1 / -1;
}

.kc-map-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px dashed rgba(77, 52, 39, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(rgba(77, 52, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 52, 39, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: 32px 32px;
  text-align: center;
}

.kc-map-placeholder span {
  color: var(--kc-brown);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kc-header-actions {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-self: end;
}

.kc-site .kc-phone {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 247, 234, 0.26);
  border-radius: 999px;
  color: #fff7ea;
  background: rgba(255, 247, 234, 0.08);
  font-weight: 900;
  white-space: nowrap;
}

.kc-site .kc-phone::before {
  margin-right: 8px;
  content: "☎";
  color: #d7a247;
}

.kc-home .kc-header-cta,
.kc-home .kc-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #b98331, #d8ad59);
  box-shadow: 0 16px 34px rgba(143, 92, 32, 0.28);
}

.kc-home .kc-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 78px));
  padding-top: clamp(46px, 5vw, 72px);
  padding-bottom: 0;
  background: url("assets/hero-uvod.png") center right / cover no-repeat;
  overflow: hidden;
}

.kc-home .kc-hero::before {
  display: none;
}

.kc-home .kc-hero::after {
  display: none;
}

.kc-home .kc-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  padding-left: clamp(6px, 2.6vw, 42px);
}

.kc-home .kc-kicker {
  color: #b98734;
}

.kc-home .kc-hero h1 {
  max-width: 680px;
  color: #2b150d;
  font-size: clamp(3rem, 4.35vw, 4.85rem);
  line-height: 1.02;
  text-shadow: none;
}

.kc-home .kc-lead {
  max-width: 590px;
  color: #34251f;
}

.kc-home .kc-btn-secondary,
.kc-home .kc-btn-light {
  border: 1px solid rgba(185, 131, 49, 0.22);
  color: #3b2418;
  background: rgba(255, 250, 242, 0.74);
}

.kc-hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 690px);
  margin-top: clamp(22px, 3vw, 34px);
  padding: 16px 18px;
  border: 1px solid rgba(185, 131, 49, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.kc-hero-features div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(185, 131, 49, 0.18);
}

.kc-hero-features div:last-child {
  border-right: 0;
}

.kc-feature-icon {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.kc-hero-features strong,
.kc-hero-features small {
  display: block;
}

.kc-hero-features strong {
  color: #2b150d;
  font-size: 0.9rem;
  line-height: 1.2;
}

.kc-hero-features small {
  color: #6d5b4e;
  font-size: 0.78rem;
  font-weight: 700;
}

.kc-hero-showcase {
  position: relative;
  min-height: 540px;
  align-self: center;
  isolation: isolate;
}

.kc-hero-showcase::before {
  position: absolute;
  inset: auto -90px 0 12%;
  z-index: -1;
  height: 38%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(69, 42, 28, 0.24), transparent 68%);
  filter: blur(3px);
}

.kc-showcase-vending,
.kc-showcase-machine,
.kc-coffee-bag,
.kc-water-dispenser,
.kc-beans {
  position: absolute;
}

.kc-showcase-vending {
  right: 122px;
  bottom: 30px;
  width: min(32vw, 405px);
  max-width: 52%;
  filter: drop-shadow(0 22px 36px rgba(31, 15, 10, 0.28));
}

.kc-showcase-machine {
  left: 17%;
  bottom: 28px;
  z-index: 3;
  width: min(23vw, 315px);
  filter: drop-shadow(0 24px 34px rgba(31, 15, 10, 0.22));
}

.kc-coffee-bag {
  left: 2%;
  bottom: 78px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: 136px;
  min-height: 210px;
  padding: 28px 20px;
  border-radius: 16px 16px 10px 10px;
  color: #e7c46f;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #111, #2b201b);
  box-shadow: 0 18px 32px rgba(31, 15, 10, 0.28);
  text-align: center;
  text-transform: uppercase;
}

.kc-coffee-bag span {
  font-size: 0.72rem;
  font-weight: 900;
}

.kc-coffee-bag strong {
  align-self: end;
  color: #f2db9b;
  font-size: 1rem;
  line-height: 1.15;
}

.kc-coffee-bag small {
  color: rgba(242, 219, 155, 0.8);
  font-size: 0.68rem;
  font-weight: 800;
}

.kc-water-dispenser {
  right: 0;
  bottom: 32px;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(17vw, 195px);
  min-width: 160px;
  min-height: 330px;
  padding: 32px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff, #d8d5cd 68%, #f7f7f4);
  box-shadow: 0 20px 38px rgba(31, 15, 10, 0.24);
}

.kc-water-dispenser span {
  width: 78px;
  height: 110px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #151515, #2b2b2b);
  box-shadow: inset 0 -42px 0 rgba(255, 255, 255, 0.08), 0 120px 0 -45px rgba(60, 169, 217, 0.75);
}

.kc-water-dispenser strong {
  margin-top: auto;
  color: #ad7d34;
  font-size: 0.72rem;
  font-weight: 900;
}

.kc-beans {
  left: 9%;
  bottom: 48px;
  z-index: 1;
  width: 160px;
  height: 70px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 10% 54%, #4f2c18 0 10px, transparent 11px),
    radial-gradient(ellipse at 25% 40%, #3a1d10 0 8px, transparent 9px),
    radial-gradient(ellipse at 42% 60%, #6a3a1d 0 10px, transparent 11px),
    radial-gradient(ellipse at 58% 42%, #4a2716 0 9px, transparent 10px),
    radial-gradient(ellipse at 74% 58%, #7a4523 0 11px, transparent 12px);
}

.kc-trusted {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(86, 54, 32, 0.09);
  background: rgba(255, 247, 234, 0.82);
}

.kc-trusted p {
  margin: 0;
  color: #b98734;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.kc-trusted div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.kc-trusted span {
  color: rgba(43, 21, 13, 0.62);
  font-size: clamp(0.9rem, 1.6vw, 1.25rem);
  font-weight: 900;
  text-align: center;
}

.kc-brands-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(86, 54, 32, 0.09);
  border-bottom: 1px solid rgba(86, 54, 32, 0.09);
  background: rgba(255, 247, 234, 0.82);
}

.kc-brands-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 26px);
  min-width: 0;
  min-height: 96px;
  padding: 20px clamp(18px, 4vw, 54px);
  border: 0;
  border-right: 1px solid rgba(185, 135, 52, 0.26);
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.16s ease;
}

.kc-brands-group:last-child {
  border-right: 0;
}

.kc-brands-group:hover,
.kc-brands-group:focus-visible {
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 -3px 0 rgba(185, 135, 52, 0.42);
}

.kc-brands-group:active {
  transform: translateY(1px);
  background: rgba(43, 21, 13, 0.14);
}

.kc-brands-group.is-active,
.kc-brands-group[aria-pressed="true"] {
  color: #fff7ea;
  background: linear-gradient(135deg, rgba(77, 52, 39, 0.96), rgba(43, 21, 13, 0.94));
  box-shadow: inset 0 -3px 0 rgba(216, 173, 89, 0.78);
}

.kc-brands-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  color: #b98734;
  flex-shrink: 0;
}

.kc-brands-label {
  margin: 0;
  padding-left: clamp(16px, 2vw, 26px);
  border-left: 1px solid rgba(185, 135, 52, 0.5);
  color: #b98734;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  white-space: nowrap;
}

.kc-brands-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 1.6vw, 22px);
}

.kc-brands-list span {
  color: #2b150d;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 500;
  position: relative;
  padding-right: clamp(12px, 1.6vw, 22px);
}

.kc-brands-list span::after {
  content: "•";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  color: #b98734;
  font-size: 1.1em;
  line-height: 1;
}

.kc-brands-list span:last-child {
  padding-right: 0;
}

.kc-brands-list span:last-child::after {
  content: none;
}

.kc-brands-group.is-active .kc-brands-icon,
.kc-brands-group[aria-pressed="true"] .kc-brands-icon {
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.kc-brands-group.is-active .kc-brands-label,
.kc-brands-group[aria-pressed="true"] .kc-brands-label,
.kc-brands-group.is-active .kc-brands-list span,
.kc-brands-group[aria-pressed="true"] .kc-brands-list span {
  color: #fff7ea;
}

.kc-brands-group.is-active .kc-brands-label,
.kc-brands-group[aria-pressed="true"] .kc-brands-label {
  border-left-color: rgba(255, 247, 234, 0.32);
}

.kc-brands-group.is-active .kc-brands-list span::after,
.kc-brands-group[aria-pressed="true"] .kc-brands-list span::after {
  color: #d8ad59;
}

.kc-section-services {
  padding-right: 0;
  padding-left: 0;
  background: #ffffff;
}

.kc-section-services .kc-section-heading {
  padding-right: clamp(18px, 5vw, 72px);
  padding-left: clamp(18px, 5vw, 72px);
}

.kc-service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.kc-service-panel {
  position: relative;
  min-width: 0;
  min-height: clamp(510px, 48vw, 660px);
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background: #fffaf2;
  box-shadow: 0 18px 46px rgba(36, 24, 18, 0.08);
}

.kc-service-panel:last-child {
  border-right: 0;
}

.kc-service-panel::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(255, 250, 242, 0.96);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.kc-service-panel:hover::after,
.kc-service-panel:focus-within::after {
  opacity: 1;
}

.kc-service-panel-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transition: transform 0.28s ease;
}

.kc-service-panel:hover .kc-service-panel-image,
.kc-service-panel:focus-within .kc-service-panel-image {
  transform: scale(1.2);
}

.kc-service-actions {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.kc-service-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  width: 100%;
  min-height: clamp(78px, 5vw, 94px);
  padding: 18px 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #2b150d;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  text-align: center;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: opacity 0.2s ease, transform 0.24s ease, color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}

.kc-service-action:nth-child(2) {
  transition-delay: 0.04s;
}

.kc-service-action:nth-child(3) {
  transition-delay: 0.08s;
}

.kc-service-panel:hover .kc-service-action,
.kc-service-panel:focus-within .kc-service-action {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.kc-service-action:hover,
.kc-service-action:focus,
.kc-service-action:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, var(--kc-brown), var(--kc-brown-dark));
  box-shadow: none;
}

.kc-service-action span {
  display: block;
  width: 100%;
  padding: 0 clamp(18px, 1.8vw, 30px);
  overflow: visible;
  font-size: clamp(1.18rem, 1.45vw, 1.5rem);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-overflow: clip;
}

.kc-store-preview {
  padding: 15px clamp(18px, 5vw, 72px) 0;
  background: #ffffff;
}

.kc-store-photo {
  position: relative;
  max-width: min(1480px, 100%);
  min-height: clamp(340px, 42vw, 610px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(86, 54, 32, 0.12);
  border-radius: 22px;
  background: #f7efe2;
  box-shadow: 0 22px 58px rgba(36, 24, 18, 0.14);
  isolation: isolate;
}

.kc-store-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.kc-store-photo:hover img {
  transform: scale(1.018);
}

.kc-store-copy {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 48px);
  z-index: 2;
  width: min(460px, calc(100% - 36px));
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  color: #2b150d;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: 0 18px 38px rgba(36, 24, 18, 0.16);
  backdrop-filter: blur(10px);
}

.kc-store-copy h2 {
  margin: 0;
  color: #2b150d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.kc-store-copy p:not(.kc-kicker) {
  margin: 16px 0 0;
  color: #4f4038;
  font-weight: 650;
}

.kc-store-copy a {
  display: inline-flex;
  margin-top: 20px;
  color: #7d5128;
  font-weight: 900;
  border-bottom: 2px solid #d8ad59;
}

.kc-store-points {
  position: absolute;
  inset: clamp(18px, 3vw, 38px) auto auto clamp(18px, 3vw, 38px);
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(300px, calc(100% - 36px));
}

.kc-store-point {
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #2b150d;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 12px 28px rgba(36, 24, 18, 0.12);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.kc-store-point:hover,
.kc-store-point:focus-visible {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(36, 24, 18, 0.18);
}

.kc-store-point span,
.kc-store-point small {
  display: block;
}

.kc-store-point span {
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
}

.kc-store-point small {
  color: #7a6254;
  font-size: 0.74rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .kc-brands-bar {
    grid-template-columns: 1fr;
  }

  .kc-brands-group {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    min-height: 86px;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(185, 135, 52, 0.26);
    text-align: center;
  }

  .kc-brands-group:last-child {
    border-bottom: 0;
  }

  .kc-brands-label {
    padding-left: 14px;
  }

  .kc-store-preview {
    padding-top: 15px;
  }

  .kc-store-photo {
    min-height: 620px;
    border-radius: 18px;
  }

  .kc-store-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .kc-store-points {
    top: 16px;
    left: 16px;
    width: min(330px, calc(100% - 32px));
  }
}

@media (max-width: 1040px) {
  .kc-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
  }

  .kc-nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: block;
    justify-self: end;
  }

  .kc-nav,
  .kc-header-cta {
    display: none;
  }

  .kc-header-actions {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    justify-self: end;
  }

  .kc-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 4px;
    justify-content: stretch;
    padding-top: 8px;
  }

  .kc-nav.is-open a {
    padding: 12px;
    border-radius: 12px;
    background: rgba(77, 52, 39, 0.08);
  }

  .kc-hero,
  .kc-page-hero,
  .kc-split,
  .kc-about-layout,
  .kc-contact-layout,
  .kc-cta {
    grid-template-columns: 1fr;
  }

  .kc-about-section {
    padding-top: clamp(48px, 6vw, 64px);
    padding-bottom: clamp(48px, 6vw, 64px);
  }

  .kc-about-section .kc-section-heading h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.05;
  }

  .kc-about-visual {
    height: auto;
  }

  .kc-about-photo {
    position: static;
    width: 100%;
    height: clamp(240px, 44vw, 340px);
    border-radius: 20px;
    box-shadow: 0 6px 24px rgba(36, 20, 15, 0.12);
  }

  .kc-about-overlay-card {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 14px;
    border-radius: 20px;
    padding: 28px 24px;
    gap: 20px;
  }

  .kc-about-overlay-card .kc-about-overlay-item {
    gap: 14px;
  }

  .kc-hero-panel,
  .kc-hero-showcase,
  .kc-product-visual,
  .kc-vending-visual,
  .kc-water-visual {
    min-height: 360px;
  }

  .kc-home .kc-hero {
    padding-bottom: 58px;
  }

  .kc-home .kc-hero-copy {
    padding-left: 0;
  }

  .kc-hero-showcase {
    min-height: 520px;
  }

  .kc-showcase-vending {
    right: 16%;
    width: min(48vw, 390px);
  }

  .kc-showcase-machine {
    left: 21%;
    width: min(38vw, 320px);
  }

  .kc-water-dispenser {
    right: 4%;
    width: 180px;
    min-height: 320px;
  }

  .kc-trusted,
  .kc-trusted div {
    grid-template-columns: 1fr;
  }

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

  .kc-card-grid-three,
  .kc-location-grid,
  .kc-about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .kc-service-panel {
    min-height: 580px;
  }

  .kc-service-panel:nth-child(2n) {
    border-right: 0;
  }

  .kc-brand-strip,
  .kc-chip-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kc-card-grid-two {
    grid-template-columns: 1fr;
  }

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

  .kc-machine-brand-grid {
    grid-template-columns: 1fr;
  }

  .kc-hero-illustration {
    display: none;
  }

  .kc-coffee-hero-visual {
    display: none;
  }

  .kc-card-grid-5-asym {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .kc-card-grid-5-asym > :nth-child(-n+3),
  .kc-card-grid-5-asym > :nth-child(n+4) {
    grid-column: span 1;
  }

  .kc-kavovary-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .kc-header {
    padding: 12px 16px;
  }

  .kc-header-actions {
    gap: 0;
  }

  .kc-site .kc-phone {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  .kc-site .kc-phone::before {
    margin-right: 5px;
  }

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

  .kc-brand-text strong {
    font-size: 0.92rem;
  }

  .kc-hero,
  .kc-page-hero,
  .kc-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .kc-hero,
  .kc-page-hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .kc-hero h1,
  .kc-page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .kc-home .kc-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
    line-height: 1.02;
  }

  .kc-home .kc-hero {
    padding-top: 42px;
    min-height: auto;
    background: url("assets/hero-uvod.png") center bottom / cover no-repeat;
  }

  .kc-actions,
  .kc-btn,
  .kc-cta .kc-btn,
  .kc-cta-actions .kc-btn,
  .kc-contact-btns .kc-btn {
    width: 100%;
  }

  .kc-contact-btns {
    flex-direction: column;
  }

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

  .kc-machine-brand-grid {
    grid-template-columns: 1fr;
  }

  .kc-coffee .kc-hero h1 {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .kc-card-grid-5-asym {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kc-service-chip-grid {
    grid-template-columns: 1fr;
  }

  .kc-card-grid-three,
  .kc-location-grid,
  .kc-service-showcase,
  .kc-brand-strip,
  .kc-brand-strip-small,
  .kc-chip-grid,
  .kc-chip-grid-wide,
  .kc-form {
    grid-template-columns: 1fr;
  }

  /* About points: 2 columns on mobile */
  .kc-about-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kc-about-section .kc-section-heading h2 {
    font-size: clamp(2.4rem, 8vw, 3rem);
    line-height: 1.05;
  }

  .kc-service-card,
  .kc-product-card,
  .kc-location-card,
  .kc-water-card,
  .kc-info-band,
  .kc-contact-info,
  .kc-form {
    padding: 22px;
  }

  .kc-hero-panel img,
  .kc-product-visual img {
    width: min(86%, 320px);
  }

  .kc-hero-features {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 10px;
  }

  .kc-hero-features div {
    border-right: 0;
    border-bottom: 1px solid rgba(185, 131, 49, 0.18);
    padding: 12px;
  }

  .kc-hero-features div:last-child {
    border-bottom: 0;
  }

  .kc-service-showcase {
    min-height: auto;
  }

  .kc-service-panel {
    min-height: 560px;
    border-right: 0;
  }

  .kc-service-actions {
    width: 100%;
    padding: 0;
  }

  .kc-service-action,
  .kc-service-action:hover,
  .kc-service-action:focus,
  .kc-service-action:focus-visible {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .kc-service-action span {
    opacity: 1;
    transform: none;
  }

  .kc-store-preview {
    padding-right: 16px;
    padding-left: 16px;
  }

  .kc-store-photo {
    min-height: 650px;
  }

  .kc-store-point {
    border-radius: 16px;
  }

  .kc-hero-showcase {
    min-height: 440px;
  }

  .kc-showcase-vending {
    right: 9%;
    bottom: 74px;
    width: 230px;
    max-width: none;
  }

  .kc-showcase-machine {
    left: 18%;
    bottom: 54px;
    width: 210px;
  }

  .kc-coffee-bag {
    left: 0;
    bottom: 76px;
    width: 112px;
    min-height: 168px;
    padding: 20px 12px;
  }

  .kc-water-dispenser {
    right: 0;
    bottom: 64px;
    width: 108px;
    min-width: 108px;
    min-height: 220px;
    padding: 22px 12px 14px;
    border-radius: 20px;
  }

  .kc-water-dispenser span {
    width: 54px;
    height: 78px;
  }

  .kc-beans {
    left: 12%;
    bottom: 44px;
    transform: scale(0.75);
    transform-origin: left bottom;
  }

  .kc-trusted {
    padding: 22px 16px;
  }

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

  .kc-vending-visual img {
    width: min(78%, 290px);
  }

  .kc-info-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .kc-footer {
    display: grid;
  }
}

/* ══════════════════════════════════════════════════════════════════════ */
/* "Vše pro kávovary" hero — premium showroom design                     */
/* ══════════════════════════════════════════════════════════════════════ */

.kc-vsk-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: -78px;
  min-height: 100vh;
  background: url("assets/hero-kavservis.png") center top / cover no-repeat;
  background-color: #fbf5ea;
}

.kc-vsk-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1510px;
  margin: 0 auto;
  padding: calc(78px + 81px) clamp(18px, 5vw, 72px) 48px;
}

.kc-vsk-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
}

.kc-vsk-kicker {
  margin: 0 0 16px;
  color: #b98226;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-vsk-headline {
  margin: 0 0 16px;
  max-width: 560px;
  color: #24110b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 14px 28px rgba(36, 17, 11, 0.08);
}

.kc-vsk-headline span {
  display: block;
}

.kc-vsk-lead {
  max-width: 520px;
  margin: 0 0 20px;
  color: #59483f;
  font-size: clamp(0.92rem, 1.3vw, 1.05rem);
  font-weight: 500;
  line-height: 1.55;
}

/* CTA buttons */
.kc-vsk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}

.kc-vsk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.kc-vsk-btn:hover {
  transform: translateY(-2px);
}

.kc-vsk-btn-primary {
  background: linear-gradient(180deg, #d9a33b 0%, #c98c24 100%);
  box-shadow: 0 14px 30px rgba(201, 140, 36, 0.28);
}

.kc-site .kc-vsk-btn-primary {
  color: #ffffff;
}

.kc-vsk-btn-primary:hover {
  box-shadow: 0 18px 38px rgba(201, 140, 36, 0.34);
}

.kc-vsk-btn-secondary {
  color: #24110b;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(36, 17, 11, 0.12);
}

.kc-vsk-btn-tertiary {
  color: #24110b;
  background: rgba(239, 225, 199, 0.72);
  border: 1px solid rgba(36, 17, 11, 0.08);
}

/* Benefit panel */
.kc-vsk-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(710px, 100%);
  margin-bottom: 14px;
  padding: 18px 12px;
  border: 1px solid rgba(77, 43, 27, 0.14);
  border-radius: 18px;
  background: #fffaf2;
  box-shadow: 0 20px 50px rgba(46, 24, 13, 0.08);
}

.kc-vsk-benefit {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 4px 18px;
}

.kc-vsk-benefit + .kc-vsk-benefit {
  border-left: 1px solid rgba(77, 43, 27, 0.14);
}

.kc-vsk-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #24110b;
  color: #d6a23a;
  flex-shrink: 0;
}

.kc-vsk-benefit-text strong {
  display: block;
  color: #24110b;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.kc-vsk-benefit-text small {
  display: block;
  color: #6e5b4f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

/* Brand showcase cards */
.kc-vsk-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(710px, 100%);
  margin-bottom: 16px;
}

.kc-vsk-brand-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 20px;
  border: 1px solid rgba(77, 43, 27, 0.16);
  border-radius: 14px;
  background: #fffaf2;
  box-shadow: 0 12px 34px rgba(46, 24, 13, 0.05);
}

.kc-vsk-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(214, 162, 58, 0.16);
  color: #b98226;
  flex-shrink: 0;
}

.kc-vsk-brand-text h3 {
  margin: 0 0 4px;
  color: #24110b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.kc-vsk-brand-text p {
  margin: 0 0 2px;
  color: #24110b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.kc-vsk-brand-text small {
  display: block;
  color: #6e5b4f;
  font-size: 13px;
  font-weight: 600;
}

/* Quick links bar */
.kc-vsk-quicklinks {
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  width: min(840px, 100%);
  border: 1px solid rgba(77, 43, 27, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.68);
}

.kc-vsk-quicklinks a {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 22px;
  border-right: 1px solid rgba(77, 43, 27, 0.14);
  color: #24110b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.kc-vsk-quicklinks a:last-child {
  border-right: 0;
}

.kc-vsk-quicklinks a:hover {
  background: rgba(214, 162, 58, 0.12);
}

.kc-vsk-ql-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #d6a23a;
  flex-shrink: 0;
}

/* Right product image */
.kc-vsk-hero-visual {
  display: none;
}

/* Mobile-only product image (hidden on desktop) */
.kc-vsk-hero-image-mobile {
  display: none;
}

/* ──────────────────────────────────────────────────────────────────── */
/* Tablet & smaller desktop                                              */
/* ──────────────────────────────────────────────────────────────────── */

@media (max-width: 1280px) {
  .kc-vsk-hero-inner {
    padding: 60px 48px 48px;
    gap: 24px;
    grid-template-columns: 50% 50%;
  }

  .kc-vsk-headline {
    font-size: clamp(54px, 6vw, 88px);
  }

  .kc-vsk-hero-visual img {
    width: min(720px, 58vw);
    right: -30px;
  }

  .kc-vsk-quicklinks a {
    padding: 0 16px;
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .kc-vsk-hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 28px 40px;
    gap: 24px;
  }

  .kc-vsk-hero-copy {
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }

  .kc-vsk-headline {
    max-width: 100%;
    font-size: clamp(48px, 8vw, 78px);
  }

  .kc-vsk-hero-visual {
    display: none;
  }

  .kc-vsk-hero-image-mobile {
    display: block;
    width: 100%;
    height: auto;
    max-height: 480px;
    margin: 8px 0 22px;
    object-fit: contain;
    object-position: center;
  }

  .kc-vsk-benefits,
  .kc-vsk-brands,
  .kc-vsk-quicklinks {
    width: 100%;
  }
}

/* ──────────────────────────────────────────────────────────────────── */
/* Mobile                                                                */
/* ──────────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .kc-vsk-hero-inner {
    padding: 34px 20px 24px;
    gap: 18px;
  }

  .kc-vsk-kicker {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .kc-vsk-headline {
    margin-bottom: 20px;
    font-size: clamp(44px, 13.5vw, 64px);
    line-height: 0.92;
  }

  .kc-vsk-lead {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .kc-vsk-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 22px;
  }

  .kc-vsk-btn {
    width: 100%;
    height: 56px;
    font-size: 17px;
  }

  .kc-vsk-hero-image-mobile {
    width: calc(100% + 16px);
    margin-left: -8px;
    margin-top: 4px;
    margin-bottom: 22px;
    max-height: 320px;
  }

  /* Benefit panel: stays 3 columns but compact, stacked content */
  .kc-vsk-benefits {
    grid-template-columns: repeat(3, 1fr);
    padding: 14px 4px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .kc-vsk-benefit {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 6px 8px;
    gap: 8px;
    min-height: 118px;
  }

  .kc-vsk-benefit + .kc-vsk-benefit {
    border-left: 1px solid rgba(77, 43, 27, 0.14);
  }

  .kc-vsk-benefit-icon {
    width: 40px;
    height: 40px;
  }

  .kc-vsk-benefit-text strong {
    font-size: 13px;
    text-align: center;
  }

  .kc-vsk-benefit-text small {
    font-size: 11px;
    text-align: center;
  }

  /* Brand cards: 2 cols on regular mobile */
  .kc-vsk-brands {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .kc-vsk-brand-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 13px;
  }

  .kc-vsk-brand-icon {
    width: 42px;
    height: 42px;
  }

  .kc-vsk-brand-text h3 {
    font-size: 15px;
  }

  .kc-vsk-brand-text p {
    font-size: 13px;
  }

  .kc-vsk-brand-text small {
    font-size: 12px;
  }

  /* Quick links: stacked list */
  .kc-vsk-quicklinks {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    background: rgba(255, 250, 242, 0.78);
  }

  .kc-vsk-quicklinks a {
    height: 48px;
    padding: 0 16px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(77, 43, 27, 0.12);
    font-size: 13px;
  }

  .kc-vsk-quicklinks a:last-child {
    border-bottom: 0;
  }

  .kc-vsk-quicklinks a::after {
    content: "›";
    margin-left: auto;
    color: #b98226;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }
}

@media (max-width: 390px) {
  .kc-vsk-brands {
    grid-template-columns: 1fr;
  }

  .kc-vsk-benefit-text strong {
    font-size: 12px;
  }

  .kc-vsk-benefit-text small {
    font-size: 10.5px;
  }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM BRANDS SECTION — kavovary-a-kava.html
   ══════════════════════════════════════════════════════════════ */

.kc-pb {
  position: relative;
  z-index: 2;
  margin-top: -52px;
  padding: 72px clamp(18px, 5vw, 72px) 92px;
  background: #f5ede0;
  border-radius: 52px 52px 0 0;
}

.kc-pb-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1380px;
  margin: 0 auto;
}

/* ── Part 1: Intro ─────────────────────────────────────────────── */

.kc-pb-intro {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: clamp(40px, 6vw, 84px);
  align-items: start;
}

.kc-pb-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.kc-pb-label-text {
  flex-shrink: 0;
  color: #c0891e;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kc-pb-label-line {
  display: block;
  width: 72px;
  height: 1.5px;
  background: #c0891e;
  border-radius: 2px;
  flex-shrink: 0;
}

.kc-pb-heading {
  margin: 0 0 26px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.5vw, 4.9rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.kc-pb-intro-text {
  max-width: 760px;
  margin: 0;
  color: #5f4d43;
  font-size: 18px;
  line-height: 1.65;
}

.kc-pb-intro-right {
  align-self: start;
}

.kc-pb-intro-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

/* ── Part 2: Brand cards ───────────────────────────────────────── */

.kc-pb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kc-pb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 32px 22px;
  border: 1px solid rgba(60, 35, 20, 0.08);
  border-radius: 18px;
  background: #fffbf5;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.kc-pb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(42, 24, 18, 0.1);
}

.kc-pb-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  margin-bottom: 22px;
}

.kc-pb-brand-logo {
  display: block;
  max-height: 130px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.kc-pb-card-divider {
  width: 48px;
  height: 1.5px;
  margin: 0 auto 22px;
  border-radius: 2px;
  background: #c0891e;
}

.kc-pb-card p {
  max-width: 360px;
  margin: 0;
  color: #5f4d43;
  font-size: 17px;
  line-height: 1.6;
}

/* ── Part 3: Dark CTA block ────────────────────────────────────── */

.kc-pb-cta {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 420px;
  border-radius: 24px;
  background: linear-gradient(130deg, #2b140f 0%, #3d1c10 50%, #4a2817 100%);
  overflow: hidden;
}

.kc-pb-cta-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
  overflow: hidden;
}

.kc-pb-cta-left::before {
  position: absolute;
  left: -60px;
  top: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(192, 137, 30, 0.12);
  content: "";
  transform: translateY(-50%);
  pointer-events: none;
}

.kc-pb-cta-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #f7f0e6;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.kc-pb-cta-divider {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 1.5px;
  margin-bottom: 22px;
  border-radius: 2px;
  background: #c0891e;
}

.kc-pb-cta-text {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 32px;
  color: rgba(247, 240, 230, 0.8);
  font-size: 17px;
  line-height: 1.65;
}

.kc-pb-btns {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.kc-pb-btn-primary,
.kc-pb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.kc-pb-btn-primary {
  color: #2a1812;
  background: #c0891e;
  border: none;
  box-shadow: 0 8px 24px rgba(192, 137, 30, 0.3);
}

.kc-pb-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(192, 137, 30, 0.4);
}

.kc-pb-btn-secondary {
  color: #c0891e;
  background: transparent;
  border: 1.5px solid #c0891e;
}

.kc-pb-btn-secondary:hover {
  transform: translateY(-2px);
}

.kc-pb-cta-right {
  display: flex;
  overflow: hidden;
  border-radius: 0 24px 24px 0;
}

.kc-pb-cta-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex: 1;
  min-height: 380px;
}

/* ── Responsive ────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .kc-pb-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kc-pb-intro-img {
    max-height: 340px;
  }

  .kc-pb-cta {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kc-pb-cta-right {
    height: 300px;
    position: relative;
  }
}

@media (max-width: 860px) {
  .kc-pb-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .kc-pb-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .kc-pb {
    padding: 58px clamp(16px, 5vw, 28px) 68px;
  }

  .kc-pb-cards {
    grid-template-columns: 1fr;
  }

  .kc-pb-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .kc-pb-card {
    padding: 32px 22px;
  }

  .kc-pb-btns {
    flex-direction: column;
    width: 100%;
  }

  .kc-pb-btn-primary,
  .kc-pb-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .kc-pb-cta-right {
    height: 240px;
  }
}

/* ══════════════════════════════════════════════════════════════
   REPASOVANÉ KÁVOVARY BLOCK
   ══════════════════════════════════════════════════════════════ */

.kc-repas {
  display: grid;
  grid-template-columns: 54% 46%;
  border-radius: 20px;
  background: #fffbf5;
  border: 1px solid rgba(60, 35, 20, 0.09);
  overflow: hidden;
  min-height: 560px;
}

/* ── Left column ─────────────────────────────────────────────── */

.kc-repas-left {
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4.5vw, 56px);
}

.kc-repas-heading {
  margin: 0 0 18px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.kc-repas-text {
  max-width: 600px;
  margin: 0 0 28px;
  color: #5f4d43;
  font-size: 17px;
  line-height: 1.65;
}

/* Feature cards row */
.kc-repas-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.kc-repas-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 14px;
  border: 1px solid rgba(60, 35, 20, 0.1);
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
}

.kc-repas-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.kc-repas-feature p {
  margin: 0;
  color: #3a2a22;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

/* CTA bar */
.kc-repas-cta-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(192, 137, 30, 0.1), rgba(192, 137, 30, 0.06));
  border: 1px solid rgba(192, 137, 30, 0.18);
  overflow: hidden;
}

.kc-repas-botanical {
  flex-shrink: 0;
  align-self: stretch;
  padding: 14px 6px 14px 16px;
  opacity: 0.9;
}

.kc-repas-cta-content {
  flex: 1;
  padding: 22px 24px 22px 8px;
}

.kc-repas-cta-text {
  margin: 0 0 16px;
  color: #3a2a22;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

.kc-repas-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.kc-repas-btn-primary,
.kc-repas-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-repas-btn-primary {
  color: #ffffff;
  background: #9a6e12;
  border: none;
  box-shadow: 0 6px 18px rgba(154, 110, 18, 0.3);
}

.kc-repas-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(154, 110, 18, 0.38);
}

.kc-repas-btn-secondary {
  color: #9a6e12;
  background: transparent;
  border: 1.5px solid #9a6e12;
}

.kc-repas-btn-secondary:hover {
  transform: translateY(-2px);
}

/* ── Right column: image + floating badge ───────────────────── */

.kc-repas-right {
  position: relative;
  overflow: hidden;
}

.kc-repas-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.kc-repas-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 178px;
  padding: 18px 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  text-align: center;
  box-shadow: 0 10px 28px rgba(42, 24, 18, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.kc-repas-badge-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.kc-repas-badge-title {
  margin: 0 0 10px;
  color: #2a1812;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.kc-repas-badge-divider {
  width: 36px;
  height: 1.5px;
  margin: 0 auto 10px;
  border-radius: 2px;
  background: #c0891e;
}

.kc-repas-badge-text {
  margin: 0;
  color: #5f4d43;
  font-size: 13px;
  line-height: 1.45;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .kc-repas {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kc-repas-right {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .kc-repas-features {
    gap: 10px;
  }

  .kc-repas-feature {
    padding: 18px 10px;
  }
}

@media (max-width: 640px) {
  .kc-repas-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kc-repas-cta-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .kc-repas-botanical {
    display: none;
  }

  .kc-repas-cta-content {
    padding: 20px;
  }

  .kc-repas-btns {
    flex-direction: column;
  }

  .kc-repas-btn-primary,
  .kc-repas-btn-secondary {
    width: 100%;
  }

  .kc-repas-right {
    height: 280px;
  }

  .kc-repas-badge {
    width: 150px;
    top: 14px;
    right: 14px;
    padding: 14px 14px 16px;
  }

  .kc-repas-badge-title {
    font-size: 13px;
  }

  .kc-repas-badge-text {
    font-size: 12px;
  }
}


/* ══════════════════════════════════════════════════════════════
   SERVIS KÁVOVARŮ — kavovary-a-kava.html
══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ────────────────────────────────────────── */

.kc-svp {
  padding: 48px clamp(20px, 5vw, 72px) 56px;
  background: #f5ede0;
}

.kc-svp-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1360px;
  margin: 0 auto;
}

/* ── Top grid: left intro + right timeline ─────────────────── */

.kc-svp-top {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
}

/* ── LEFT: label ────────────────────────────────────────────── */

.kc-svp-left {
  display: flex;
  flex-direction: column;
}

.kc-svp-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.kc-svp-label-text {
  color: #c0891e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.kc-svp-label-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: #c0891e;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── LEFT: heading ──────────────────────────────────────────── */

.kc-svp-heading {
  margin: 0 0 12px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

/* ── LEFT: paragraph ────────────────────────────────────────── */

.kc-svp-desc {
  margin: 0 0 18px;
  color: #5c4a40;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ── LEFT: pill badges ──────────────────────────────────────── */

.kc-svp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.kc-svp-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  background: #fff8f0;
  border: 1px solid rgba(60, 35, 20, 0.13);
  border-radius: 100px;
  color: #2a1812;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(42, 24, 18, 0.06);
}

.kc-svp-badge svg {
  color: #c0891e;
  flex-shrink: 0;
}

/* ── LEFT: photo ────────────────────────────────────────────── */

.kc-svp-photo {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(42, 24, 18, 0.16);
  border: 1px solid rgba(42, 24, 18, 0.07);
  min-height: 160px;
}

.kc-svp-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── RIGHT: vertical timeline ───────────────────────────────── */

.kc-svp-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.kc-svp-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* Vertical connecting line — spans between first and last circle center */
.kc-svp-steps::before {
  content: "";
  position: absolute;
  /* circle center = card padding-left (20px) + circle radius (28px) = 48px */
  left: 48px;
  /* top: center of first circle = card padding (20px) + radius (28px) = 48px */
  top: 48px;
  /* bottom: center of last circle = same from bottom */
  bottom: 48px;
  width: 1.5px;
  background: linear-gradient(
    to bottom,
    rgba(192, 137, 30, 0.7) 0%,
    rgba(192, 137, 30, 0.7) 75%,
    rgba(192, 137, 30, 0.08) 100%
  );
  border-radius: 1px;
  pointer-events: none;
}

.kc-svp-step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 20px;
  background: #fffcf6;
  border: 1px solid rgba(60, 35, 20, 0.09);
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(42, 24, 18, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.kc-svp-step-card:hover {
  box-shadow: 0 8px 24px rgba(42, 24, 18, 0.12);
  transform: translateX(4px);
}

.kc-svp-step-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(192, 137, 30, 0.6);
  background: rgba(192, 137, 30, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0891e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.kc-svp-step-body {
  flex: 1;
  min-width: 0;
}

.kc-svp-step-body h3 {
  margin: 0 0 4px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.kc-svp-step-body p {
  margin: 0;
  color: #52403a;
  font-size: 14.5px;
  line-height: 1.5;
}

/* ── Service features: 4 compact cards ─────────────────────── */

.kc-svp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kc-svp-fcard {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  background: #fffcf6;
  border: 1px solid rgba(60, 35, 20, 0.09);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(42, 24, 18, 0.05);
  transition: box-shadow 0.2s ease;
}

.kc-svp-fcard:hover {
  box-shadow: 0 6px 20px rgba(42, 24, 18, 0.1);
}

.kc-svp-fcard-icon {
  flex-shrink: 0;
  color: #c0891e;
  margin-top: 1px;
}

.kc-svp-fcard-body h4 {
  margin: 0 0 3px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.kc-svp-fcard-body p {
  margin: 0;
  color: #5c4a40;
  font-size: 12.5px;
  line-height: 1.5;
}

/* ── CTA panel ─────────────────────────────────────────────── */

.kc-svp-cta {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: #fffcf6;
  border: 1px solid rgba(60, 35, 20, 0.1);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(42, 24, 18, 0.08);
}

.kc-svp-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(192, 137, 30, 0.09);
  border: 1px solid rgba(192, 137, 30, 0.24);
  color: #c0891e;
  flex-shrink: 0;
  align-self: center;
}

.kc-svp-cta-body {
  min-width: 0;
}

.kc-svp-cta-heading {
  margin: 0 0 4px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.kc-svp-cta-text {
  margin: 0;
  color: #5c4a40;
  font-size: 13px;
  line-height: 1.5;
}

.kc-svp-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.kc-svp-cta-btns {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Buttons */

.kc-svp-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
  border: none;
}

.kc-svp-btn:hover {
  transform: translateY(-2px);
}

.kc-svp-btn.kc-svp-btn-primary {
  background: #2a1812;
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 24, 18, 0.3);
}

.kc-svp-btn-primary:hover {
  box-shadow: 0 8px 22px rgba(42, 24, 18, 0.38);
}

.kc-svp-btn-secondary {
  background: transparent;
  border: 1.5px solid #c0891e;
  box-shadow: none;
}

.kc-site .kc-svp-btn-secondary {
  color: #c0891e;
}

.kc-svp-btn-secondary:hover {
  background: rgba(192, 137, 30, 0.05);
}

/* Contact line */

.kc-svp-cta-contact {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.kc-svp-cta-contact span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2a1812;
  font-size: 13px;
  font-weight: 600;
}

.kc-svp-cta-contact svg {
  color: #c0891e;
  flex-shrink: 0;
}

/* ── Responsive: tablet 1024px ──────────────────────────────── */

@media (max-width: 1080px) {
  .kc-svp-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kc-svp-photo img {
    height: 340px;
  }

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

  .kc-svp-cta {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }

  .kc-svp-cta-actions {
    grid-column: 1 / -1;
    align-items: flex-start;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .kc-svp-cta-btns {
    flex-wrap: wrap;
  }
}

/* ── Responsive: mobile 640px ───────────────────────────────── */

@media (max-width: 640px) {
  .kc-svp {
    padding: 56px 18px 64px;
  }

  .kc-svp-inner {
    gap: 36px;
  }

  .kc-svp-heading {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .kc-svp-badges {
    gap: 7px;
  }

  .kc-svp-photo img {
    height: 220px;
  }

  .kc-svp-right::before {
    display: none;
  }

  .kc-svp-features {
    grid-template-columns: 1fr;
  }

  .kc-svp-cta {
    grid-template-columns: 1fr;
    padding: 20px 18px;
  }

  .kc-svp-cta-icon {
    display: none;
  }

  .kc-svp-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .kc-svp-cta-btns {
    flex-direction: column;
  }

  .kc-svp-btn {
    justify-content: center;
  }

  .kc-svp-cta-contact {
    flex-direction: column;
    gap: 6px;
  }

  .kc-svp-step-card {
    padding: 16px;
    gap: 14px;
  }

  .kc-svp-step-num {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* ══════════════════════════════════════════════════════════════
   FILTRY A CHEMIE — kavovary-a-kava.html
══════════════════════════════════════════════════════════════ */

.kc-flt {
  padding: 96px clamp(20px, 5vw, 64px) 100px;
  background: #f6efe4;
}

.kc-flt-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── Header ─────────────────────────────────────────────────── */

.kc-flt-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kc-flt-label {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}

.kc-flt-label-line {
  display: block;
  width: 80px;
  height: 1px;
  background: #bd8732;
  border-radius: 1px;
  flex-shrink: 0;
}

.kc-flt-label-text {
  color: #bd8732;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.kc-flt-heading {
  margin: 0 0 20px;
  color: #2a1812;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 1100px;
}

.kc-flt-desc {
  margin: 0;
  color: #6f6258;
  font-size: 18px;
  line-height: 1.65;
  max-width: 900px;
}

/* ── Main grid ──────────────────────────────────────────────── */

.kc-flt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* ── Photo ──────────────────────────────────────────────────── */

.kc-flt-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(80, 50, 30, 0.08);
  box-shadow: 0 18px 45px rgba(40, 25, 15, 0.09);
}

.kc-flt-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

/* ── Category cards ─────────────────────────────────────────── */

.kc-flt-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kc-flt-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  background: #fffaf2;
  border: 1px solid rgba(189, 135, 50, 0.22);
  border-radius: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-flt-cat:hover {
  border-color: rgba(189, 135, 50, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 25, 15, 0.09);
}

.kc-flt-cat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(189, 135, 50, 0.08);
  border: 1px solid rgba(189, 135, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bd8732;
}

.kc-flt-cat-name {
  flex: 1;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.kc-flt-cat-arrow {
  flex-shrink: 0;
  color: #bd8732;
  opacity: 0.65;
}

/* ── CTA panel ──────────────────────────────────────────────── */

.kc-flt-cta {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 36px 44px;
  background: #fff8ed;
  border: 1px solid rgba(189, 135, 50, 0.35);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.kc-flt-cta-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #c08a35;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(192, 138, 53, 0.32);
}

.kc-flt-cta-body {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.kc-flt-cta-heading {
  margin: 0 0 10px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.kc-flt-cta-text {
  margin: 0;
  color: #4f4038;
  font-size: 17px;
  line-height: 1.6;
}

.kc-flt-cta-deco {
  position: absolute;
  right: -10px;
  bottom: -10px;
  pointer-events: none;
  opacity: 1;
}

/* ── Responsive: 1040px ─────────────────────────────────────── */

@media (max-width: 1040px) {
  .kc-flt-grid {
    grid-template-columns: 1fr;
  }

  .kc-flt-photo img {
    min-height: 280px;
    height: 280px;
  }
}

/* ── Responsive: 768px ──────────────────────────────────────── */

@media (max-width: 768px) {
  .kc-flt {
    padding: 60px clamp(18px, 5vw, 32px) 68px;
  }

  .kc-flt-inner {
    gap: 36px;
  }

  .kc-flt-heading {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .kc-flt-desc {
    font-size: 16px;
  }

  .kc-flt-cats {
    grid-template-columns: 1fr;
  }

  .kc-flt-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }

  .kc-flt-cta-deco {
    display: none;
  }
}

/* ── Responsive: 480px ──────────────────────────────────────── */

@media (max-width: 480px) {
  .kc-flt-cat-name {
    font-size: 1rem;
  }

  .kc-flt-cat-icon {
    width: 52px;
    height: 52px;
  }

  .kc-flt-cat-icon svg {
    width: 26px;
    height: 26px;
  }

  .kc-flt-cta-icon {
    width: 68px;
    height: 68px;
  }
}

/* PNG ikony v kategoriích */
.kc-flt-cat-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* PNG ikona v CTA */
.kc-flt-cta-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════
   VENDING HERO — vendingove-automaty.html
══════════════════════════════════════════════════════════════ */

/* Page background with subtle grid */
.kc-vending-page {
  background:
    linear-gradient(rgba(60, 35, 25, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 35, 25, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #f6efe4, #f2e8d8);
  background-size: 48px 48px, 48px 48px, auto;
}

/* ── Hero wrapper ────────────────────────────────────────────── */

.kc-vnd-hero {
  --kc-vnd-nav-overlap: 75px;
  position: relative;
  min-height: clamp(720px, 100svh, 820px);
  margin-top: calc(var(--kc-vnd-nav-overlap) * -1);
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(10, 12, 13, 0.16), rgba(10, 12, 13, 0.48)),
    linear-gradient(90deg, rgba(10, 12, 13, 0.92) 0%, rgba(10, 12, 13, 0.78) 35%, rgba(10, 12, 13, 0.35) 62%, rgba(10, 12, 13, 0.1) 100%),
    url("assets/vending-hero-background.png") center right / cover no-repeat;
}

.kc-vnd-hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 12, 13, 0), rgba(10, 12, 13, 0.54));
}

.kc-vnd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1420px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(300px, 1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  min-height: inherit;
  padding: calc(clamp(78px, 6vw, 90px) + var(--kc-vnd-nav-overlap)) clamp(64px, 6vw, 96px) clamp(78px, 6vw, 90px);
}

/* ── LEFT ────────────────────────────────────────────────────── */

.kc-vnd-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 620px;
}

/* Label */

.kc-vnd-label-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.kc-vnd-label-text {
  color: #c69236;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kc-vnd-label-line {
  display: block;
  width: 150px;
  height: 2px;
  background: #c69236;
  border-radius: 2px;
}

/* Heading */

.kc-vnd-heading {
  margin: 0;
  max-width: 620px;
  color: #f7f2e8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.5rem, 5.4vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: none;
  text-transform: none;
}

/* Lead */

.kc-vnd-lead {
  margin: 28px 0 0;
  color: rgba(247, 242, 232, 0.78);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.65;
  max-width: 560px;
}

/* Benefit pills */

.kc-vnd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.kc-vnd-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #f7f2e8;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.kc-vnd-pill svg {
  color: #c69236;
  flex-shrink: 0;
}

/* CTA buttons */

.kc-vnd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.kc-vnd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 18px 30px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-vnd-cta-primary {
  color: #111315;
  background: linear-gradient(135deg, #d7a247, #c69236);
  box-shadow: 0 14px 32px rgba(198, 146, 54, 0.28);
}

.kc-vnd-cta-secondary {
  color: #f7f2e8;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(17, 19, 21, 0.34);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.kc-site.kc-vending-page .kc-vnd-hero .kc-vnd-cta-primary {
  color: #111315;
}

.kc-site.kc-vending-page .kc-vnd-hero .kc-vnd-cta-secondary {
  color: #f7f2e8;
}

.kc-vnd-cta:hover {
  transform: translateY(-2px);
}

.kc-vnd-cta-primary:hover {
  background: linear-gradient(135deg, #e2b65f, #cf9d44);
  box-shadow: 0 18px 36px rgba(198, 146, 54, 0.34);
}

.kc-vnd-cta-secondary:hover {
  border-color: rgba(198, 146, 54, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

/* ── RIGHT: photo + floating cards ──────────────────────────── */

.kc-vnd-right {
  position: relative;
  display: block;
  min-height: 520px;
  pointer-events: none;
}

/* Floating cards */

.kc-vnd-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  width: 230px;
  color: #111315;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.kc-vnd-float-1 {
  right: clamp(120px, 12vw, 210px);
  top: 40%;
}

.kc-vnd-float-2 {
  right: clamp(32px, 5vw, 84px);
  bottom: 18%;
}

.kc-vnd-float-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kc-vnd-float-icon-dark {
  background: #111315;
  color: #c69236;
}

.kc-vnd-float-icon-gold {
  background: #c69236;
  color: #fff;
}

.kc-vnd-float-text strong {
  display: block;
  color: #111315;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3px;
}

.kc-vnd-float-text p {
  margin: 0;
  color: #4e5358;
  font-size: 13px;
  line-height: 1.4;
}

/* ── Responsive: tablet ─────────────────────────────────────── */

@media (max-width: 1040px) {
  .kc-vnd-hero {
    --kc-vnd-nav-overlap: 75px;
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(10, 12, 13, 0.2), rgba(10, 12, 13, 0.58)),
      linear-gradient(90deg, rgba(10, 12, 13, 0.94) 0%, rgba(10, 12, 13, 0.82) 48%, rgba(10, 12, 13, 0.28) 100%),
      url("assets/vending-hero-background.png") center right / cover no-repeat;
  }

  .kc-vnd-hero-inner {
    grid-template-columns: 1fr;
    padding: calc(82px + var(--kc-vnd-nav-overlap)) clamp(32px, 6vw, 72px) 82px;
    gap: 0;
  }

  .kc-vnd-left {
    max-width: 600px;
  }

  .kc-vnd-heading {
    font-size: clamp(3.625rem, 8vw, 4.25rem);
  }

  .kc-vnd-right {
    display: none;
  }
}

/* ── Responsive: mobile ─────────────────────────────────────── */

@media (max-width: 640px) {
  .kc-vnd-hero {
    --kc-vnd-nav-overlap: 71px;
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(10, 12, 13, 0.22), rgba(10, 12, 13, 0.62)),
      linear-gradient(90deg, rgba(10, 12, 13, 0.94) 0%, rgba(10, 12, 13, 0.82) 58%, rgba(10, 12, 13, 0.2) 100%),
      url("assets/vending-hero-background.png") 68% center / cover no-repeat;
  }

  .kc-vnd-hero-inner {
    padding: calc(58px + var(--kc-vnd-nav-overlap)) 20px 64px;
  }

  .kc-vnd-heading {
    font-size: clamp(2.625rem, 12vw, 3.125rem);
  }

  .kc-vnd-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.62;
  }

  .kc-vnd-pills {
    align-items: flex-start;
    margin-top: 28px;
  }

  .kc-vnd-pill {
    gap: 7px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .kc-vnd-actions {
    width: 100%;
    margin-top: 34px;
  }

  .kc-vnd-cta {
    width: 100%;
    padding: 18px 24px;
    font-size: 16px;
  }
}

/* ══════════════════════════════════════════════════════════════
   VENDING BIANCHI SECTIONS — vendingove-automaty.html
══════════════════════════════════════════════════════════════ */

.kc-vb-wrap {
  padding: 0 clamp(20px, 4.5vw, 64px) 96px;
}

.kc-vb-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Hlavní panel ────────────────────────────────────────────── */

.kc-vb-panel {
  display: block;
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 28px;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 4vw, 52px);
  box-shadow: 0 4px 24px rgba(36, 20, 15, 0.06);
}

.kc-vb-panel-left {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.kc-vb-panel-left .kc-vb-label {
  justify-content: center;
}

.kc-vb-panel-left .kc-vb-benefits {
  justify-content: center;
}

.kc-vb-panel-left .kc-vb-cta {
  display: inline-flex;
  margin: 0 auto;
}

/* Label */

.kc-vb-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.kc-vb-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c69236;
  flex-shrink: 0;
}

.kc-vb-label-text {
  color: #c69236;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Heading */

.kc-vb-heading {
  margin: 0 0 18px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Text */

.kc-vb-text {
  margin: 0 0 28px;
  color: #6b5a50;
  font-size: 16px;
  line-height: 1.7;
}

/* Benefits */

.kc-vb-benefits {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 32px;
  row-gap: 12px;
}

.kc-vb-benefit {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  color: #24140f;
  font-size: 14px;
  font-weight: 600;
}

.kc-vb-benefit:first-child {
  padding-left: 0;
}

.kc-vb-benefit svg {
  color: #c69236;
  flex-shrink: 0;
}

.kc-vb-benefit-sep {
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(60, 35, 25, 0.18);
  flex-shrink: 0;
}

/* CTA */

.kc-vb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  background: #24140f;
  border-radius: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.18s ease;
  box-shadow: 0 6px 18px rgba(36, 20, 15, 0.26);
}

.kc-site .kc-vb-cta {
  color: #fff;
}

.kc-vb-cta:hover {
  background: #3a2418;
  transform: translateY(-2px);
}

/* Photo */

.kc-vb-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(36, 20, 15, 0.10);
}

/* ── Tři servisní karty ──────────────────────────────────────── */

.kc-vb-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.kc-vb-scard {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 26px;
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(36, 20, 15, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.kc-vb-scard:hover {
  box-shadow: 0 8px 24px rgba(36, 20, 15, 0.10);
  transform: translateY(-2px);
}

.kc-vb-scard-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
}

.kc-vb-scard-body h3 {
  margin: 0 0 6px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.kc-vb-scard-body p {
  margin: 0;
  color: #6b5a50;
  font-size: 14.5px;
  line-height: 1.55;
}

/* ── Kde se vending využívá ──────────────────────────────────── */

.kc-vb-usage {
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 28px;
  padding: clamp(32px, 3.5vw, 52px);
  box-shadow: 0 3px 14px rgba(36, 20, 15, 0.05);
}

.kc-vb-usage-heading {
  margin: 0 0 32px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}

.kc-vb-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kc-vb-ucard {
  padding: 22px 20px;
  background: #f6efe4;
  border: 1px solid rgba(60, 35, 25, 0.08);
  border-radius: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.kc-vb-ucard:hover {
  border-color: rgba(198, 146, 54, 0.35);
  transform: translateY(-2px);
}

.kc-vb-ucard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
  margin-bottom: 14px;
}

.kc-vb-ucard h4 {
  margin: 0 0 7px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.kc-vb-ucard p {
  margin: 0;
  color: #6b5a50;
  font-size: 13.5px;
  line-height: 1.55;
}

/* ── Responsive: 1024px ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .kc-vb-panel {
    grid-template-columns: 1fr;
  }

  .kc-vb-photo {
    aspect-ratio: 16 / 7;
  }

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

/* ── Responsive: 640px ──────────────────────────────────────── */

@media (max-width: 640px) {
  .kc-vb-wrap {
    padding-bottom: 60px;
  }

  .kc-vb-services {
    grid-template-columns: 1fr;
  }

  .kc-vb-usage-grid {
    grid-template-columns: 1fr;
  }

  .kc-vb-benefits {
    flex-direction: column;
    align-items: flex-start;
  }

  .kc-vb-benefit-sep {
    display: none;
  }

  .kc-vb-benefit {
    padding-left: 0;
  }
}

/* ══════════════════════════════════════════════════════════════
   VENDING POBOČKA SHOWROOM — kc-vsp
══════════════════════════════════════════════════════════════ */

.kc-vsp {
  padding: 96px clamp(20px, 4.5vw, 64px) 104px;
  background: #f6efe4;
}

.kc-vsp-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}

/* ── LEFT ────────────────────────────────────────────────────── */

.kc-vsp-left {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 120px;
}

.kc-vsp-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.kc-vsp-label-text {
  color: #24140f;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.kc-vsp-label-line {
  display: block;
  width: 64px;
  height: 2px;
  background: #c69236;
  border-radius: 2px;
}

.kc-vsp-heading {
  margin: 0 0 24px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.kc-vsp-desc {
  margin: 0 0 36px;
  color: #6b5a50;
  font-size: 17.5px;
  line-height: 1.68;
  max-width: 520px;
}

/* Benefits */

.kc-vsp-benefits {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 42px;
}

.kc-vsp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.kc-vsp-benefit-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #24140f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
}

.kc-vsp-benefit-text strong {
  display: block;
  color: #24140f;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.kc-vsp-benefit-text p {
  margin: 0;
  color: #6b5a50;
  font-size: 14.5px;
  line-height: 1.55;
}

/* CTA */

.kc-vsp-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 19px 28px;
  background: #24140f;
  border-radius: 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(36, 20, 15, 0.26);
  transition: background 0.2s ease, transform 0.18s ease;
  align-self: flex-start;
}

.kc-site .kc-vsp-cta {
  color: #c69236;
}

.kc-vsp-cta:hover {
  background: #3a2418;
  transform: translateY(-2px);
}

/* ── RIGHT ───────────────────────────────────────────────────── */

.kc-vsp-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Photo */

.kc-vsp-photo-wrap {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(36, 20, 15, 0.12);
}

.kc-vsp-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

/* Info card */

.kc-vsp-infocard {
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 24px;
  padding: 28px 30px;
}

.kc-vsp-infocard-label {
  margin: 0 0 18px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

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

.kc-vsp-infoitem {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #24140f;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

.kc-vsp-infoitem-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(198, 146, 54, 0.1);
  border: 1px solid rgba(198, 146, 54, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
}

/* Contact panel */

.kc-vsp-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #24140f;
  border-radius: 22px;
  padding: 28px 30px;
}

.kc-vsp-contact-col {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.kc-vsp-contact-col:first-child {
  padding-left: 0;
}

.kc-vsp-contact-col:last-child {
  border-right: none;
}

.kc-vsp-contact-icon {
  color: #c69236;
  margin-bottom: 10px;
}

.kc-vsp-contact-title {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-vsp-contact-val {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.55;
}

.kc-vsp-contact-phone {
  display: block;
  color: #c69236;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* ── Responsive: 1080px ─────────────────────────────────────── */

@media (max-width: 1080px) {
  .kc-vsp-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .kc-vsp-left {
    position: static;
  }

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

/* ── Responsive: 640px ──────────────────────────────────────── */

@media (max-width: 640px) {
  .kc-vsp {
    padding: 60px 18px 68px;
  }

  .kc-vsp-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .kc-vsp-photo {
    aspect-ratio: 4 / 3;
  }

  .kc-vsp-infocard-items {
    grid-template-columns: 1fr;
  }

  .kc-vsp-contact {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 22px;
  }

  .kc-vsp-contact-col {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
  }

  .kc-vsp-contact-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Zvýrazněný benefit — servis */
.kc-vsp-benefit-icon-gold {
  background: #c69236;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   LOKALITY — vendingove-automaty.html
══════════════════════════════════════════════════════════════ */

.kc-loc {
  padding: 92px clamp(20px, 4.5vw, 64px) 100px;
  background: #f6efe4;
}

.kc-loc-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* ── Intro ───────────────────────────────────────────────────── */

.kc-loc-intro {
  max-width: 760px;
}

.kc-loc-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.kc-loc-label-text {
  color: #24140f;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.kc-loc-label-line {
  display: block;
  width: 52px;
  height: 2px;
  background: #c69236;
  border-radius: 2px;
}

.kc-loc-heading {
  margin: 0 0 20px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.kc-loc-desc {
  margin: 0;
  color: #6b5a50;
  font-size: 18px;
  line-height: 1.65;
}

/* ── Cards grid ──────────────────────────────────────────────── */

.kc-loc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.kc-loc-card {
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(36, 20, 15, 0.07);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.kc-loc-card:hover {
  box-shadow: 0 12px 36px rgba(36, 20, 15, 0.12);
  transform: translateY(-3px);
}

/* Photo */

.kc-loc-photo-wrap {
  position: relative;
}

.kc-loc-photo {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.kc-loc-card-main .kc-loc-photo {
  height: 320px;
}

/* Icon badge on photo */

.kc-loc-card-icon {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #24140f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
  box-shadow: 0 4px 12px rgba(36, 20, 15, 0.22);
  border: 2px solid #fffaf2;
}

/* Card body */

.kc-loc-card-body {
  padding: 36px 24px 24px;
}

.kc-loc-card-body h3 {
  margin: 0 0 10px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.kc-loc-card-body p {
  margin: 0 0 18px;
  color: #6b5a50;
  font-size: 14.5px;
  line-height: 1.6;
}

/* Badge */

.kc-loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.28);
  border-radius: 100px;
  color: #8a6020;
  font-size: 13px;
  font-weight: 600;
}

.kc-loc-badge svg {
  color: #c69236;
}

/* ── Benefit panel ───────────────────────────────────────────── */

.kc-loc-benefits {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 24px;
  padding: 32px 36px;
  gap: 0;
  box-shadow: 0 3px 14px rgba(36, 20, 15, 0.05);
}

.kc-loc-bitem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 28px;
}

.kc-loc-bitem:first-child {
  padding-left: 0;
}

.kc-loc-bitem:last-child {
  padding-right: 0;
}

.kc-loc-bicon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
}

.kc-loc-bitem strong {
  display: block;
  color: #24140f;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.kc-loc-bitem p {
  margin: 0;
  color: #6b5a50;
  font-size: 14px;
  line-height: 1.55;
}

.kc-loc-bsep {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(60, 35, 25, 0.12);
  flex-shrink: 0;
}

/* ── Responsive: 1024px ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .kc-loc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kc-loc-card-main {
    grid-column: span 2;
  }

  .kc-loc-card-main .kc-loc-photo {
    height: 280px;
  }

  .kc-loc-benefits {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    padding: 28px;
  }

  .kc-loc-bsep {
    display: none;
  }

  .kc-loc-bitem {
    padding: 0;
  }
}

/* ── Responsive: 640px ──────────────────────────────────────── */

@media (max-width: 640px) {
  .kc-loc {
    padding: 60px 18px 68px;
  }

  .kc-loc-inner {
    gap: 32px;
  }

  .kc-loc-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .kc-loc-grid {
    grid-template-columns: 1fr;
  }

  .kc-loc-card-main {
    grid-column: span 1;
  }

  .kc-loc-card-main .kc-loc-photo,
  .kc-loc-photo {
    height: 220px;
  }

  .kc-loc-benefits {
    grid-template-columns: 1fr;
  }
}

/* Tmavý vizuální režim pouze pro stránku Vendingové automaty */
.kc-vending-page {
  background:
    linear-gradient(rgba(17, 20, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 24, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #f7f8f9, #e8ebee);
  background-size: 48px 48px, 48px 48px, auto;
}

.kc-vending-page .kc-vsp-label-text,
.kc-vending-page .kc-loc-label-text {
  color: var(--kc-vending-black);
}

.kc-vending-page .kc-vsp-label-line,
.kc-vending-page .kc-loc-label-line,
.kc-vending-page .kc-vb-label-dot {
  background: var(--kc-vending-accent);
}

.kc-vending-page .kc-vsp-heading,
.kc-vending-page .kc-vb-heading,
.kc-vending-page .kc-vb-usage-heading,
.kc-vending-page .kc-loc-heading,
.kc-vending-page .kc-vsp-benefit-text strong,
.kc-vending-page .kc-vsp-infocard-label,
.kc-vending-page .kc-vsp-infoitem,
.kc-vending-page .kc-vb-benefit,
.kc-vending-page .kc-vb-scard-body h3,
.kc-vending-page .kc-vb-ucard h4,
.kc-vending-page .kc-loc-card-body h3,
.kc-vending-page .kc-loc-bitem strong {
  color: var(--kc-vending-black);
}

.kc-vending-page .kc-vnd-heading {
  text-shadow: none;
}

.kc-vending-page .kc-vsp-desc,
.kc-vending-page .kc-vsp-benefit-text p,
.kc-vending-page .kc-vb-text,
.kc-vending-page .kc-vb-scard-body p,
.kc-vending-page .kc-vb-ucard p,
.kc-vending-page .kc-loc-desc,
.kc-vending-page .kc-loc-card-body p,
.kc-vending-page .kc-loc-bitem p {
  color: var(--kc-vending-muted);
}

.kc-vending-page .kc-vb-panel,
.kc-vending-page .kc-vb-scard,
.kc-vending-page .kc-vb-usage,
.kc-vending-page .kc-vsp-infocard,
.kc-vending-page .kc-loc-card,
.kc-vending-page .kc-loc-benefits {
  border-color: var(--kc-line);
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(17, 20, 24, 0.07);
}

.kc-vending-page .kc-vsp,
.kc-vending-page .kc-loc,
.kc-vending-page .kc-vb-wrap {
  background: #eceff1;
}

.kc-vending-page .kc-vb-ucard {
  border-color: var(--kc-line);
  background: #f7f8f9;
}

.kc-vending-page .kc-vb-benefit svg,
.kc-vending-page .kc-loc-badge svg {
  color: var(--kc-vending-accent);
}

.kc-vending-page .kc-vsp-contact-icon,
.kc-vending-page .kc-vsp-contact-phone {
  color: #cbd5e1;
}

.kc-vending-page .kc-vsp-benefit-icon,
.kc-vending-page .kc-vsp-benefit-icon-gold,
.kc-vending-page .kc-loc-card-icon {
  color: #f8fafc;
  background: var(--kc-vending-black);
}

.kc-vending-page .kc-vb-scard-icon,
.kc-vending-page .kc-vb-ucard-icon,
.kc-vending-page .kc-vsp-infoitem-icon,
.kc-vending-page .kc-loc-bicon {
  color: var(--kc-vending-black);
  border-color: rgba(17, 20, 24, 0.14);
  background: rgba(17, 20, 24, 0.06);
}

.kc-vending-page .kc-vb-cta,
.kc-vending-page .kc-vsp-cta,
.kc-vending-page .kc-vsp-contact {
  background: var(--kc-vending-black);
  box-shadow: 0 10px 26px rgba(17, 20, 24, 0.22);
}

.kc-vending-page .kc-vb-cta:hover,
.kc-vending-page .kc-vsp-cta:hover {
  background: var(--kc-vending-deep);
}

.kc-site.kc-vending-page .kc-vb-cta,
.kc-site.kc-vending-page .kc-vsp-cta {
  color: #ffffff;
}

.kc-vending-page .kc-loc-badge,
.kc-vending-page .kc-vb-label-text {
  color: var(--kc-vending-graphite);
  border-color: rgba(17, 20, 24, 0.16);
  background: rgba(17, 20, 24, 0.06);
}

.kc-vending-page .kc-vsp-photo-wrap,
.kc-vending-page .kc-loc-photo-wrap {
  box-shadow: 0 18px 48px rgba(17, 20, 24, 0.13);
}

.kc-vending-page .kc-vsp-contact-col,
.kc-vending-page .kc-loc-bsep {
  border-color: rgba(255, 255, 255, 0.12);
}

.kc-vending-page .kc-vsp-contact-title {
  color: rgba(255, 255, 255, 0.56);
}

.kc-vending-page .kc-vsp-contact-val {
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════
   KÁVA — kava.html
══════════════════════════════════════════════════════════════ */

/* ── Sdílené prvky ───────────────────────────────────────────── */

.kc-kava-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.kc-kava-label-text {
  color: #24140f;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.kc-kava-label-line {
  display: block;
  width: 52px;
  height: 2px;
  background: #c69236;
  border-radius: 2px;
}

/* ── Hero ────────────────────────────────────────────────────── */

.kc-kava-hero {
  padding: 0 clamp(20px, 4.5vw, 64px);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.kc-kava-hero-inner {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 50fr 50fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: 100px 0;
}

.kc-kava-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kc-kava-heading {
  margin: 0 0 22px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.kc-kava-lead {
  margin: 0 0 28px;
  color: #6b5a50;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  max-width: 520px;
}

.kc-kava-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 36px;
}

.kc-kava-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(80, 50, 30, 0.09);
  border-radius: 12px;
  color: #24140f;
  font-size: 13.5px;
  font-weight: 600;
}

.kc-kava-pill svg {
  color: #c69236;
}

.kc-kava-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 18px 28px;
  background: #24140f;
  color: #c69236;
  border-radius: 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(36, 20, 15, 0.26);
  transition: background 0.2s ease, transform 0.18s ease;
}

.kc-kava-cta:hover {
  background: #3a2418;
  transform: translateY(-2px);
}

.kc-kava-hero-photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(36, 20, 15, 0.15);
}

.kc-kava-hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* ── Značky kávy ─────────────────────────────────────────────── */

.kc-kava-brands-section {
  padding: 88px clamp(20px, 4.5vw, 64px) 96px;
  background: #f6efe4;
}

.kc-kava-brands-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.kc-kava-brands-header {
  max-width: 680px;
}

.kc-kava-section-heading {
  margin: 0 0 16px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.kc-kava-section-desc {
  margin: 0;
  color: #6b5a50;
  font-size: 17px;
  line-height: 1.65;
}

.kc-kava-brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kc-kava-brand-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(36, 20, 15, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.kc-kava-brand-card:hover {
  box-shadow: 0 10px 28px rgba(36, 20, 15, 0.11);
  transform: translateY(-2px);
}

.kc-kava-brand-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
}

.kc-kava-brand-card h3 {
  margin: 0;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.kc-kava-brand-card p {
  margin: 0;
  flex: 1;
  color: #6b5a50;
  font-size: 15px;
  line-height: 1.65;
}

.kc-kava-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.25);
  border-radius: 100px;
  color: #8a6020;
  font-size: 12.5px;
  font-weight: 600;
  align-self: flex-start;
}

/* ── Poradenství ─────────────────────────────────────────────── */

.kc-kava-advice {
  padding: 88px clamp(20px, 4.5vw, 64px) 96px;
}

.kc-kava-advice-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.kc-kava-advice-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 36px;
}

.kc-kava-advice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #24140f;
  font-size: 15.5px;
  font-weight: 500;
}

.kc-kava-advice-item svg {
  color: #c69236;
  flex-shrink: 0;
}

.kc-kava-advice-card {
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 6px 22px rgba(36, 20, 15, 0.07);
}

.kc-kava-advice-card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(198, 146, 54, 0.09);
  border: 1px solid rgba(198, 146, 54, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
  margin-bottom: 20px;
}

.kc-kava-advice-card h3 {
  margin: 0 0 10px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.kc-kava-advice-card > p {
  margin: 0 0 24px;
  color: #6b5a50;
  font-size: 15px;
  line-height: 1.6;
}

.kc-kava-advice-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(60, 35, 25, 0.09);
}

.kc-kava-advice-info p {
  margin: 0;
  color: #6b5a50;
  font-size: 14px;
  line-height: 1.4;
}

.kc-kava-advice-info strong {
  color: #24140f;
  font-weight: 700;
  margin-right: 6px;
}

.kc-kava-advice-info a {
  color: #c69236;
  font-weight: 600;
  text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .kc-kava-hero-inner,
  .kc-kava-advice-inner {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .kc-kava-brand-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .kc-kava-hero {
    min-height: auto;
  }

  .kc-kava-hero-inner {
    padding: 56px 0 48px;
  }

  .kc-kava-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .kc-kava-cta {
    width: 100%;
    justify-content: center;
  }
}


/* ══════════════════════════════════════════════════════════════
   KÁVA A ČAJE — kava.html  (kc-ct-*)
══════════════════════════════════════════════════════════════ */

/* Shared container */
.kc-ct-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}

/* ── HERO ────────────────────────────────────────────────────── */

.kc-ct-hero {
  position: relative;
  overflow: visible;
  padding: 0;
  min-height: min(600px, 100vh);
  background: url("assets/hero-káva.png") center 82% / cover no-repeat;
  background-color: #d6b387;
  display: flex;
  align-items: flex-start;
  z-index: 1;
  margin-top: -74px;
}

.kc-ct-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1510px;
  margin: 0 auto;
  width: 100%;
  display: block;
  padding: 148px clamp(18px, 5vw, 72px) 44px;
}

.kc-ct-hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}

/* Mobilní obrázek kávovaru (skrytý na desktopu) */
.kc-ct-hero-image-mobile {
  display: none;
}

.kc-ct-label {
  color: #c69236;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.kc-ct-h1 {
  margin: 0 0 18px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 640px;
  text-shadow: 2px 4px 18px rgba(36, 20, 15, 0.18);
}

/* Gold accent divider line */
.kc-ct-accent-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  align-self: stretch;
}

.kc-ct-accent-line span {
  flex: 1;
  display: block;
  height: 1px;
  background: linear-gradient(to right, #c69236, rgba(198,146,54,0.2));
  max-width: 180px;
}

.kc-ct-accent-line span:last-child {
  background: linear-gradient(to left, rgba(198,146,54,0.1), transparent);
  max-width: 80px;
}

.kc-ct-lead {
  margin: 0;
  color: #6b5a50;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.62;
  max-width: 520px;
}

/* Hero right */
.kc-ct-hero-visual {
  position: relative;
}

/* Přechod zleva přes fotku */
.kc-ct-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    to right,
    #f6efe4 0%,
    rgba(246, 239, 228, 0.6) 22%,
    transparent 46%
  );
  z-index: 1;
  pointer-events: none;
}

.kc-ct-hero-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(36, 20, 15, 0.14);
}

/* Floating badge */
.kc-ct-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 192px;
  padding: 18px 18px 20px;
  background: linear-gradient(145deg, #2c1a0e, #1c0f07);
  border-radius: 18px;
  z-index: 2;
  box-shadow: 0 10px 28px rgba(18, 9, 4, 0.35);
}

.kc-ct-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(198, 146, 54, 0.14);
  border: 1px solid rgba(198, 146, 54, 0.3);
  color: #c69236;
  margin-bottom: 12px;
}

.kc-ct-badge strong {
  display: block;
  color: #c69236;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.kc-ct-badge p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.45;
}

/* ── BRAND SECTION ───────────────────────────────────────────── */

.kc-ct-brands {
  padding: 0 0 96px;
  background: transparent;
  position: relative;
  z-index: 3;
  margin-top: 18px;
}

/* Section divider */
.kc-ct-section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(20px, 4.5vw, 64px) 0;
  margin-bottom: 40px;
}

.kc-ct-divline {
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(198, 146, 54, 0.4);
}

.kc-ct-divlabel {
  color: #24140f;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Brand cards — horizontal layout matching reference */
.kc-ct-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kc-ct-brand-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(36, 20, 15, 0.06);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
  min-height: 300px;
}

.kc-ct-brand-card:hover {
  box-shadow: 0 10px 32px rgba(36, 20, 15, 0.11);
  transform: translateY(-2px);
}

/* Left: text column */
.kc-ct-brand-text {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  padding: 26px 20px 22px 24px;
}

.kc-ct-brand-name {
  margin: 0 0 10px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Small gold dot */
.kc-ct-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c69236;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.kc-ct-brand-desc {
  margin: 0;
  flex: 1;
  color: #6b5a50;
  font-size: 14px;
  line-height: 1.62;
}

/* Coffee beans at bottom of text column */
.kc-ct-brand-beans {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 0;
}

/* Right: product image column */
.kc-ct-brand-visual {
  flex: 0 0 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: linear-gradient(to bottom right, #fffaf2, #f3e9d8);
  position: relative;
}

.kc-ct-pack-img {
  display: block;
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(36, 20, 15, 0.16));
  transition: transform 0.3s ease;
}

.kc-ct-brand-card:hover .kc-ct-pack-img {
  transform: scale(1.04) translateY(-4px);
}

/* ── TEA BRAND SECTION ─────────────────────────────────────── */

.kc-ct-tea-section {
  position: relative;
  z-index: 3;
  padding: 0 0 96px;
  background: transparent;
}

.kc-ct-tea-divider {
  max-width: 1180px;
  margin: 0 auto 42px;
  padding-right: 0;
  padding-left: 0;
}

.kc-ct-tea-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 2.6vw, 36px);
}

.kc-ct-tea-card {
  display: grid;
  min-height: clamp(420px, 32vw, 500px);
  overflow: hidden;
  border: 1px solid rgba(60, 35, 25, 0.1);
  border-radius: 28px;
  background: #fffaf2;
  box-shadow: 0 10px 34px rgba(36, 20, 15, 0.08);
}

.kc-ct-tea-card-gresik {
  grid-template-columns: minmax(270px, 40%) minmax(0, 1fr);
}

.kc-ct-tea-card-biogena {
  grid-template-columns: minmax(270px, 40%) minmax(0, 1fr);
  background: #fff8ef;
}

.kc-ct-tea-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(26px, 2.4vw, 30px);
}

.kc-ct-tea-content h3 {
  margin: 0 0 12px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.15rem, 2.6vw, 2.65rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.kc-ct-tea-content p {
  margin: 0;
  color: #6b5a50;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.6;
}

.kc-ct-tea-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
}

.kc-ct-tea-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(198, 146, 54, 0.35);
  border-radius: 999px;
  color: #7a5520;
  background: rgba(255, 255, 255, 0.52);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
}

.kc-ct-tea-chips span::before {
  display: block;
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-left-width: 0;
  border-bottom-width: 0;
  border-radius: 8px 8px 8px 0;
  content: "";
  transform: rotate(-35deg);
  opacity: 0.72;
}

.kc-ct-tea-visual {
  min-width: 0;
  min-height: 100%;
  margin: 0;
}

.kc-ct-tea-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.kc-ct-tea-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  color: #c69236;
  background:
    linear-gradient(rgba(198, 146, 54, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 146, 54, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #fff4e5 0%, #f2ddbd 52%, #ead0ac 100%);
  background-size: 34px 34px, 34px 34px, auto;
  text-align: center;
}

.kc-ct-tea-placeholder-biogena {
  background:
    linear-gradient(rgba(198, 146, 54, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 146, 54, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #fff0e3 0%, #f2cdaa 54%, #e8bc98 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.kc-ct-tea-placeholder::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(198, 146, 54, 0.18);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.kc-ct-tea-placeholder svg,
.kc-ct-tea-placeholder span {
  position: relative;
  z-index: 1;
}

.kc-ct-tea-placeholder svg {
  opacity: 0.72;
}

.kc-ct-tea-placeholder span {
  max-width: 230px;
  color: #7a5520;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.kc-ct-tea-store-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(198, 146, 54, 0.35);
  border-radius: 28px;
  background: #fffaf2;
  box-shadow: 0 8px 28px rgba(36, 20, 15, 0.05);
}

.kc-ct-tea-store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 112px;
  min-height: 78px;
  padding-right: 24px;
  border-right: 1px solid rgba(60, 35, 25, 0.12);
  color: #c69236;
}

.kc-ct-tea-store-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.kc-ct-tea-store-copy h3 {
  margin: 0 0 8px;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}

.kc-ct-tea-store-copy p {
  max-width: 690px;
  margin: 0;
  color: #6b5a50;
  font-size: 15px;
  line-height: 1.6;
}

.kc-ct-tea-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  color: #24140f;
  background: #c69236;
  box-shadow: 0 12px 26px rgba(198, 146, 54, 0.28);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kc-ct-tea-store-btn:hover,
.kc-ct-tea-store-btn:focus-visible {
  background: #d3a04a;
  box-shadow: 0 16px 32px rgba(198, 146, 54, 0.34);
  transform: translateY(-1px);
}

/* ── BOTTOM BOXES ────────────────────────────────────────────── */

.kc-ct-bottom {
  padding: 0 0 96px;
}

.kc-ct-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.kc-ct-box {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fffaf2;
  border: 1px solid rgba(60, 35, 25, 0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(36, 20, 15, 0.05);
}

/* Left box: store photo + body */
.kc-ct-box-store {
  flex-shrink: 0;
  width: 130px;
  align-self: stretch;
}

.kc-ct-store-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kc-ct-box-body {
  flex: 1;
  padding: 24px 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kc-ct-box-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(198, 146, 54, 0.3);
  background: rgba(198, 146, 54, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c69236;
  flex-shrink: 0;
}

.kc-ct-box-body h3 {
  margin: 0;
  color: #24140f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.kc-ct-box-body p {
  margin: 0;
  color: #6b5a50;
  font-size: 14px;
  line-height: 1.6;
}

/* Tea decoration in right box */
.kc-ct-box-tea {
  flex-shrink: 0;
  padding: 20px 20px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .kc-ct-hero {
    min-height: 480px;
    background-position: center 80%;
  }

  .kc-ct-hero-inner {
    padding: 130px clamp(18px, 5vw, 48px) 36px;
  }

  .kc-ct-hero-left {
    max-width: 760px;
  }

  .kc-ct-brands {
    margin-top: 18px;
  }

  .kc-ct-brand-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .kc-ct-tea-section {
    padding-bottom: 84px;
  }

  .kc-ct-tea-brand-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
  }

  .kc-ct-tea-card-gresik,
  .kc-ct-tea-card-biogena {
    grid-template-columns: 42% 58%;
    min-height: 420px;
  }

  .kc-ct-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .kc-ct-tea-divider {
    gap: 14px;
    margin-bottom: 28px;
  }

  .kc-ct-tea-card-gresik,
  .kc-ct-tea-card-biogena {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kc-ct-tea-content {
    padding: 28px 22px 24px;
  }

  .kc-ct-tea-chips {
    margin-top: 0;
    padding-top: 24px;
  }

  .kc-ct-tea-placeholder {
    min-height: 280px;
  }

  .kc-ct-tea-photo {
    min-height: 280px;
    max-height: 340px;
  }

  .kc-ct-tea-store-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .kc-ct-tea-store-icon {
    width: auto;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(60, 35, 25, 0.12);
  }

  .kc-ct-tea-store-btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .kc-ct-h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .kc-ct-badge {
    width: 160px;
    top: 14px;
    right: 14px;
    padding: 14px 14px 16px;
  }

  .kc-ct-brand-grid {
    max-width: 100%;
  }

  .kc-ct-brand-card {
    flex-direction: column;
    min-height: auto;
  }

  .kc-ct-brand-text {
    flex: none;
    padding: 22px 20px 16px;
  }

  .kc-ct-brand-visual {
    flex: none;
    padding: 16px;
    min-height: 200px;
  }

  .kc-ct-tea-section {
    padding-bottom: 74px;
  }

  .kc-ct-tea-divider {
    padding: 0;
  }

  .kc-ct-tea-divider .kc-ct-divlabel {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .kc-ct-tea-card {
    border-radius: 22px;
  }

  .kc-ct-tea-content h3 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .kc-ct-tea-placeholder {
    min-height: 250px;
  }

  .kc-ct-tea-photo {
    min-height: 250px;
    max-height: 300px;
  }

  .kc-ct-tea-placeholder::before {
    inset: 18px;
    border-radius: 18px;
  }

  .kc-ct-tea-store-panel {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .kc-ct-box-store {
    width: 90px;
  }
}

/* ══════════════════════════════════════════════════════════════
   VODOMATY HERO — vodomaty.html  (kc-wh-*)
══════════════════════════════════════════════════════════════ */

.kc-wh-hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 96px), 760px);
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: #eaf7fb;
  isolation: isolate;
  margin-top: -74px;
}

.kc-wh-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 252, 255, 0.74) 0%, rgba(247, 252, 255, 0.42) 26%, rgba(247, 252, 255, 0.12) 44%, rgba(247, 252, 255, 0) 56%);
}

/* ── Left: text column ─────────────────────────────────────── */

.kc-wh-hero-left {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 720px;
  padding: 155px 72px 60px clamp(18px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(620px, calc(100svh - 96px), 760px);
}

.kc-wh-label {
  color: #12384a;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin: 0;
}

.kc-wh-label-line {
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #1f6f8c, rgba(91, 187, 215, 0.24));
  margin-top: 14px;
  margin-bottom: 28px;
}

.kc-wh-h1 {
  margin: 0;
  color: #12384a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 600px;
  text-shadow: none;
  text-transform: none;
}

.kc-wh-h1 em {
  font-style: normal;
  color: #1f6f8c;
}

.kc-wh-lead {
  margin: 24px 0 0;
  max-width: 560px;
  color: #4c6570;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}

.kc-wh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.kc-wh-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px 0 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 93, 120, 0.13);
  border-radius: 999px;
  color: #12384a;
  font-size: 13.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.kc-wh-pill-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f6f8c;
  box-shadow: 0 2px 6px rgba(15, 93, 120, 0.10);
  flex-shrink: 0;
}

.kc-wh-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.kc-wh-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: #12384a;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 56, 74, 0.22);
  border: 1px solid rgba(91, 187, 215, 0.38);
  transition: background 0.2s ease, transform 0.2s ease;
}

.kc-site .kc-wh-cta-btn {
  color: #fff;
}

.kc-wh-cta-btn:hover {
  background: #092331;
  transform: translateY(-2px);
}

.kc-wh-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #506b76;
  font-size: 14px;
}

/* ── Right: image — full bleed background ─────────────────── */

.kc-wh-hero-right {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.kc-wh-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Floating card */
.kc-wh-float-card {
  position: absolute;
  right: 52px;
  bottom: clamp(120px, 12vw, 150px);
  width: 190px;
  padding: 20px 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 93, 120, 0.12);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(18, 56, 74, 0.12);
  text-align: center;
  z-index: 2;
}

.kc-wh-float-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 111, 140, 0.08);
  border: 1px solid rgba(15, 93, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f6f8c;
  margin: 0 auto 10px;
}

.kc-wh-float-card-line {
  display: block;
  width: 44px;
  height: 2px;
  background: linear-gradient(to right, #1f6f8c, rgba(91, 187, 215, 0.24));
  margin: 8px auto 12px;
}

.kc-wh-float-card strong {
  display: block;
  color: #12384a;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 5px;
}

.kc-wh-float-card small {
  color: #4c6570;
  font-size: 12px;
  font-weight: 500;
}

/* ── Services "Kompletní péče" section ─────────────────────── */

.kc-wh-services {
  background: #f6fcff;
  padding: 70px clamp(18px, 5vw, 72px) 80px;
  position: relative;
  z-index: 5;
  margin-top: 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -18px 48px rgba(18, 56, 74, 0.08);
}

.kc-wh-services-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.kc-wh-services-top {
  margin-bottom: 40px;
}

.kc-wh-services-kicker {
  color: #1f6f8c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.kc-wh-services-heading {
  margin: 0;
  color: #12384a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.kc-wh-srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.kc-wh-srv-card {
  background: #ffffff;
  border: 1px solid rgba(31, 111, 140, 0.11);
  border-radius: 20px;
  padding: 28px 24px 26px;
  box-shadow: 0 4px 14px rgba(18, 56, 74, 0.05);
}

.kc-wh-srv-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(31, 111, 140, 0.07);
  border: 1px solid rgba(31, 111, 140, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f6f8c;
  margin-bottom: 16px;
}

.kc-wh-srv-card h3 {
  margin: 0 0 8px;
  color: #12384a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.kc-wh-srv-card p {
  margin: 0;
  color: #4c6570;
  font-size: 14px;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .kc-wh-hero-left {
    width: 58%;
    padding-right: 48px;
  }
  .kc-wh-hero-right {
    inset: 0;
  }
  .kc-wh-h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  }
  .kc-wh-float-card {
    width: 164px;
    right: 24px;
    bottom: 118px;
  }
  .kc-wh-srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kc-wh-hero {
    min-height: auto;
    flex-direction: column;
  }
  .kc-wh-hero::before {
    background:
      linear-gradient(180deg, rgba(246, 252, 255, 0.96) 0%, rgba(246, 252, 255, 0.93) 54%, rgba(246, 252, 255, 0.62) 76%, rgba(246, 252, 255, 0.12) 100%),
      linear-gradient(180deg, rgba(18, 56, 74, 0.08), rgba(18, 56, 74, 0));
  }
  .kc-wh-hero-left {
    width: 100%;
    max-width: 100%;
    min-height: min(760px, calc(100svh - 70px));
    padding: 48px clamp(20px, 5vw, 40px) 160px;
  }
  .kc-wh-hero-right {
    inset: 0;
  }
  .kc-wh-img {
    object-position: 74% center;
  }
  .kc-wh-float-card {
    display: none;
  }
  .kc-wh-h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    max-width: 100%;
  }
  .kc-wh-lead {
    max-width: 100%;
    font-size: 16px;
  }
  .kc-wh-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .kc-wh-services {
    margin-top: -118px;
    padding-top: 54px;
  }
  .kc-wh-srv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .kc-wh-srv-grid {
    grid-template-columns: 1fr;
  }
  .kc-wh-cta-btn {
    font-size: 18px;
    padding: 14px 22px;
    width: 100%;
    justify-content: center;
  }
}
