/* ========================================
   MASÁŽE OD SRDCE — Milan Morávek
   Sage/cream paleta, větší font pro starší cílovku
   ======================================== */

:root {
  --cream:        #f6f1e6;
  --cream-2:      #ece6d5;
  --paper:        #fbf8f1;
  --sage:         #6b7d6a;
  --sage-2:       #4f5f50;
  --sage-3:       #3a4a3f;
  --sand:         #c9b793;
  --sand-2:       #b09e76;
  --warm:         #b76d4e;
  --warm-soft:    #d89578;
  --ink:          #1f241f;
  --ink-2:        #3b403a;
  --muted:        #6e7570;
  --line:         #d8cfc1;
  --line-2:       #e5dfd0;
  --shadow-sm:    0 2px 12px rgba(58,74,63,0.08);
  --shadow-md:    0 10px 30px rgba(58,74,63,0.12);
  --shadow-lg:    0 20px 50px rgba(58,74,63,0.18);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--sage-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--warm); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ================ TYPOGRAFIE ================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--sage-3);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; color: var(--sage-3); }
p { margin-bottom: 18px; }
strong { font-weight: 600; color: var(--sage-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sage-2);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--sage);
}
.lead {
  font-size: 1.2rem; color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ================ LAYOUT ================ */
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
}
.wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: flex-start;
}
.wrap-single {
  display: block;
  max-width: 880px;
  margin: 0 auto;
}
.content {
  min-width: 0;
}

/* ================ HEADER + NAV ================ */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--sage-3);
  line-height: 1.1;
}
.brand img {
  width: 78px; height: 78px;
  object-fit: contain;
  display: block;
}
.brand-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
  margin-top: 2px;
}
nav.primary {
  display: flex;
}
nav.primary ul {
  display: flex; flex-wrap: wrap;
  gap: 4px;
}
nav.primary a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
nav.primary a:hover {
  background: var(--cream-2);
  color: var(--sage-3);
}
nav.primary a.active {
  background: var(--sage-3);
  color: var(--cream);
}
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  background: transparent;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--sage-3);
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 1rem; font-weight: 600;
  border-radius: 999px;
  transition: all .25s;
  text-align: center;
}
.btn-primary {
  background: var(--sage-3);
  color: var(--cream);
  border: 1px solid var(--sage-3);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-3);
  border: 1px solid var(--sage-2);
}
.btn-secondary:hover {
  background: var(--sage-3);
  color: var(--cream);
}
.btn-warm {
  background: var(--warm);
  color: white;
  border: 1px solid var(--warm);
}
.btn-warm:hover {
  background: var(--sage-3);
  border-color: var(--sage-3);
}

/* ================ HERO ================ */
.hero {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--warm);
}
.hero-text .lead {
  font-size: 1.18rem;
  margin-top: 22px;
  color: var(--ink-2);
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 620px;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,74,63,0.0) 50%, rgba(58,74,63,0.35) 100%);
  pointer-events: none;
}
.hero-quote {
  margin-top: 26px;
  padding: 24px 28px;
  background: var(--cream-2);
  border-left: 4px solid var(--warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--sage-3);
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 32px;
}

/* ================ SECTIONS ================ */
section {
  padding: 70px 0;
}
section.alt {
  background: var(--paper);
}
section.dark {
  background: var(--sage-3);
  color: var(--cream);
}
section.dark h2, section.dark h3, section.dark h4 { color: var(--cream); }
section.dark .eyebrow { color: var(--sand); }
section.dark .eyebrow::before { background: var(--sand); }

/* ================ SIDEBAR (sticky kontakt + otv. doba) ================ */
aside.contact-side {
  position: sticky;
  top: 110px;
  align-self: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
aside.contact-side h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--sage-3);
}
aside.contact-side .contact-row {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
aside.contact-side .contact-row:last-child { border-bottom: none; padding-bottom: 0; }
aside.contact-side .contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
  font-weight: 600;
}
aside.contact-side .contact-val {
  font-size: 1.05rem;
  color: var(--ink);
}
aside.contact-side .contact-val a {
  color: var(--sage-3);
  font-weight: 600;
}
aside.contact-side .contact-val a:hover { color: var(--warm); }
aside.contact-side ul.opening li {
  display: flex; justify-content: space-between;
  padding: 4px 0;
  font-size: 0.98rem;
}
aside.contact-side ul.opening li.note {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}
aside.contact-side .side-cta {
  margin-top: 22px;
  display: block;
  text-align: center;
}

/* ================ CARDS / BLOCKS ================ */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  margin-bottom: 22px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.service-card:hover {
  border-color: var(--sand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card h3 {
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--sage-3);
}
.service-card p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
}

.pricelist {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricelist th, .pricelist td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
  font-size: 1.02rem;
}
.pricelist th {
  background: var(--sage-3);
  color: var(--cream);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricelist td:nth-child(2) {
  text-align: center;
  color: var(--muted);
  white-space: nowrap;
}
.pricelist td:nth-child(3) {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--warm);
  white-space: nowrap;
}
.pricelist tbody tr:last-child td { border-bottom: none; }
.pricelist tbody tr:hover { background: var(--cream-2); }
.pricelist caption {
  caption-side: top;
  padding: 18px 20px;
  background: var(--cream-2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--sage-3);
  text-align: left;
  font-weight: 600;
}

.callout {
  background: var(--cream-2);
  border-left: 4px solid var(--sand);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.callout h4 {
  margin-bottom: 10px;
  color: var(--sage-3);
}
.callout p:last-child { margin-bottom: 0; }

ol.steps, ul.checks {
  padding-left: 0;
  margin: 22px 0;
}
ol.steps li, ul.checks li {
  position: relative;
  padding: 10px 0 10px 42px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-2);
}
ol.steps { counter-reset: step; }
ol.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 10px;
  width: 28px; height: 28px;
  background: var(--sage-3);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.95rem;
}
ul.checks li::before {
  content: '✓';
  position: absolute;
  left: 4px; top: 10px;
  width: 24px; height: 24px;
  color: var(--warm);
  font-weight: 700;
  font-size: 1.15rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.gallery img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* Single featured photo (figure with caption) */
.feature-photo {
  margin: 30px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--paper);
}
.feature-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.feature-photo--portrait img { aspect-ratio: 4/3; }
.feature-photo--natural img { aspect-ratio: auto; height: auto; object-fit: contain; }
.feature-photo figcaption {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--ink-2);
  font-style: italic;
  border-top: 1px solid var(--line);
}

/* Side-by-side text + photo */
.text-photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}
.text-photo--reverse { direction: rtl; }
.text-photo--reverse > * { direction: ltr; }
.text-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 880px) {
  .text-photo { grid-template-columns: 1fr; }
}

/* ================ REVIEWS ================ */
.review-box {
  background: var(--cream-2);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 28px 0;
}
.review-box h3 {
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.review-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 20px;
}
.review-stars {
  font-size: 1.6rem;
  color: var(--warm);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.rating-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; margin: 18px 0 28px;
}
.rating-badge {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 180px;
}
.rating-badge .source {
  font-size: 0.85rem; color: var(--ink-2);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 4px;
}
.rating-badge .score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600;
  color: var(--warm);
}
.rating-badge .score-stars { color: var(--warm); margin-left: 4px; }
.rating-badge .count { font-size: 0.85rem; color: var(--ink-2); margin-top: 2px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin: 22px 0;
  text-align: left;
}
@media (max-width: 880px) {
  .review-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.review-card .stars {
  color: var(--warm); font-size: 1.05rem;
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.review-card .text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--ink); line-height: 1.55;
  margin-bottom: 12px;
}
.review-card .author {
  font-size: 0.9rem; color: var(--ink-2);
  font-weight: 500;
}
.review-card .source-tag {
  font-size: 0.75rem; color: var(--ink-2);
  margin-left: 6px; opacity: 0.7;
}
.review-card.hidden-extra { display: none; }
.review-grid.expanded .review-card.hidden-extra { display: block; }

/* ================ FORM (Rezervace) ================ */
.reserve-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.reserve-form h3 {
  margin-bottom: 8px;
  color: var(--sage-3);
}
.reserve-form .form-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label,
.form-row label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-row input,
.form-row select {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 1.02rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--sage-2);
  box-shadow: 0 0 0 3px rgba(107,125,106,0.18);
}
.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.form-radio-group label {
  display: block;
  padding: 16px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: all .2s;
  margin-bottom: 0;
}
.form-radio-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form-radio-group input[type="radio"]:checked + label,
.form-radio-group label:has(input:checked) {
  background: var(--sage-3);
  color: var(--cream);
  border-color: var(--sage-3);
}
.form-msg {
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-msg.ok {
  background: rgba(107,125,106,0.12);
  color: var(--sage-3);
  border-left: 3px solid var(--sage-2);
}
.form-msg.err {
  background: rgba(183,109,78,0.12);
  color: var(--warm);
  border-left: 3px solid var(--warm);
}

/* ================ FOOTER ================ */
footer.site {
  background: var(--sage-3);
  color: var(--cream);
  padding: 56px 0 28px;
  margin-top: 70px;
}
footer.site h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
footer.site .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
footer.site p, footer.site a, footer.site li {
  color: rgba(246,241,230,0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}
footer.site a:hover { color: var(--sand); }
footer.site li { margin-bottom: 8px; }
footer.site .footer-brand {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
}
footer.site .footer-brand img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  padding: 4px;
}
footer.site .footer-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}
footer.site .footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(246,241,230,0.16);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.84rem;
  color: rgba(246,241,230,0.5);
}

/* ================ PAGE HERO (subpages) ================ */
.page-hero {
  padding: 60px 0 40px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.4vw, 3rem);
}
.page-hero .breadcrumb {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.page-hero .breadcrumb a { color: var(--sage-2); }
.page-hero .lead { margin-bottom: 0; font-size: 1.1rem; }

/* ================ RESPONSIVE ================ */
@media (max-width: 980px) {
  body { font-size: 17px; }
  .wrap { grid-template-columns: 1fr; gap: 30px; }
  aside.contact-side { position: static; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .hero-image { aspect-ratio: 4/3; max-height: 420px; }
  .nav-inner { flex-wrap: wrap; }
  nav.primary { display: none; width: 100%; margin-top: 12px; }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; gap: 4px; }
  nav.primary a { padding: 12px 14px; }
  .nav-burger { display: flex; }
  footer.site .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 20px; }
  .brand { font-size: 1.15rem; }
  .brand img { width: 48px; height: 48px; }
  .pricelist th, .pricelist td { padding: 12px 14px; font-size: 0.95rem; }
  footer.site .footer-grid { grid-template-columns: 1fr; }
  .form-radio-group { grid-template-columns: 1fr; }
}
