/* ============================================================
   FLORA — kvetinárstvo
   ============================================================ */
:root {
  --green:        #5e6b4f;
  --green-dark:   #4d5841;
  --cream:        #faf7f2;
  --cream-2:      #f4efe7;
  --ink:          #3d3a35;   /* tmavé nadpisy */
  --body:         #6b675f;   /* bežný text */
  --muted:        #a8957c;   /* eyebrow / akcent */
  --line:         #e6ddd0;
  --blush:        #f1ddd4;
  --blush-soft:   #f6e7df;
  --shadow:       0 18px 40px -24px rgba(61,58,53,.35);
  --radius:       4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: 84px 0; }
.center { text-align: center; }

/* ---- typografia ---- */
.h-serif,
h1 .h-serif,
.section-head h2,
.about-copy h2,
.gallery-head h2,
.newsletter h3 {
  font-family: "Cormorant Garamond", serif;
}

.h-script {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}
.eyebrow.center { text-align: center; }

.ornament {
  display: block;
  color: var(--green);
  opacity: .7;
  font-size: 18px;
  margin: 12px 0 0;
  letter-spacing: .2em;
}
.section-head .ornament,
.about-copy .ornament,
.newsletter .ornament { text-align: center; }

/* ---- tlačidlá ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  letter-spacing: .18em;
  font-weight: 500;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .25s ease;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-pill { border-radius: 999px; padding: 14px 30px; }
.arr { font-size: 18px; line-height: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  white-space: nowrap;
}
.logo-tag {
  font-family: "Great Vibes", cursive;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .02em;
}

.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 12.5px;
  letter-spacing: .16em;
  color: var(--ink);
  font-weight: 400;
  padding-bottom: 4px;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover { color: var(--green); }
.main-nav a.active { color: var(--green); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--green);
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 6px;
  display: grid; place-items: center;
  transition: color .2s;
}
.icon-btn:hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  transition: transform .3s, opacity .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    radial-gradient(120% 100% at 100% 0%, var(--cream-2) 0%, var(--cream) 55%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 40px;
  min-height: 560px;
  padding: 40px 0 0;
}
.hero-copy { padding: 30px 0 70px; }
.hero h1 { margin: 6px 0 26px; }
.hero h1 .h-serif {
  display: block;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.02;
}
.hero h1 .h-script {
  display: block;
  font-size: clamp(40px, 5.2vw, 66px);
  color: var(--green);
  margin-top: 4px;
}
.hero-lead { font-size: 16px; margin-bottom: 36px; max-width: 420px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  align-self: stretch;
  min-height: 560px;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 120px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }
.section-head { text-align: center; margin-bottom: 54px; }
.section-head h2 {
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}

/* ---- Bento mozaika ---- */
.services-bento {
  display: grid;
  grid-template-columns: 1.02fr 0.66fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}
.bento-col { display: flex; flex-direction: column; gap: 18px; }
.bento-subrow {
  display: grid;
  gap: 18px;
  flex: 1;
  min-height: 240px;
}
.subrow-left  { grid-template-columns: 0.72fr 1fr; }
.subrow-right { grid-template-columns: 1fr 1fr; }
.bento-mid { gap: 22px; }

/* spoločná karta */
.svc {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-light { background: #f1ebe1; color: var(--ink); }
.svc-dark  { background: #4e5742; color: #f1ede3; }
.svc h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 9px;
}
.svc p { font-size: 12.5px; line-height: 1.6; }
.svc-light h3 { color: var(--ink); }
.svc-light p  { color: var(--body); }
.svc-dark h3  { color: #f4f0e6; }
.svc-dark p   { color: rgba(244,240,230,.78); }

/* ikonky */
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.icon-filled        { background: var(--green); color: #fff; }
.icon-outline       { border: 1.5px solid var(--green); color: var(--green); }
.icon-outline-light { border: 1.5px solid rgba(241,237,227,.55); color: #f1ede3; }

/* horizontálna karta (text vľavo, foto vpravo) */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  min-height: 200px;
}
.svc-row .svc-text { padding: 26px 10px 26px 26px; }
.svc-row .svc-img { align-self: stretch; }
.svc-row .svc-img img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }

/* vertikálna karta (text hore, foto dole) */
.svc-col { display: flex; flex-direction: column; }
.svc-head { padding: 24px 22px 16px; }
.svc-img-fill { flex: 1; min-height: 130px; overflow: hidden; }
.svc-img-fill img { width: 100%; height: 100%; object-fit: cover; }

/* feature karta Svadby */
.svc-feature { flex: 1; }
.svc-feature .svc-head { padding: 30px 26px 18px; }
.svc-feature h3 { font-size: 26px; }
.svc-feature .svc-img-fill { min-height: 220px; }

/* oblúk – kapsula */
.svc-arch {
  border-radius: 999px;
  overflow: hidden;
  min-height: 100%;
}
.svc-arch img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.svc-arch:hover img { transform: scale(1.05); }

/* obrázky jemný zoom */
.svc .svc-img img { transition: transform .6s ease; }
.svc:hover .svc-img img { transform: scale(1.04); }

/* CTA pod feature kartou */
.bento-cta { display: flex; justify-content: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  background: linear-gradient(100deg, var(--blush-soft) 0%, var(--cream-2) 55%, #ece2d2 100%);
  margin: 0 auto;
  width: min(1180px, 92%);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.about-grid { position: relative; z-index: 2; }
.about-copy { max-width: 480px; padding: 64px 0; text-align: center; }
.about-copy h2 {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
}
.about-copy > .ornament { margin: 14px auto 22px; }
.about-copy p { font-size: 14px; margin-bottom: 28px; }
.about-photo {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 52%;
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { padding-top: 70px; }
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}
.gallery-head .eyebrow { margin-bottom: 8px; }
.gallery-head h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500;
  color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .4s;
  filter: saturate(.96);
}
.gallery-grid figure:hover img { transform: scale(1.08); filter: saturate(1.08); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--blush); padding: 46px 0; }
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.news-left { display: flex; align-items: center; gap: 20px; }
.news-icon { flex-shrink: 0; }
.newsletter h3 { font-size: 28px; font-weight: 600; color: var(--ink); line-height: 1.1; }
.news-left p { font-size: 13px; }
.news-form { display: flex; gap: 12px; flex: 1; min-width: 320px; max-width: 480px; }
.news-form input {
  flex: 1;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
}
.news-form input:focus { outline: none; border-color: var(--green); }
.news-form .btn { white-space: nowrap; }
.news-social { display: flex; gap: 16px; }
.soc { transition: transform .2s; }
.soc:hover { transform: translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--blush-soft); color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding: 64px 0 50px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-desc { font-size: 13px; max-width: 240px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: all .25s;
}
.footer-social a:hover { background: var(--green); border-color: var(--green); }
.footer-social a:hover svg { stroke: #fff; fill: #fff; }

.footer-col h4 {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 13px; color: var(--body); }
.footer-col a:hover { color: var(--green); }
.footer-contact .ci { color: var(--green); margin-right: 10px; }
.footer-contact .btn { margin-top: 22px; }

.footer-bottom { border-top: 1px solid rgba(168,149,124,.3); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 12px;
  color: var(--body);
  flex-wrap: wrap;
  gap: 8px;
}
.legal i { color: var(--muted); margin: 0 8px; font-style: normal; }
.legal a:hover { color: var(--green); }

/* ============================================================
   OBJAVOVACIE ANIMÁCIE
   ============================================================ */
.svc,
.svc-arch,
.gallery-grid figure,
.section-head,
.about-copy {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.in-view { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .svc, .svc-arch, .gallery-grid figure, .section-head, .about-copy {
    opacity: 1; transform: none; transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSÍVNE
   ============================================================ */
@media (max-width: 1024px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .bento-mid { grid-column: 1 / -1; }
  .bento-mid .svc-feature { flex: none; }
  .bento-mid .svc-feature .svc-img-fill { min-height: 260px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform .35s ease;
    padding: 18px 0 26px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { text-align: center; }
  .main-nav a { display: block; padding: 14px; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-image { min-height: 380px; margin-bottom: -1px; }
  .hero-image img { position: relative; border-bottom-left-radius: 70px; }

  .about { flex-direction: column; }
  .about-photo { position: relative; width: 100%; height: 280px; }
  .about-photo img { -webkit-mask-image: none; mask-image: none; }
  .about-copy { text-align: center; margin-inline: auto; padding: 48px 0 30px; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .news-left { flex-direction: column; }
  .news-form { width: 100%; max-width: 100%; }
}

@media (max-width: 680px) {
  .services-bento { grid-template-columns: 1fr; }
  .bento-subrow { grid-template-columns: 1fr; min-height: 0; }
  .svc-arch { min-height: 260px; border-radius: 80px; }
  .svc-row { min-height: 0; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .news-form { flex-direction: column; }
  .news-form .btn { justify-content: center; }
  .header-actions .icon-btn { display: none; }
}

/* ============================================================
   ====================  PODSTRÁNKY  ==========================
   ============================================================ */

/* ---- Hlavička: kontakty Predajňa / Eventy ---- */
.head-contact { display: flex; align-items: center; gap: 10px; }
.head-contact:hover .hc-ico { background: var(--green); color: #fff; }
.hc-ico {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--green); color: var(--green);
  display: grid; place-items: center; transition: all .25s; flex-shrink: 0;
}
.hc-text { display: flex; flex-direction: column; line-height: 1.25; }
.hc-text b { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hc-text span { font-size: 14px; color: var(--ink); font-weight: 500; }

/* ---- Page hero ---- */
.page-hero {
  background: radial-gradient(120% 130% at 50% -25%, var(--cream-2), var(--cream) 62%);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 66px 0 56px;
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: clamp(38px, 5vw, 60px); color: var(--ink); line-height: 1.05;
}
.page-hero .lead { max-width: 580px; margin: 18px auto 0; font-size: 15px; }
.breadcrumb { margin-top: 20px; font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb i { margin: 0 8px; font-style: normal; }

.page-section { padding: 80px 0; }
.page-section.tight { padding: 60px 0; }
.lead-center { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.sec-title { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: clamp(28px,3.4vw,40px); color: var(--ink); line-height: 1.1; }
.mt-sm { margin-top: 14px; }

/* ---- Služby: zoznam (zig-zag) ---- */
.svc-list { display: flex; flex-direction: column; gap: 50px; }
.svc-rowitem { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.svc-rowitem:nth-child(even) .svc-rowitem-img { order: 2; }
.svc-rowitem-img { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; }
.svc-rowitem-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.svc-rowitem:hover .svc-rowitem-img img { transform: scale(1.04); }
.svc-rowitem .svc-icon { margin-bottom: 16px; }
.svc-rowitem h2 { font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 600; color: var(--ink); margin-bottom: 13px; }
.svc-rowitem p { margin-bottom: 18px; }
.feature-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.feature-list li { font-size: 13.5px; display: flex; align-items: flex-start; gap: 10px; color: var(--body); }
.feature-list li::before { content: "\2766"; color: var(--green); font-size: 13px; line-height: 1.5; }

/* ---- Služba: detail ---- */
.detail-hero-img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: 18px; }
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 46px; align-items: start; }
.detail-main h2 { font-family: "Cormorant Garamond", serif; font-size: 28px; color: var(--ink); font-weight: 600; margin: 30px 0 16px; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main p { margin-bottom: 16px; }
.detail-aside { background: #f1ebe1; border-radius: 18px; padding: 30px 28px; position: sticky; top: 110px; }
.detail-aside h3 { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--ink); margin-bottom: 14px; }
.detail-aside .price { font-size: 30px; color: var(--green); font-weight: 600; font-family: "Cormorant Garamond", serif; margin-bottom: 6px; }
.detail-aside .btn { width: 100%; justify-content: center; }
.steps { display: flex; flex-direction: column; gap: 18px; }
.step { display: flex; gap: 16px; }
.step-num { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-family: "Cormorant Garamond", serif; font-size: 18px; }
.step h4 { font-size: 15px; color: var(--ink); margin-bottom: 3px; }
.step p { font-size: 13px; margin: 0; }
.detail-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.detail-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.detail-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 54px; border-top: 1px solid var(--line); padding-top: 26px; }
.detail-nav a { font-size: 13px; color: var(--ink); display: flex; gap: 8px; align-items: center; }
.detail-nav a:hover { color: var(--green); }
.detail-nav a.mid { color: var(--muted); letter-spacing: .1em; text-transform: uppercase; font-size: 12px; }

/* ---- Referencie ---- */
.ref-featured { background: #4e5742; color: #f1ede3; border-radius: 20px; padding: 54px 48px; text-align: center; margin-bottom: 50px; }
.ref-featured .stars { margin-bottom: 18px; }
.ref-featured .quote { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(22px, 3vw, 30px); line-height: 1.42; max-width: 800px; margin: 0 auto 22px; color: #f6f2e8; }
.ref-featured .ref-name { color: #fff; }
.ref-featured .ref-event { color: rgba(241,237,227,.72); }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ref-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ref-card-img { aspect-ratio: 3/2; overflow: hidden; }
.ref-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.ref-card:hover .ref-card-img img { transform: scale(1.05); }
.ref-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.stars { color: #c9a24b; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.ref-card-body .quote { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: var(--ink); line-height: 1.36; margin-bottom: 16px; }
.ref-meta { margin-top: auto; }
.ref-name { font-weight: 600; color: var(--ink); font-size: 14px; }
.ref-event { font-size: 12px; color: var(--muted); letter-spacing: .03em; }
.read-more { margin-top: 14px; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--green); display: inline-flex; gap: 6px; align-items: center; }
.ref-detail-quote { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: clamp(24px, 3.2vw, 34px); color: var(--ink); line-height: 1.4; text-align: center; max-width: 820px; margin: 0 auto; }

/* ---- Predajňa ---- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px 26px; text-align: center; transition: transform .3s, box-shadow .3s; }
.offer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.offer-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.offer-card .svc-icon { margin: 0 auto 16px; }
.offer-card h3 { font-family: "Cormorant Garamond", serif; font-size: 21px; color: var(--ink); margin-bottom: 10px; }
.offer-card p { font-size: 13px; }
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 14px; }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 500; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today td { color: var(--green); font-weight: 600; }

/* ---- Mapa placeholder ---- */
.map-ph {
  border-radius: 18px; overflow: hidden; min-height: 320px; position: relative;
  background:
    linear-gradient(135deg, rgba(94,107,79,.12), rgba(241,221,212,.55)),
    repeating-linear-gradient(0deg, rgba(94,107,79,.07) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(90deg, rgba(94,107,79,.07) 0 1px, transparent 1px 30px),
    #eef0e8;
  display: grid; place-items: center; text-align: center;
}
.map-ph .pin { font-size: 34px; line-height: 1; }
.map-ph .map-addr { background: #fff; padding: 11px 20px; border-radius: 999px; box-shadow: var(--shadow); font-size: 13px; color: var(--ink); margin-top: 12px; display: inline-block; }

/* ---- Kontakt ---- */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-item .svc-icon { width: 44px; height: 44px; margin: 0; }
.ci-item b { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ci-item span, .ci-item a { font-size: 14.5px; color: var(--ink); }
.ci-item a:hover { color: var(--green); }
.contact-form { background: #f1ebe1; border-radius: 18px; padding: 36px 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: .05em; color: var(--ink); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); background: #fff; border-radius: 8px;
  padding: 13px 15px; font-family: inherit; font-size: 14px; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12px; color: var(--body); margin-top: 8px; }

/* ---- CTA band ---- */
.cta-band { background: #4e5742; color: #f1ede3; text-align: center; border-radius: 20px; padding: 58px 40px; }
.cta-band .ornament { text-align: center; margin: 0 auto 12px; color: #cdd3bf; }
.cta-band h2 { font-family: "Cormorant Garamond", serif; font-weight: 500; font-size: clamp(28px, 3.4vw, 42px); color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(241,237,227,.82); max-width: 540px; margin: 0 auto 26px; }
.cta-band .btn-primary { background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: #f1ede3; }
.cta-band .btn-outline { color: #fff; border-color: rgba(241,237,227,.6); }
.cta-band .btn-outline:hover { background: #fff; color: var(--ink); }

/* ---- Podstránky: responsive ---- */
@media (max-width: 1180px) {
  .hc-text { display: none; }
}
@media (max-width: 980px) {
  .svc-rowitem { grid-template-columns: 1fr; gap: 22px; }
  .svc-rowitem:nth-child(even) .svc-rowitem-img { order: 0; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .ref-grid, .offer-grid, .offer-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .info-split, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .ref-grid, .offer-grid, .offer-grid.cols-4, .detail-gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-actions .head-contact { display: none; }
  .detail-nav { flex-direction: column; align-items: flex-start; gap: 12px; }
}
