/* ============================================================================
   CutsByDavid — shared stylesheet
   Palette: warm near-black ("ink") for header/hero/footer, warm off-white
   ("paper") for the body of the site, brass as the single accent colour.
   ========================================================================== */

:root {
  --ink:        #191714;
  --ink-2:      #232019;
  --ink-3:      #322D24;
  --paper:      #FBF9F5;
  --paper-2:    #F3EEE5;
  --paper-3:    #E9E2D5;
  --brass:      #A97C33;
  --brass-2:    #D3A45C;
  --brass-soft: #F5EBD8;
  --text:       #242019;
  --muted:      #6E6558;
  --muted-2:    #8C8375;
  --line:       #E4DCCD;
  --line-dark:  rgba(255, 255, 255, .12);
  --green:      #3E7A4E;
  --green-soft: #E2F0E4;
  --amber:      #A9711F;
  --amber-soft: #FBEDD3;
  --red:        #9E3B32;
  --red-soft:   #F8E4E1;

  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(30, 25, 15, .05), 0 10px 30px -12px rgba(30, 25, 15, .18);
  --shadow-lg:  0 30px 70px -30px rgba(30, 25, 15, .45);

  --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --header-h: 92px;
  --maxw: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
a { color: inherit; }

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.kicker {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 .9rem;
}

.section { padding: 88px 0; }
.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.02rem; margin: 0; }

.muted { color: var(--muted); }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  padding: .82rem 1.5rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

.btn-primary { background: var(--brass); color: #fff; box-shadow: 0 8px 22px -12px rgba(169, 124, 51, .9); }
.btn-primary:hover:not(:disabled) { background: #966B2A; }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover:not(:disabled) { border-color: var(--brass); color: var(--brass); }

.btn-on-dark { background: transparent; color: #F2EDE3; border-color: rgba(255,255,255,.28); }
.btn-on-dark:hover:not(:disabled) { border-color: var(--brass-2); color: var(--brass-2); }

.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(25, 23, 20, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  color: #F3EEE4;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* The header is the customer's main signpost, so it gets the full width of
   the viewport rather than the narrower content column. */
.site-header .wrap { max-width: 1320px; }

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}
/* Holds the round CutsByDavid mark (assets/logo-mark.png): the monogram
   without the wordmark, which stays legible at header size. The green ring
   is drawn here rather than baked into the image. */
.brand-logo {
  width: 52px; height: 52px;
  flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: 0 0 0 2px #1C6B34;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass-2);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-size: 1.06rem;
  font-weight: 500;
  color: #E6E0D5;
  text-decoration: none;
  padding: .6rem 1.05rem;
  border-radius: 9px;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav a.is-current { color: var(--brass-2); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .btn { font-size: 1rem; padding: .72rem 1.5rem; }
/* Booking CTA duplicated inside the mobile menu; only one of the two is ever
   visible (see the 760px breakpoint at the bottom of this file). */
.nav-cta { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 2px;
  gap: 2px;
}
.lang-switch button {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .36rem .78rem;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #B9B1A4;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.is-active { background: var(--brass); color: #fff; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9px;
  color: #EDE7DC;
  cursor: pointer;
}

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative;
  background: var(--ink);
  color: #F5F1E9;
  padding: 108px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 82% 8%, rgba(211, 164, 92, .18), transparent 62%),
    radial-gradient(560px 380px at 8% 92%, rgba(211, 164, 92, .08), transparent 60%);
  pointer-events: none;
}
/* thin barber-pole stripe along the bottom edge — the one nod to the trade */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: repeating-linear-gradient(
    -55deg,
    var(--brass) 0 14px,
    #7E5B24 14px 28px,
    var(--paper) 28px 42px
  );
  opacity: .85;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 56px;
  align-items: center;
}
.hero h1 { color: #FCF8F1; margin-bottom: .6em; }
.hero-sub {
  font-size: 1.1rem;
  color: #CFC7B9;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.6rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 500;
  color: #D9D1C3;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  padding: .38rem .85rem;
  background: rgba(255,255,255,.04);
}
.badge .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brass-2); }

.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(4px);
}
.hero-card h3 { color: #F3EEE4; font-size: 1.02rem; margin-bottom: 1rem; }
.hours-row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: .9rem;
  padding: .48rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.1);
  color: #CFC7B9;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row.is-today { color: var(--brass-2); font-weight: 600; }
.hours-row .h-day { color: inherit; }
.hours-row .h-time { font-variant-numeric: tabular-nums; }
.hours-row.is-closed .h-time { color: var(--muted-2); }

/* ----------------------------------------------------------------- services */

.services { background: var(--paper); }
/* Short list — one column reads better than a grid and keeps the price
   column aligned, which is the whole point of a cenník. */
.service-list { display: grid; gap: 0; max-width: 640px; }
.service {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.service-main { flex: none; min-width: 0; }
.service-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.service-desc { font-size: .88rem; color: var(--muted); margin: .15rem 0 0; }
.service-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
  min-width: 20px;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.service-time { font-size: .78rem; color: var(--muted-2); display: block; text-align: right; font-weight: 400; }

/* ------------------------------------------------------------------ gallery */

.gallery { background: var(--paper-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--paper-3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:nth-child(4n+1) { aspect-ratio: 3 / 4; }
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  gap: 6px;
  color: var(--muted-2);
  font-size: .8rem;
  background:
    linear-gradient(145deg, var(--paper-3), #DCD3C3);
}
.gallery-ph span { font-family: var(--font-display); font-size: 1.4rem; color: #B9AE99; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  background: rgba(20, 18, 14, .88);
  backdrop-filter: blur(6px);
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox-inner {
  max-width: min(560px, 92vw);
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: #F3EEE4;
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .85rem;
  cursor: pointer;
}

/* -------------------------------------------------------------------- about */

.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
}
.about-text p { color: var(--muted); font-size: 1.02rem; }
.about-cards { display: grid; gap: 16px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 1rem;
}
.contact-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: .5rem 0;
  font-size: .93rem;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .c-label { color: var(--muted); }
.contact-row .c-value { font-weight: 500; text-decoration: none; }
.contact-row a.c-value:hover { color: var(--brass); }

.hours-list .hours-row { color: var(--text); border-bottom-color: var(--line); }
.hours-list .hours-row.is-today { color: var(--brass); }
.hours-list .hours-row.is-closed .h-time { color: var(--muted-2); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--paper-3);
  display: grid;
  place-items: center;
  color: var(--muted-2);
  font-size: .85rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ------------------------------------------------------------------- footer */

.site-footer {
  background: var(--ink);
  color: #B7AF9F;
  padding: 44px 0;
  font-size: .88rem;
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.site-footer a { color: #D8D0C2; text-decoration: none; }
.site-footer a:hover { color: var(--brass-2); }

/* ============================== BOOKING PAGE ============================== */

.page-head {
  background: var(--ink);
  color: #F3EEE4;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 78% 0%, rgba(211,164,92,.16), transparent 62%);
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #FCF8F1; margin-bottom: .3em; font-size: clamp(2rem, 4vw, 3rem); }
.page-head p { color: #CFC7B9; margin: 0; max-width: 52ch; }

/* Pulled up so the stepper overlaps the dark banner. .page-head is positioned,
   so this needs its own stacking context to sit ON TOP of it, not under. */
.booking-body { padding: 0 0 88px; margin-top: -40px; position: relative; z-index: 2; }
.booking-body > .wrap { max-width: 1020px; }

.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  overflow-x: auto;
}
.step {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.step .step-n {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700;
  background: var(--paper-2);
  color: var(--muted);
  flex: none;
}
.step.is-active { background: var(--ink); color: #F3EEE4; }
.step.is-active .step-n { background: var(--brass); color: #fff; }
.step.is-done { color: var(--brass); }
.step.is-done .step-n { background: var(--brass-soft); color: var(--brass); }
.step-sep { flex: 1; height: 1px; background: var(--line); min-width: 8px; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.panel + .panel { margin-top: 18px; }
.panel-title { font-size: 1.25rem; margin-bottom: 1.1rem; }

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}

/* ----------------------------------------------------------------- calendar */

.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.cal-month {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: capitalize;
}
.cal-nav { display: flex; gap: 6px; }
.cal-nav button {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 9px;
  cursor: pointer;
  color: var(--text);
  transition: border-color .18s, color .18s, background .18s;
}
.cal-nav button:hover:not(:disabled) { border-color: var(--brass); color: var(--brass); }
.cal-nav button:disabled { opacity: .35; cursor: not-allowed; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-dow {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-bottom: 6px;
}
.cal-day {
  position: relative;
  aspect-ratio: 1 / .92;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: border-color .15s, background .15s, transform .12s;
}
.cal-day:hover:not(:disabled) { border-color: var(--brass); transform: translateY(-1px); }
.cal-day .cal-n { font-size: 1.05rem; line-height: 1; }
/* "voľné 9" under the date — the count, not a colour-coded dot. */
.cal-day .cal-free {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}
.cal-day.has-free { background: var(--green-soft); border-color: #CDE3D2; }
.cal-day.has-free .cal-free { color: var(--green); }
.cal-day.has-few { background: var(--amber-soft); border-color: #EBD8B4; }
.cal-day.has-few .cal-free { color: var(--amber); }
.cal-day.is-full { background: var(--paper-2); color: var(--muted-2); }
.cal-day:disabled { cursor: not-allowed; color: #BEB6A7; background: var(--paper-2); border-color: var(--line); }
.cal-day.is-empty { border: 0; background: transparent; cursor: default; }
.cal-day.is-today::after {
  content: '';
  position: absolute; inset: 3px;
  border: 1px dashed var(--brass);
  border-radius: 7px;
  pointer-events: none;
}
.cal-day.is-selected {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #FCF8F1 !important;
  transform: none;
}
.cal-day.is-selected .cal-free { color: var(--brass-2) !important; }

.cal-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; font-size: .8rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.cal-legend i { width: 11px; height: 11px; border-radius: 4px; display: inline-block; }
.lg-free { background: var(--green-soft); border: 1px solid #CDE3D2; }
.lg-few  { background: var(--amber-soft); border: 1px solid #EBD8B4; }
.lg-full { background: var(--paper-2); border: 1px solid var(--line); }

/* -------------------------------------------------------------------- slots */

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.slot {
  padding: .7rem .4rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s, transform .12s;
}
.slot:hover:not(:disabled) { border-color: var(--brass); color: var(--brass); transform: translateY(-1px); }
.slot:disabled { background: var(--paper-2); color: #BEB6A7; cursor: not-allowed; text-decoration: line-through; }
.slot.is-selected { background: var(--ink); border-color: var(--ink); color: #FCF8F1; }
.slot small { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

.empty-state {
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  font-size: .93rem;
}

/* --------------------------------------------------------------------- form */

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .38rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .68rem .8rem;
  transition: border-color .16s, box-shadow .16s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(169,124,51,.14);
}
.field textarea { resize: vertical; min-height: 92px; }
.field.has-error input,
.field.has-error textarea { border-color: var(--red); }
.field-error { display: none; font-size: .78rem; color: var(--red); margin-top: .3rem; }
.field.has-error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--muted);
  cursor: pointer;
}
.check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--brass); flex: none; }

.form-actions { display: flex; gap: 10px; justify-content: space-between; margin-top: 22px; }

.alert {
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .89rem;
  margin-bottom: 16px;
  display: none;
}
.alert.is-visible { display: block; }
.alert-error { background: var(--red-soft); color: var(--red); border: 1px solid #EFCFC9; }
.alert-ok { background: var(--green-soft); color: var(--green); border: 1px solid #CDE3D2; }

/* ------------------------------------------------------------------ summary */

.summary {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  background: var(--ink);
  color: #E9E3D8;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.summary h3 {
  font-family: var(--font-body);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 1rem;
}
.summary-row {
  display: flex; justify-content: space-between; gap: 14px;
  padding: .58rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
  font-size: .9rem;
}
.summary-row:last-of-type { border-bottom: 0; }
.summary-row .s-label { color: #A79E8E; }
.summary-row .s-value { font-weight: 600; text-align: right; }
.summary-row .s-value.is-empty { color: #6E6759; font-weight: 400; }

/* ------------------------------------------------------------------ success */

.success {
  text-align: center;
  padding: 46px 24px;
}
.success-mark {
  width: 66px; height: 66px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-soft);
  color: var(--green);
}
.success h2 { margin-bottom: .3em; }
.success p { color: var(--muted); max-width: 44ch; margin-inline: auto; }
.success-detail {
  display: inline-block;
  margin: 20px 0 26px;
  padding: 14px 26px;
  border-radius: var(--radius);
  background: var(--paper-2);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ================================ ADMIN ================================== */

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: 18px;
  align-items: start;
}
.hours-editor { display: grid; gap: 8px; }
.hours-edit-row {
  display: grid;
  grid-template-columns: 118px 1fr 1fr 110px;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.hours-edit-row.is-closed { background: var(--paper-2); }
.hours-edit-row .hr-day { font-weight: 600; font-size: .9rem; }
.hours-edit-row input[type="time"] {
  width: 100%;
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .45rem .55rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}
.hours-edit-row.is-closed input[type="time"] { opacity: .4; pointer-events: none; }
.hr-closed { display: flex; align-items: center; gap: .45rem; font-size: .82rem; color: var(--muted); cursor: pointer; }
.hr-closed input { accent-color: var(--brass); width: 16px; height: 16px; }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .35rem .5rem .35rem .85rem;
  font-size: .85rem;
  font-variant-numeric: tabular-nums;
}
.chip button {
  width: 20px; height: 20px;
  border: 0; border-radius: 50%;
  background: rgba(0,0,0,.07);
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  display: grid; place-items: center;
  font-size: .9rem;
}
.chip button:hover { background: var(--red-soft); color: var(--red); }

.booking-list { display: grid; gap: 8px; }
.booking-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: .9rem;
}
.booking-item .bi-when { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--brass); }
.booking-item .bi-date { display: block; font-size: .72rem; font-weight: 500; color: var(--muted); }
.booking-item .bi-who { font-weight: 600; }
.booking-item .bi-contact { font-size: .8rem; color: var(--muted); }

/* ---------------------------------------------------- bookings tab, admin */

/* The date field carries its own 16px bottom margin from .field, so the two
   buttons are pulled down to sit on the input's baseline rather than centred
   against the label above it. */
.bk-toolbar {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.bk-toolbar .field { margin-bottom: 0; }
.bk-toolbar .field input { min-width: 190px; }

.manual-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-2);
  padding: 16px;
  margin-bottom: 16px;
}
.manual-hint { font-size: .86rem; color: var(--muted); margin: 0 0 12px; }
.manual-foot { min-height: 1.2rem; margin-top: 12px; }
.manual-status { font-size: .84rem; font-weight: 600; color: var(--green); }

.login-box { max-width: 380px; margin: 60px auto; }

/* ---------------------------------------------------------------- responsive */

@media (max-width: 960px) {
  .hero-grid, .about-grid, .booking-grid, .admin-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .hero { padding: 76px 0 88px; }
  .section { padding: 64px 0; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line-dark);
    padding: 12px 16px 18px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem .8rem; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  /* The wide CTA would push the header past the viewport edge on a phone,
     so it moves into the menu instead. */
  .header-actions > .btn { display: none; }
  .nav a.nav-cta { display: inline-flex; margin-top: 10px; color: #fff; }
  .nav a.nav-cta:hover { color: #fff; background: #966B2A; }
  .brand-logo { width: 44px; height: 44px; font-size: 1.1rem; }
  .brand-name { font-size: 1.15rem; }
  .field-row { grid-template-columns: 1fr; }
  .hours-edit-row { grid-template-columns: 1fr 1fr; }
  .hours-edit-row .hr-day { grid-column: 1 / -1; }
  .booking-item { grid-template-columns: 1fr; }
  .cal-day { font-size: .85rem; min-height: 52px; }
  .cal-day .cal-n { font-size: .95rem; }
  .cal-day .cal-free-word { display: none; }
  .cal-day .cal-free::before { content: '·\00a0'; }
}


/* ------------------------------------------------------------- cancellation
   zrusenie.html reuses the .success block from the booking page's step 4 --
   same centred mark / title / detail / paragraph -- so it only needs a warning
   colourway for the mark and a row for the two buttons.
   -------------------------------------------------------------------------- */

.cancel-body > .wrap { max-width: 640px; }

.success-mark.is-warn {
  background: var(--red-soft);
  color: var(--red);
}

.cancel-actions {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
