@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap&subset=latin,latin-ext');

/* ─── TOKENS ─────────────────────────────────── */
:root {
  --c-dark:        #423629;   /* Taupe — tmavé sekce, pásek, patička */
  --c-primary:     #333333;   /* Neutrální tmavá — nadpisy, tlačítka */
  --c-accent:      #9A6520;   /* Copper — akcenty, ikony, linky — AA 4.9:1 na bílé */
  --c-olive:       #4F5D2F;   /* Olive Leaf — doplňkový přírodní akcent */
  --c-sage:        #C8D5B9;   /* Sage — světlá šalvějová, hero pozadí */
  --c-bg:          #F9F5F1;   /* Parchment — hlavní pozadí */
  --c-bg-alt:      #EBD6C1;   /* Almond Cream — alternativní sekce */
  --c-white:       #FFFFFF;
  --c-text:        #333333;   /* Neutrální tmavá — tělo textu */
  --c-muted:       #333333;   /* neutrální tmavá — sekundární text */
  --c-border:      #D8C4A8;   /* zesvětlený Almond Cream — okraje */

  --f-head:  'Cormorant Garamond', serif;
  --f-body:  'DM Sans', sans-serif;

  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  2rem;
  --sp-lg:  4rem;
  --sp-xl:  6rem;    /* 96px — 8pt grid */

  --r-sm:   8px;    /* 8pt grid */
  --r-md:   16px;   /* 8pt grid */
  --r-lg:   24px;

  --sh-sm: 0 2px 16px rgba(66,54,41,.07);
  --sh-md: 0 8px 40px rgba(66,54,41,.12);

  --ease: 0.25s ease;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { font-size:16px; scroll-behavior:smooth; }

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.5;
  overflow-x: hidden;
}

img { display:block; max-width:100%; }
a   { text-decoration:none; color:inherit; transition:color var(--ease); }

/* ─── TYPE ───────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-head);
  color: var(--c-dark);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: var(--sp-sm);
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw,  4rem);   }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem);  }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-family: var(--f-body); font-weight: 600; }

em { font-style: italic; font-weight: 400; }

p  { margin-bottom: var(--sp-sm); line-height: 1.5; }

/* ─── LAYOUT ─────────────────────────────────── */
.container {
  width: 88%;
  max-width: 1320px;
  margin: 0 auto;
}

section { padding: var(--sp-lg) 0; }
@media (min-width:992px) { section { padding: var(--sp-xl) 0; } }

/* ─── LABELS & HELPERS ───────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.2rem;
}
.section-label.light { color: rgba(255,255,255,.5); }
.section-intro.light  { color: rgba(255,255,255,.65); }

.section-intro {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 600px;
  margin-bottom: var(--sp-md);
  line-height: 1.5;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  background: transparent;
  color: var(--c-accent);
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--c-accent);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-secondary:hover {
  background: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn-secondary i { transition: transform var(--ease); }
.btn-secondary[aria-expanded="true"] i { transform: rotate(180deg); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  background: var(--c-accent);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1.5px solid var(--c-accent);
  cursor: pointer;
  transition: all var(--ease);
}
.btn-primary:hover {
  background: var(--c-white);
  color: var(--c-accent);
  border: 1.5px solid var(--c-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(66,54,41,.15);
}
.btn-primary .btn-arrow {
  transition: transform 0.25s ease;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-text {
  background: none;
  border: none;
  color: var(--c-accent);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  transition: gap var(--ease), color var(--ease);
}
.btn-text:hover { color: var(--c-primary); gap: 1rem; }
.btn-text[aria-expanded="true"] i { transform: rotate(90deg); }
.btn-text i { transition: transform var(--ease); }

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ─── HEADER ─────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  padding: 0.5rem 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: var(--sh-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo img { height:72px; object-fit:contain; mix-blend-mode: multiply; }
@media(min-width:992px) { .logo img { height:96px; } }

.main-nav ul {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
  background: var(--c-white);
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 6%; right: 6%;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}
.main-nav ul.open { display: flex; }

.main-nav a {
  color: var(--c-text);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--ease);
}
.main-nav a:hover { color: var(--c-accent); }

.nav-cta {
  background: var(--c-accent);
  color: var(--c-white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-size: 0.78rem !important;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease) !important;
}
.nav-cta:hover { background: var(--c-dark) !important; color: var(--c-white) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(66,54,41,.25); }

/* Hamburger */
.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--ease);
}

@media(min-width:992px) {
  .main-nav ul {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .hamburger-menu { display: none; }
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: var(--c-bg);
  overflow: hidden;
  position: relative;
  padding: 72px 0 0;
}
@media(min-width:992px) {
  .hero {
    background: linear-gradient(to right,
      var(--c-bg) calc(50% + min(88vw, 1320px) * 0.212),
      var(--c-sage) calc(50% + min(88vw, 1320px) * 0.212)
    );
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 2.5rem 6% 2rem;
  order: 2;
}

.hero-right {
  order: 1;
}

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
}

.hero-left h1 {
  margin-bottom: 0;
  color: var(--c-primary);
  font-size: clamp(2.2rem, 3.3vw, 4.3rem);
  line-height: 1.02;
  max-width: none;
  width: 100%;
}
.hero-left h1 em { color: var(--c-accent); font-style: italic; }
@media(max-width:767px) {
  .hero-left h1 { font-size: 2.2rem; }
}

.hero-perex {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 680px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.hero-avatars {
  display: flex;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--c-bg);
  object-fit: cover;
  margin-right: -10px;
  display: block;
}
.avatar:last-child { margin-right: 0; }

.hero-social-text { display: flex; flex-direction: column; gap: 0.1rem; }
.hero-stars { color: var(--c-accent); font-size: 0.8rem; letter-spacing: 1px; line-height: 1; }
.hero-social-text p { font-size: 0.8rem; color: var(--c-muted); margin-bottom: 0; line-height: 1.3; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--c-sage);
}
@media(min-width:992px) {
  .hero-right { background: transparent; }
}

.hero-img {
  display: block;
  width: 90%;
  height: 340px;
  margin: 2rem auto 2.5rem;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
}
@media(min-width:992px) {
  .hero-img {
    height: 592px;
    width: 100%;
    margin: 72px 0;
  }
}


/* ─── HERO MOBILE — fullscreen s obrázkem na pozadí ── */
@media(max-width:991px) {
  .hero {
    padding: 0;
    min-height: 100svh;
  }
  .hero-grid {
    min-height: 100svh;
    position: relative;
  }
  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--c-dark);
  }
  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
      rgba(200,213,185,0.45) 0%,
      rgba(150,168,120,0.35) 12%,
      rgba(66,54,41,0.82) 25%,
      rgba(66,54,41,0.55) 50%,
      rgba(66,54,41,0.72) 68%,
      rgba(150,168,120,0.35) 85%,
      rgba(200,213,185,0.45) 100%
    );
    z-index: 1;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.9;
  }
  .hero-left {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    justify-content: center;
    padding: 7.5rem 7% 2rem;
    gap: 1.2rem;
  }
  .hero-eyebrow { color: rgba(255,255,255,0.75); }
  .hero-left h1 { color: #fff; }
  .hero-left h1 em { color: var(--c-bg-alt); }
  .hero-perex { color: rgba(255,255,255,0.85); }
  .hero-social-text p { color: var(--c-dark); }
  .hero-social-proof { display: none; }
  .avatar { border-color: rgba(255,255,255,0.25); }
  .hero-left .btn-secondary {
    color: #fff;
    border-color: rgba(255,255,255,0.7);
  }
  .hero-eyebrow { letter-spacing: 1.5px; font-size: 0.75rem; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
  .hero-left h1,
  .hero-perex { text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
  .hero-left .hero-cta { flex-direction: column; width: 100%; }
  .hero-left .hero-cta .btn-primary,
  .hero-left .hero-cta .btn-secondary { width: 100%; justify-content: center; }
}

@media(min-width:992px) {
  .hero-grid {
    grid-template-columns: 55fr 45fr;
    grid-template-rows: 736px;
  }
  .hero-left {
    padding: 3.5rem 5% 3.5rem 7.5vw;
    justify-content: center;
    overflow: hidden;
    order: 1;
  }
  .hero-right {
    height: 736px;
    order: 2;
  }
}

/* ─── MARQUEE ────────────────────────────────── */
.marquee-strip {
  background: var(--c-dark);
  overflow: hidden;
  padding: 1.2rem 0;
  display: flex;
}
@media(max-width:991px) {
  .marquee-strip { display: none; }
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 3rem;
  animation: marquee 55s linear infinite;
}

.marquee-strip:hover .marquee-track { animation-play-state: paused; }

@media(min-width:992px) {
  .marquee-track { animation-play-state: paused; }
}

.marquee-track span {
  font-family: var(--f-head);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.55);
}
.marquee-track .mdot {
  color: var(--c-accent);
  font-style: normal;
  font-size: 0.5rem;
  opacity: .7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ─── ABOUT ──────────────────────────────────── */
.about { background: var(--c-white); position: relative; overflow: hidden; }
.about .container { position: relative; z-index: 1; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  align-items: center;
}

.about-image {
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -160px;
  width: 380px;
  height: 280px;
  background: url('../img/kava_flek.png') center/contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
  transform: rotate(-15deg);
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-text h2 { margin-top: 0.5rem; }
.about-text p   { color: var(--c-muted); max-width: 100%; font-size: 1.05rem; line-height: 1.5; }
.about-more[hidden] { display: none; }
.about-more.is-open { display:block; animation: fadeIn .4s ease; }

.about-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--c-accent);
  background: #FDF6EE;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2A2A2A;
}

@media(min-width:992px) {
  .about-inner {
    grid-template-columns: 5fr 6fr;
    gap: var(--sp-xl);
  }
  .about-image img { aspect-ratio: auto; max-height: 640px; }
}

/* ─── SOLUTIONS (dark) ───────────────────────── */
.solutions {
  background-color: var(--c-bg);
}

.solutions-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.solutions-text-col h2 { color: var(--c-primary); margin-bottom: 0; }

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media(min-width:600px) {
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width:992px) {
  .solutions-grid { grid-template-columns: repeat(4, 1fr); }
}

.solution-card {
  background: var(--c-white);
  border-radius: 9999px 9999px var(--r-lg) var(--r-lg);
  padding: 3rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.solution-card-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.solution-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform-origin: bottom center;
}
.solution-card:hover .solution-card-icon img {
  animation: sway 2s ease-in-out infinite;
}

.solution-card h3 {
  color: var(--c-primary);
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.25;
}
.solution-card p {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 100%;
}

/* ─── PHOTO STRIP ────────────────────────────── */
.photo-strip { padding: 0; line-height: 0; }
.photo-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 300px;
}
@media(min-width:992px) { .photo-strip-grid { height: 420px; } }
.photo-strip-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
}
@media(max-width:991px) {
  .photo-strip-grid {
    grid-template-columns: 1fr;
  }
  .photo-strip-grid img:nth-child(1),
  .photo-strip-grid img:nth-child(2) {
    display: none;
  }
}

/* ─── BENEFITS ───────────────────────────────── */
.benefits { background: var(--c-white); }
.benefits .container { position: relative; z-index: 1; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-top: var(--sp-md);
}
@media(min-width:768px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .benefit-item { padding-right: 34%; }
}

.benefit-item {
  background: #E4EED7;
  border-radius: var(--r-lg);
  padding: 2rem 22% 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 0 var(--r-lg) 0 100%;
  background: var(--c-white);
}

.benefit-icon {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 50px;
  height: 50px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transform-origin: bottom center;
  transition: transform 0.3s ease;
}
.benefit-item:hover .benefit-icon img {
  animation: sway 2s ease-in-out infinite;
}
@keyframes sway {
  0%, 100% { transform: rotate(0deg); }
  20%       { transform: rotate(-12deg); }
  60%       { transform: rotate(10deg); }
  80%       { transform: rotate(-6deg); }
}
.benefit-item h3 { margin-bottom: 0.7rem; font-size: clamp(1.45rem, 2.2vw, 1.8rem); }
.benefit-item p  { margin-bottom: 0; color: var(--c-muted); max-width: 100%; font-size: 0.95rem; line-height: 1.5; }

/* ─── PRICING ────────────────────────────────── */
.services { background: var(--c-bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--sp-md);
}
@media(min-width:768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.price-card--featured {
  background: #F4E8D8;
  border-color: var(--c-accent);
  box-shadow: var(--sh-md);
}

.price-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.price-card-badge {
  display: inline-flex;
  padding: 0.2rem 0.8rem;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

.price-card-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,213,185,.5);
  color: var(--c-olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-left: auto;
}

.price-card h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin-bottom: 0; }

.price-card-amount {
  font-family: var(--f-head);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-accent);
}
.price-card-amount span { font-size: 1.2rem; font-weight: 600; }

.price-card-duration {
  font-size: 0.82rem;
  color: var(--c-muted);
  display: flex; align-items: center; gap: 0.4rem;
}

.price-card-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}
.price-card-list li {
  font-size: 0.88rem;
  line-height: 1.5;
  padding-left: 1.3rem;
  position: relative;
  color: var(--c-text);
}
.price-card-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--c-accent);
  font-size: 0.78rem;
}

.price-card .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* Tabs — segmented control */
.tab-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.35rem;
  background: var(--c-bg-alt);
  border-radius: 50px;
  border-bottom: none;
  margin-bottom: 2.5rem;
}
.tab-btn {
  background: none;
  border: none;
  border-radius: 50px;
  font-family: var(--f-head);
  font-size: 1rem;
  color: var(--c-muted);
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--ease);
  border-bottom: none;
  margin-bottom: 0;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--c-primary); background: rgba(255,255,255,.5); }
.tab-btn[aria-selected="true"] {
  color: var(--c-white);
  font-weight: 600;
  background: var(--c-accent);
  box-shadow: var(--sh-sm);
}
.tab-btn[aria-selected="true"] .tab-icon {
  background: rgba(255,255,255,.25);
  color: var(--c-white);
}
.tab-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  background: rgba(186,122,59,.14);
  color: var(--c-accent);
  flex-shrink: 0;
}
#tab-2 .tab-icon { background: rgba(200,213,185,.55); color: var(--c-olive); }
#tab-3 .tab-icon { background: rgba(79,93,47,.15);   color: var(--c-olive); }

/* Card */
.tab-panel {
  display: none;
  animation: fadeIn .35s ease;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(66,54,41,.18);
}
.tab-panel.active { display: block; }

.panel-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media(min-width:768px) {
  .panel-layout { grid-template-columns: 5fr 7fr; min-height: 400px; }
}

/* Left (colored) side */
.panel-left {
  padding: 3.2rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.panel-left h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.25;
  margin-bottom: 0;
}

.price {
  font-family: var(--f-head);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-block { display: flex; flex-direction: column; gap: 0.3rem; }

.duration {
  font-size: 0.82rem;
  display: flex; align-items: center; gap: 0.4rem;
  margin-bottom: 0;
}

.panel-note {
  font-size: 0.87rem;
  margin-bottom: 0;
  font-style: italic;
  line-height: 1.62;
  opacity: .75;
}

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--ease);
  width: auto;
  align-self: flex-start;
  margin-top: auto;
}

/* Right (white) side */
.panel-right {
  background: var(--c-white);
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
}
.panel-right h4 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: var(--f-body);
  color: var(--c-accent);
  margin-bottom: 0.2rem;
}

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0.4rem 0 1.4rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.91rem;
  line-height: 1.5;
  color: var(--c-text);
}
.check-list li:first-child { border-top: 1px solid var(--c-border); }
.check-list i {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(186,122,59,.14);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  margin-top: 0.18rem;
}

/* Footnote as callout */
.panel-footnote {
  font-size: 0.87rem;
  font-style: italic;
  padding: 1rem;
  background: rgba(186,122,59,.08);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  color: var(--c-accent);
  margin-bottom: 0;
  margin-top: auto;
  line-height: 1.5;
}

/* Badge */
.panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  background: var(--c-accent);
  color: var(--c-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 50px;
  width: fit-content;
}

/* Unified panel design — stejný pro všechny záložky */
.tab-panel .panel-left { background: var(--c-sage); }
.tab-panel .panel-left h3 { color: var(--c-primary); }
.tab-panel .panel-left .price { color: var(--c-primary); }
.tab-panel .panel-left .duration { color: var(--c-muted); }
.tab-panel .panel-left .panel-note { color: var(--c-muted); }
.tab-panel .panel-left .btn-pricing { background: var(--c-accent); color: var(--c-white); border: none; }
.tab-panel .panel-left .btn-pricing:hover { background: var(--c-dark); color: var(--c-white); transform: translateY(-2px); }

.services-disclaimer {
  margin-top: 2rem;
  max-width: 640px;
  color: #333333;
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.services-disclaimer i {
  color: var(--c-olive);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ─── PROČ JÁ ───────────────────────────────── */
.why-me { background: var(--c-bg); position: relative; overflow: hidden; }
.why-me::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -70px;
  width: 420px;
  height: 300px;
  background: url('../img/kava_flek.png') center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(10deg);
  z-index: 0;
}

.why-me-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
@media(min-width:992px) {
  .why-me-inner { grid-template-columns: 55fr 45fr; gap: var(--sp-xl); }
}

.why-list { margin-top: var(--sp-md); }

.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
}
.why-item:first-child { border-top: 1px solid var(--c-border); }

.why-num {
  font-family: var(--f-head);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-accent);
  opacity: 0.7;
  line-height: 1.1;
  flex-shrink: 0;
  min-width: 2rem;
  padding-top: 0.15rem;
}

.why-item h3 { font-size: clamp(1.45rem, 2.2vw, 1.8rem); line-height: 1.25; margin-bottom: 0.35rem; }
.why-item p  { margin-bottom: 0; color: var(--c-muted); font-size: 0.95rem; line-height: 1.5; max-width: 100%; }

.why-photo img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  object-position: 40% center;
  transform: scaleX(-1);
}

/* ─── BENTO (zachováno pro případ) ──────────── */
.why-me-old { background: var(--c-bg); }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: var(--sp-md);
}

@media(min-width:768px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-large { grid-column: span 1; }
}

@media(min-width:1100px) {
  .bento-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; }
  .bento-large { grid-column: 1; grid-row: span 2; }
  .bento-dark   { grid-column: 2; }
  .bento-accent { grid-column: 3; }
  .bento-grid .bento-card:last-child { grid-column: 2 / span 2; }
}

.bento-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease), box-shadow var(--ease);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.bento-card.bento-dark  { background: var(--c-olive); }
.bento-card.bento-dark h3, .bento-card.bento-dark p { color: rgba(255,255,255,.88); }
.bento-card.bento-dark .bento-icon { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }

.bento-card.bento-accent { background: var(--c-accent); }
.bento-card.bento-accent h3, .bento-card.bento-accent p { color: var(--c-white); }
.bento-card.bento-accent .bento-icon { background: rgba(255,255,255,.2); color: var(--c-white); }

.bento-card.bento-sage { background: var(--c-bg-alt); }
.bento-card.bento-sage h3, .bento-card.bento-sage p { color: var(--c-primary); }
.bento-card.bento-sage .bento-icon { background: rgba(186,122,59,.15); color: var(--c-accent); }

.bento-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(186,122,59,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.bento-card h3 { margin-bottom: 0; font-size: clamp(1.45rem, 2.2vw, 1.8rem); }
.bento-card p  { margin-bottom: 0; color: var(--c-muted); font-size: 0.92rem; max-width: 100%; line-height: 1.5; }
.bento-large p { font-size: 1rem; }

/* ─── QUOTE BANNER ───────────────────────────── */
.quote-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}
@media(min-width:992px) { .quote-banner { height: 400px; } }

.quote-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.quote-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(66,54,41,.62);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.quote-banner-overlay blockquote {
  font-family: var(--f-head);
  font-size: clamp(1.4rem,3vw,2.4rem);
  color: var(--c-white);
  text-align: center;
  max-width: 800px;
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* ─── CONTACT ────────────────────────────────── */
.contact { background: var(--c-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media(min-width:992px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: var(--sp-xl); } }

.contact-info h2  { margin-top: 0.5rem; }
.contact-info > p { color: var(--c-muted); max-width: 100%; }

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: var(--sp-md);
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}
.contact-list i {
  color: #ffffff;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-accent);
  border-radius: 50%;
  font-size: 0.85rem;
}
.contact-list a { color: var(--c-text); transition: color var(--ease); }
.contact-list a:hover { color: var(--c-accent); }

.contact-form-wrap {
  background: var(--c-sage);
  border-radius: var(--r-lg);
  padding: var(--sp-md);
}
@media(min-width:768px) { .contact-form-wrap { padding: var(--sp-lg); } }

.form-privacy-note {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.78rem;
  color: var(--c-muted);
  opacity: 0.7;
  line-height: 1.5;
}

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--c-primary);
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--c-white);
  color: var(--c-text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(186,122,59,.15);
}
textarea.form-control { resize: vertical; min-height: 140px; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--c-dark);
  padding: var(--sp-lg) 0;
  position: relative;
  overflow: hidden;
}
.footer .container { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media(max-width:767px) {
  .footer-col-brand    { order: 1; }
  .footer-contact-col  { order: 2; }
  .footer-nav          { order: 3; }
}
@media(min-width:768px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-xl); }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand-bar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media(max-width:575px) {
  .footer-brand-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.footer-logo {
  height: 108px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-name {
  font-family: var(--f-head);
  font-size: 1.5rem;
  color: #FFFFFF !important;
  margin-bottom: 0.4rem;
}
.footer-tagline {
  color: #C8943A;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}
.footer-desc {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.footer-nav h4, .footer-contact-col h4 {
  color: var(--c-white);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--f-body);
  font-weight: 600;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--c-white); }

.footer-contact-col p {
  color: rgba(255,255,255,.5);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-contact-col p i { font-size: 0.85rem; flex-shrink: 0; color: var(--c-accent); }
.footer-contact-col a { color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-contact-col a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: var(--sp-md) 0 0;
}
@media(min-width:768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 0.82rem; margin-bottom: 0; }
.footer-copy { color: rgba(255,255,255,.3); font-size: 0.82rem; }
.footer-link { color: rgba(255,255,255,.3); transition: color var(--ease); }
.footer-link:hover { color: rgba(255,255,255,.75); }


/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeIn {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:none; }
}
