/* ANNY studio — self-contained stylesheet (no external fonts, no CDN).
   Compatible with CSP: default-src 'self'; style-src 'self'.
   Palette: clean/editorial — white paper, warm gray, near-black ink. */

:root {
  --paper: #ffffff;
  --mist: #f6f5f4;
  --mist-2: #eceae8;
  --line: #e2dfdc;

  --ink: #16181a;
  --ink-2: #3a3d40;
  --muted: #6b7078;
  --muted-2: #8b9096;

  /* Jediná farebná výnimka na celom webe — len pre stavy v rezervačnom
     kalendári (voľné/obsadené/obed), kde je farba potrebná na rýchle
     odlíšenie. Zvyšok webu ostáva zámerne čiernobielo-sivý (viď BRAND.md). */
  --cal-free-bg: #eef4ef;
  --cal-free-border: #c9ddcd;
  --cal-free-ink: #2f5b3f;
  --cal-free-solid: #3f6b52;
  --cal-lunch-bg: #f6ede0;
  --cal-lunch-border: #e3cfa9;
  --cal-lunch-ink: #8a6a37;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(22, 24, 26, .05), 0 6px 16px rgba(22, 24, 26, .05);
  --shadow-md: 0 2px 6px rgba(22, 24, 26, .06), 0 18px 44px rgba(22, 24, 26, .1);
  --wrap: 1140px;
}

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

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.62;
}

img, svg { max-width: 100%; }

h1, h2, h3 {
  margin: 0 0 .6em;
  line-height: 1.14;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 4vw, 2.15rem); }
h3 { font-size: 1.12rem; }

p { margin: 0 0 1rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

@media (min-width: 700px) {
  .wrap { padding: 0 32px; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: .75rem 1.1rem; border-radius: 0 0 var(--radius-sm) 0; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2.5px solid var(--ink); outline-offset: 2px; border-radius: 3px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .85rem 1.6rem;
  border: 1.5px solid transparent; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-primary:disabled { background: var(--muted-2); cursor: not-allowed; }

.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-lg { min-height: 54px; padding: 1rem 2rem; font-size: 1.02rem; }
.btn-sm { min-height: 40px; padding: .5rem 1.15rem; font-size: .92rem; }
.btn-block { display: flex; width: 100%; }
.btn:active { transform: translateY(1px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px; padding-top: .6rem; padding-bottom: .6rem;
}

.brand { text-decoration: none; color: var(--ink); display: flex; align-items: center; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-name { font-size: 1.24rem; font-weight: 600; letter-spacing: .01em; }
.brand-name-light { font-weight: 400; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav .btn { white-space: nowrap; }
.site-nav > a:not(.btn) {
  display: none; color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem;
}
.site-nav > a:not(.btn):hover { color: var(--ink); }

@media (min-width: 900px) {
  .site-nav > a:not(.btn) { display: inline; }
}

.site-nav a.nav-phone { display: none; font-weight: 600; color: var(--ink); white-space: nowrap; }

@media (min-width: 620px) {
  .site-nav a.nav-phone { display: inline; }
}

.nav-social { display: none; align-items: center; gap: .7rem; }
.nav-social a { color: var(--muted); }
.nav-social a:hover { color: var(--ink); }
@media (min-width: 900px) {
  .nav-social { display: inline-flex; }
}

/* ---------- Hero ---------- */

.hero { padding: 4.5rem 0 4rem; border-bottom: 1px solid var(--line); }

.hero-grid { display: grid; gap: 2.4rem; align-items: center; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

.hero-inner { max-width: 62ch; }

.hero-media {
  border-radius: var(--radius); overflow: hidden; order: -1;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 860px) {
  .hero-media { order: 0; }
}

.eyebrow {
  margin: 0 0 1.1rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.eyebrow-dark { color: var(--muted); }

.hero h1 { margin-bottom: .45em; }

.lead { font-size: clamp(1.05rem, 2.1vw, 1.2rem); color: var(--muted); max-width: 46ch; }

.hero-actions { display: flex; flex-direction: column; gap: .8rem; margin: 1.9rem 0 1.6rem; }

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .btn { flex: 0 0 auto; }
}

.hero-phone { font-size: .95rem; color: var(--muted); }
.hero-phone a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sections ---------- */

.section { padding: 4rem 0; }
main > section[id] { scroll-margin-top: 84px; }

@media (min-width: 760px) {
  .section { padding: 5.5rem 0; }
}

.section-tint { background: var(--mist); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: #b7bcc2; }

.section-title { max-width: 26ch; }

.section-lead { font-size: 1.05rem; max-width: 50ch; margin-bottom: 2rem; }
.section-lead-light { color: #c7cbd0; }

/* ---------- Why-us facts ---------- */

.grid-4 { display: grid; gap: 1.1rem; margin-top: 2.25rem; }

@media (min-width: 700px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
}

.studio-photo {
  margin: 2.25rem 0 0; border-radius: var(--radius); overflow: hidden;
  position: relative; box-shadow: var(--shadow-sm);
}
.studio-photo img { width: 100%; height: auto; max-height: 380px; object-fit: cover; display: block; }
.studio-photo figcaption {
  position: absolute; left: 0; bottom: 0; margin: 0; padding: .7rem 1.1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent);
  color: #fff; font-size: .88rem; font-weight: 600;
}

.fact-card {
  padding: 1.6rem 1.4rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.fact-num { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; color: var(--muted-2); margin-bottom: .9rem; }
.fact-card h3 { font-size: 1.02rem; margin-bottom: .4em; }
.fact-card p { font-size: .93rem; margin: 0; }

/* ---------- Treatment cards ---------- */

.grid-3 { display: grid; gap: 1.1rem; margin-top: 2.25rem; }

@media (min-width: 820px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}

.treatment-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.treatment-photo {
  display: block; width: calc(100% + 3rem); height: 160px; object-fit: cover;
  margin: -1.6rem -1.5rem 1.2rem; border-radius: var(--radius) var(--radius) 0 0;
}
.treatment-cat {
  margin: 0 0 .5rem; font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2);
}
.treatment-card h3 { margin-bottom: .4em; }
.treatment-desc { font-size: .93rem; margin-bottom: 1.1rem; }
.treatment-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 0; padding-top: .9rem; border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--muted);
}
.treatment-price { font-weight: 600; font-size: 1.05rem; color: var(--ink); }

.treatment-add { margin-top: 1rem; width: 100%; }
.treatment-add.is-added,
.price-add.is-added { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- Price accordion ---------- */

.price-accordion { margin-top: 3rem; display: grid; gap: .8rem; }

.price-group {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0; overflow: hidden;
}

.price-group summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem;
  font-weight: 600; color: var(--ink); font-size: 1.02rem;
  display: flex; justify-content: space-between; align-items: center;
}
.price-group summary::-webkit-details-marker { display: none; }
.price-group summary::after { content: "+"; font-size: 1.3rem; color: var(--muted); font-weight: 400; }
.price-group[open] summary::after { content: "−"; }
.price-group summary:hover { background: var(--mist); }

.price-table { width: 100%; border-collapse: collapse; padding: 0 1.4rem 1.2rem; }
.price-table tbody { display: block; padding: 0 1.4rem 1.2rem; }
.price-table tr { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-top: 1px solid var(--mist-2); font-size: .93rem; }
.price-table tr:first-child { border-top: none; }
.price-table td:first-child { color: var(--ink-2); }
.price-table td:last-child.has-add { display: flex; align-items: center; gap: .6rem; }
.price-add {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-size: 1rem; line-height: 1;
  cursor: pointer; flex: 0 0 auto;
}
.price-add:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.price-table td:last-child { color: var(--ink); font-weight: 600; white-space: nowrap; }

.price-note { padding: 0 1.4rem 1.2rem; font-size: .85rem; color: var(--muted-2); margin: 0; }

.price-fineprint { margin-top: 1.4rem; font-size: .86rem; color: var(--muted-2); }

/* ---------- Booking flow ---------- */

.booking { margin-top: 2.25rem; display: grid; gap: 1.5rem; }

.booking-step {
  border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem; margin: 0; background: rgba(255, 255, 255, .04);
  transition: opacity .15s ease;
}

@media (min-width: 700px) {
  .booking-step { padding: 2rem; }
}

.booking-step[disabled] { opacity: .4; }
.booking-step[disabled] * { pointer-events: none; }

.booking-step legend {
  display: flex; align-items: center; gap: .7rem; padding: 0 0 1.2rem;
  font-weight: 600; font-size: 1.05rem; color: #fff;
}

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: #fff; color: var(--ink);
  font-size: .88rem; font-weight: 700; flex: 0 0 auto;
}

.booking-treatments { display: grid; gap: .6rem; }

@media (min-width: 700px) {
  .booking-treatments { grid-template-columns: 1fr 1fr; }
}

.treatment-check {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .8rem .9rem; border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-sm);
  cursor: pointer; font-size: .92rem; color: #e7e8ea;
}
.treatment-check:hover { border-color: rgba(255, 255, 255, .4); }
.treatment-check input { margin-top: .2rem; width: 18px; height: 18px; flex: 0 0 auto; }
.treatment-check .tc-name { display: block; font-weight: 500; color: #fff; }
.treatment-check .tc-price { display: block; font-size: .84rem; color: #b7bcc2; }

.staff-options { display: grid; gap: .6rem; }

@media (min-width: 600px) {
  .staff-options { grid-template-columns: repeat(3, 1fr); }
}

.staff-option {
  display: flex; align-items: center; gap: .6rem;
  padding: .9rem 1rem; border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius-sm);
  cursor: pointer; font-size: .93rem; color: #e7e8ea;
}
.staff-option input { width: 18px; height: 18px; flex: 0 0 auto; }
.staff-option em { color: #a7abb1; font-style: normal; font-size: .82rem; display: block; }

.staff-avatar {
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: #e7e8ea;
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
}
.staff-avatar-any { background: rgba(255, 255, 255, .07); color: #b7bcc2; }

.field-hint { font-size: .84rem; color: #a7abb1; margin-top: .9rem; }

.calendar-demo { display: grid; gap: 1rem; }

.calendar-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
  flex-wrap: wrap;
}
.calendar-nav {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .28);
  background: transparent; color: #fff; font-size: 1rem; cursor: pointer;
}
.calendar-nav:hover { background: rgba(255, 255, 255, .12); }
.calendar-nav:disabled { opacity: .35; cursor: not-allowed; }
.calendar-nav:disabled:hover { background: transparent; }
.week-title { font-weight: 600; color: #fff; font-size: .95rem; text-align: center; }

.calendar-legend {
  display: flex; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: #b7bcc2;
}
.calendar-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.calendar-legend i {
  display: inline-block; width: 12px; height: 12px; border-radius: 3px; background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .2);
}
.calendar-legend .legend-busy i { background: transparent; border-color: #6a6e73; }
.calendar-legend .legend-lunch i { background: rgba(255, 255, 255, .28); }

/* Klikacie záložky dní — skryté na širšej obrazovke, kde je vidieť celý
   týždeň naraz (viď .calendar-days-grid nižšie). Na užšej obrazovke sa nimi
   prepína jeden aktívny deň. */
.calendar-day-tabs { display: none; }

/* Celý týždeň naraz ako stĺpce vedľa seba na širšej obrazovke; na užšej
   obrazovke sa zobrazuje len jeden (aktívny) deň, prepínaný cez záložky. */
.calendar-days-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem;
}
@media (max-width: 780px) {
  .calendar-day-tabs {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: .4rem;
    margin-bottom: .2rem;
  }
  .calendar-day-tab {
    display: grid; gap: .1rem; justify-items: center; padding: .5rem .3rem;
    border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--paper); cursor: pointer;
  }
  .calendar-day-tab.is-active { background: var(--ink); border-color: var(--ink); }
  .calendar-day-tab.is-active .cdt-name,
  .calendar-day-tab.is-active .cdt-date,
  .calendar-day-tab.is-active .cdt-today { color: #fff; }
  .calendar-day-tab .cdt-name { font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
  .calendar-day-tab .cdt-date { font-size: .82rem; font-weight: 700; color: var(--ink); }
  .calendar-day-tab .cdt-today { font-size: .58rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; color: var(--muted); }

  .calendar-days-grid { grid-template-columns: 1fr; }
  .calendar-day-col { display: none; }
  .calendar-day-col.is-active { display: block; }
}

.calendar-day-col {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .8rem .6rem; background: var(--paper);
}
.calendar-day-head {
  text-align: center; padding-bottom: .6rem; margin-bottom: .6rem;
  border-bottom: 1px solid var(--line); display: grid; gap: .15rem;
}
.calendar-day-head .cdt-name { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.calendar-day-head .cdt-date { font-size: .98rem; font-weight: 700; color: var(--ink); }
.calendar-day-head .cdt-today { font-size: .68rem; color: var(--ink); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

.calendar-slots { display: grid; gap: .4rem; }

.slot {
  display: block; width: 100%; padding: .6rem .5rem; border-radius: 6px; border: 1px solid transparent;
  background: rgba(255, 255, 255, .07); color: #e7e8ea; font-size: .84rem; text-align: center; cursor: pointer;
}
.slot:hover { background: rgba(255, 255, 255, .15); }
.slot[aria-pressed="true"] { background: #fff; color: var(--ink); font-weight: 700; }
.slot[disabled] { background: transparent; color: #6a6e73; text-decoration: line-through; cursor: not-allowed; }
.slot.slot-lunch { background: rgba(255, 255, 255, .28); color: #b7bcc2; text-decoration: none; cursor: not-allowed; font-weight: 500; }

.booking .field-grid { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .booking .field-grid { grid-template-columns: 1fr 1fr; } }

.booking .field { display: grid; gap: .4rem; margin: 0 0 1.1rem; }
.booking .field label { font-size: .88rem; font-weight: 600; color: #fff; }

.booking .field input,
.booking .field textarea {
  width: 100%; min-height: 48px; padding: .75rem .85rem; font: inherit; font-size: .98rem;
  color: var(--ink); background: #fff; border: 1.5px solid transparent; border-radius: var(--radius-sm);
}
.booking .field textarea { min-height: 90px; resize: vertical; }
.booking .field input:focus, .booking .field textarea:focus { outline: none; box-shadow: 0 0 0 3px rgba(255, 255, 255, .5); }

.field-consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.field-consent input[type="checkbox"] { width: 20px; height: 20px; margin: .18rem 0 0; }
.field-consent label { font-size: .87rem; font-weight: 400; color: #d5d7da; }

.booking-summary {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg); padding: 1.5rem 1.6rem;
}
.summary-line { display: flex; justify-content: space-between; margin: 0 0 .6rem; font-size: .95rem; color: var(--muted); }
.summary-line:last-child { margin-bottom: 0; }
.summary-total { padding-top: .8rem; border-top: 1px solid var(--line); font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.summary-total span:last-child { color: var(--ink); }

.form-success {
  padding: 2rem 1.6rem; text-align: center; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  margin-top: 1.5rem;
}
.form-success:focus { outline: none; }
.form-success:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.form-success-mark {
  display: flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  margin: 0 auto 1rem; font-size: 1.5rem; font-weight: 700; color: #fff; background: var(--ink); border-radius: 50%;
}
.form-success h3 { font-size: 1.25rem; margin-bottom: .5em; }
.form-success p { margin: 0 auto; max-width: 40ch; }
.gcal-row {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: 1.1rem auto 0;
}
.gcal-dismiss {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--muted); font-size: .85rem; line-height: 1;
  cursor: pointer; flex: 0 0 auto;
}
.gcal-dismiss:hover { background: var(--mist); color: var(--ink); }
.demo-warning {
  margin-top: 1.2rem !important; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-size: .85rem; color: var(--muted-2);
}

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 1rem; margin-top: 1.8rem; }

@media (min-width: 860px) {
  .faq { grid-template-columns: 1fr 1fr; gap: 1.1rem 2.2rem; }
}

.faq-item { padding: 1.35rem 1.4rem; background: var(--mist); border: 1px solid var(--mist-2); border-radius: var(--radius); }
.faq-item h3 { margin-bottom: .5em; font-size: 1.02rem; color: var(--ink); }
.faq-item p { margin: 0; font-size: .95rem; }

.label-optional { margin-left: .4rem; font-size: .78rem; font-weight: 500; color: var(--muted-2); }

/* ---------- Contact / map ---------- */

.contact-layout { display: grid; gap: 1.4rem; margin-top: 1.8rem; }

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 2rem; align-items: start; }
}

.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.contact-row { display: grid; gap: .2rem; margin: 0 0 1.1rem; }
.contact-label { font-size: .76rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.contact-value { font-size: .97rem; color: var(--ink-2); line-height: 1.55; }
a.contact-value { text-decoration: none; }
a.contact-value:hover { text-decoration: underline; }
.contact-strong { font-weight: 600; color: var(--ink); }

.contact-card .btn-outline { margin-top: .4rem; }

.contact-map { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); box-shadow: var(--shadow-sm); }
.contact-map iframe { display: block; width: 100%; height: 320px; border: 0; }

@media (min-width: 900px) {
  .contact-map iframe { height: 100%; min-height: 420px; }
}

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: #c7cbd0; padding: 2.5rem 0 1.75rem; font-size: .92rem; }

.footer-inner { display: grid; gap: 2rem; }

@media (min-width: 820px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; align-items: start; }
}

.footer-heading { margin: 0 0 .7rem; color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.footer-brand { margin: 0 0 .4rem; color: #fff; font-size: 1.1rem; }
.footer-line { margin: 0; color: #a7abb1; }

.footer-address { font-style: normal; color: #c7cbd0; line-height: 1.6; }
.footer-social { display: flex; gap: .8rem; margin-top: .9rem; }
.footer-social a { display: inline-flex; color: #c7cbd0; }
.footer-social a:hover { color: #fff; }

.contact-link { display: block; padding: .15rem 0; color: #e7e8ea; text-decoration: none; font-weight: 500; }
.contact-link:hover { color: #fff; text-decoration: underline; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.footer-nav a { color: #c7cbd0; text-decoration: none; font-weight: 500; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: #8b9096;
}
.footer-bottom p { margin: 0; color: inherit; }

/* ---------- Booking section: light theme (matches NIVORA reference,
   not the site-wide dark-section pattern used elsewhere) ---------- */
#rezervacia .section-lead-light { color: var(--muted); }

#rezervacia .booking-step {
  border: 1px solid var(--line); background: var(--paper);
  box-shadow: var(--shadow-sm);
}
#rezervacia .booking-step legend { color: var(--ink); }
#rezervacia .step-num { background: var(--ink); color: #fff; }

#rezervacia .treatment-check {
  border: 1px solid var(--line); color: var(--ink-2);
}
#rezervacia .treatment-check:hover { border-color: var(--muted); }
#rezervacia .treatment-check .tc-name { color: var(--ink); }
#rezervacia .treatment-check .tc-price { color: var(--muted); }

#rezervacia .staff-option { border: 1px solid var(--line); color: var(--ink-2); }
#rezervacia .staff-option em { color: var(--muted-2); }
#rezervacia .staff-avatar { background: var(--mist-2); color: var(--ink-2); }
#rezervacia .staff-avatar-any { background: var(--mist); color: var(--muted); }

#rezervacia .field-hint { color: var(--muted-2); }

#rezervacia .calendar-nav {
  border: 1px solid var(--line); color: var(--ink);
}
#rezervacia .calendar-nav:hover { background: var(--mist); }
#rezervacia .week-title { color: var(--ink); }

#rezervacia .calendar-legend { color: var(--muted); }
#rezervacia .calendar-legend i { background: var(--cal-free-bg); border: 1px solid var(--cal-free-border); }
#rezervacia .calendar-legend .legend-busy i { background: var(--mist); border-color: var(--line); }
#rezervacia .calendar-legend .legend-lunch i { background: var(--cal-lunch-bg); border-color: var(--cal-lunch-border); }

#rezervacia .slot {
  border: 1px solid var(--cal-free-border); background: var(--cal-free-bg); color: var(--cal-free-ink);
}
#rezervacia .slot:hover { background: #e3ece5; border-color: var(--cal-free-solid); }
#rezervacia .slot[aria-pressed="true"] { background: var(--cal-free-solid); border-color: var(--cal-free-solid); color: #fff; }
#rezervacia .slot[disabled] { background: var(--mist); border-color: var(--line); color: var(--muted-2); }
#rezervacia .slot.slot-lunch { background: var(--cal-lunch-bg); border-color: var(--cal-lunch-border); color: var(--cal-lunch-ink); }

#rezervacia .booking .field label { color: var(--ink); }
#rezervacia .booking .field input,
#rezervacia .booking .field textarea {
  background: var(--paper); border: 1.5px solid var(--line); color: var(--ink);
}
#rezervacia .booking .field input:focus,
#rezervacia .booking .field textarea:focus { box-shadow: 0 0 0 3px rgba(22, 24, 26, .12); }

#rezervacia .field-consent label { color: var(--ink-2); }
