/* Velvet Touch – vzhled webu (čerň, béžová, zlatá z loga). */

:root {
  --vt-black: hsl(30 8% 5%);
  --vt-black-soft: hsl(30 6% 12%);
  --vt-beige: hsl(36 33% 88%);
  --vt-gold: hsl(41 62% 58%);
  --vt-gold-bright: hsl(43 74% 66%);
  --vt-gold-deep: hsl(38 55% 46%);

  --bg: hsl(36 33% 94%);
  --fg: hsl(30 8% 8%);
  --card: #fff;
  --muted: hsl(38 26% 88%);
  --muted-fg: hsl(30 6% 34%);
  --border: hsl(34 18% 78%);
  --danger: hsl(0 72% 40%);
  --ok: hsl(150 45% 30%);

  --radius: 3px;
  --maxw: 72rem;
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', 'Cormorant Garamond', cursive;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }

.narrow { max-width: 48rem; }
.mid { max-width: 56rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--vt-gold); color: var(--vt-black); padding: .6rem 1rem;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------- hlavička */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(13, 12, 11, .96);
  border-bottom: 1px solid rgba(214, 173, 94, .2);
  backdrop-filter: blur(6px);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .75rem; padding-bottom: .75rem;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--vt-gold-bright); }
.brand-tagline {
  margin-top: .35rem; font-size: .625rem; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(231, 219, 200, .7);
}
@media (min-width: 768px) { .brand-name { font-size: 1.875rem; } }

.main-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 900px) { .main-nav { display: flex; } }
.main-nav a {
  font-size: .875rem; letter-spacing: .02em; text-decoration: none;
  color: rgba(231, 219, 200, .8); transition: color .15s;
}
.main-nav a:hover,
.main-nav a[aria-current='page'] { color: var(--vt-gold-bright); }
.main-nav .nav-cta {
  border: 1px solid rgba(214, 173, 94, .5); background: rgba(214, 173, 94, .1);
  padding: .375rem 1rem; border-radius: var(--radius); color: var(--vt-gold-bright);
}
.main-nav .nav-cta:hover { background: var(--vt-gold); color: var(--vt-black); }

.lang-switch { display: inline-flex; overflow: hidden; border: 1px solid rgba(214, 173, 94, .3); border-radius: var(--radius); }
.lang-switch a {
  padding: .35rem .75rem; font-size: .875rem; font-weight: 500; text-decoration: none;
  color: var(--vt-gold-bright); transition: background .15s;
}
.lang-switch a[aria-current='true'] { background: var(--vt-gold); color: var(--vt-black); }
.lang-switch a:not([aria-current='true']):hover { background: rgba(214, 173, 94, .15); }

.menu-toggle {
  display: block; background: none; cursor: pointer; color: var(--vt-gold-bright);
  border: 1px solid rgba(214, 173, 94, .3); border-radius: var(--radius); padding: .5rem;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-nav { display: none; border-top: 1px solid rgba(214, 173, 94, .2); background: var(--vt-black); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem 1rem 1rem; }
.mobile-nav a {
  display: block; padding: .6rem .75rem; text-decoration: none; font-size: .95rem;
  color: rgba(231, 219, 200, .85); border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--vt-black-soft); color: var(--vt-gold-bright); }
.mobile-nav .lang-switch { margin: .5rem .75rem 0; }

/* ------------------------------------------------------------------- bloky */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } }

.section-dark { background: var(--vt-black); color: var(--vt-beige); }
.section-card { background: var(--card); }

.page-head { background: var(--vt-black); color: var(--vt-beige); text-align: center; padding: 3.5rem 0; }
.page-head h1 { font-size: 2.25rem; color: var(--vt-gold-bright); }
@media (min-width: 768px) { .page-head h1 { font-size: 3rem; } }
.page-head p { margin: 1rem auto 0; max-width: 40rem; font-size: .9rem; color: rgba(231, 219, 200, .65); }

.rule { width: 4rem; height: 1px; background: rgba(214, 173, 94, .5); margin: 1rem auto 0; border: 0; }

.eyebrow {
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--vt-gold-deep); margin: 0;
}
.eyebrow-light { color: rgba(214, 173, 94, .9); letter-spacing: .3em; }

/* -------------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; background: var(--vt-black); color: var(--vt-beige); }
/* Výšku podkladové fotky určuje šířka okna, ne délka textů – jinak by se
   výřez lišil mezi jazyky a fotka by při přepnutí SK/DE poskočila.
   min-height pojistí, že vrstva pokryje sekci i u dlouhého obsahu. */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 1 / 1;
  min-height: 100%;
  background-size: cover;
  background-position: center bottom;
  opacity: .45;
}
/* Čím užší okno, tím vyšší hero – vrstva musí zůstat vyšší než obsah,
   jinak by o jejím výřezu zase rozhodovala délka textu. Poměr proto
   stoupá po krocích, aby záběr fotky zůstal co nejníž (u lehátka). */
@media (max-width: 1199px) {
  .hero-bg { aspect-ratio: 4 / 5; }
}
@media (max-width: 999px) {
  .hero-bg { aspect-ratio: 5 / 7; }
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,12,11,.8), rgba(13,12,11,.55), var(--vt-black));
}
.hero-inner { position: relative; text-align: center; padding: 5rem 1rem; }
@media (min-width: 768px) { .hero-inner { padding: 7rem 1.5rem; } }
/* Logo je čtverec s černým pozadím. Nesmí se ořezávat do kruhu (uřízl by se
   spodní nápis) – místo toho se ukáže celé a tmavá záře kolem schová jeho
   hranu, aby nevypadalo jako nalepený obrázek na fotce. */
.hero-logo-wrap {
  position: relative;
  width: 17rem;
  max-width: 78vw;
  margin: 0 auto;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle closest-side,
    rgba(13, 12, 11, .95) 40%,
    rgba(13, 12, 11, .7) 62%,
    rgba(13, 12, 11, 0) 100%);
}
/* Kresba loga končí zhruba na 80 % poloměru, zbytek je jen černá plocha –
   tu maska rozpustí, takže po logu nezůstane viditelná hrana obrázku. */
.hero-logo {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(circle closest-side, #000 82%, transparent 100%);
  mask-image: radial-gradient(circle closest-side, #000 82%, transparent 100%);
}
@media (min-width: 768px) { .hero-logo-wrap { width: 21rem; } }
.hero h1 { margin: 1.5rem 0 0; color: var(--vt-gold-bright); font-weight: 600; }
/* Nadpis má dvě části: drobný popisek s lokalitou a samotný název. */
.hero h1 .hero-kicker { display: block; font-family: var(--font-sans); font-weight: 400; }
.hero h1 .hero-name { display: block; margin-top: .75rem; font-size: 3rem; line-height: 1.1; }
@media (min-width: 768px) { .hero h1 .hero-name { font-size: 3.75rem; } }
.hero-subtitle {
  margin: 1rem auto 0; max-width: 36rem; font-family: var(--font-serif);
  font-size: 1.25rem; color: rgba(231, 219, 200, .85);
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.5rem; } }
.hero-lines { margin-top: 1.5rem; font-size: .95rem; color: rgba(231, 219, 200, .7); }
.hero-lines p { margin: .25rem 0; }
.hero-intro { margin: 1.5rem auto 0; max-width: 32rem; font-size: .875rem; color: rgba(231, 219, 200, .6); }
.hero-actions { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; align-items: center; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; justify-content: center; } }

/* ---------------------------------------------------------------- tlačítka */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  border-radius: var(--radius); padding: .75rem 2rem; font-size: .875rem;
  font-weight: 500; letter-spacing: .02em; transition: background .15s, color .15s, border-color .15s;
  font-family: inherit;
}
.btn-primary { background: var(--vt-gold); color: var(--vt-black); }
.btn-primary:hover { background: var(--vt-gold-bright); }
.btn-outline { border: 1px solid rgba(214, 173, 94, .4); color: var(--vt-gold-bright); background: transparent; }
.btn-outline:hover { border-color: var(--vt-gold); background: rgba(214, 173, 94, .1); }
.btn-ghost { border: 1px solid rgba(214, 173, 94, .5); color: var(--vt-gold-deep); background: transparent; padding: .5rem 1.25rem; }
.btn-ghost:hover { background: var(--vt-gold); color: var(--vt-black); }
.btn-small { padding: .45rem 1rem; font-size: .8125rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ------------------------------------------------------------------- karty */
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  display: flex; align-items: center; gap: 1rem; text-align: left;
  background: var(--card); border: 1px solid rgba(214, 173, 94, .15);
  border-radius: var(--radius); padding: 1.25rem; box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.why-num {
  flex: 0 0 auto; width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(214, 173, 94, .3); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-serif); font-size: .875rem; color: var(--vt-gold-deep);
}

.about-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-photo {
  width: 100%; max-width: 28rem; margin: 0 auto; aspect-ratio: 1 / 1; object-fit: cover;
  border: 1px solid rgba(214, 173, 94, .2); border-radius: var(--radius); box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.service-card {
  background: var(--vt-black-soft); border: 1px solid rgba(214, 173, 94, .15);
  border-radius: var(--radius); padding: 1.5rem; transition: border-color .15s;
}
.service-card:hover { border-color: rgba(214, 173, 94, .4); }
.service-card h3 { font-size: 1.25rem; color: var(--vt-beige); }
.service-meta { margin: .25rem 0 0; font-size: .875rem; color: rgba(214, 173, 94, .9); }
.service-card p.desc { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: rgba(231, 219, 200, .65); }

.service-row {
  background: var(--card); border: 1px solid rgba(214, 173, 94, .15);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
@media (min-width: 768px) { .service-row { padding: 2rem; } }
.service-row-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem; }
.service-row h2 { font-size: 1.5rem; }
.service-index { margin-right: .75rem; font-size: .875rem; color: var(--vt-gold-deep); font-family: var(--font-sans); }
.service-price { font-size: 1.125rem; font-weight: 500; color: var(--vt-gold-deep); }
.service-row .desc { margin: .75rem 0 0; max-width: 42rem; color: rgba(20, 18, 16, .75); }

.card {
  background: var(--card); border: 1px solid rgba(214, 173, 94, .15);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* --------------------------------------------------------------- rezervace */
.steps { display: grid; gap: 2rem; }
fieldset.step { border: 0; margin: 0; padding: 0; }
fieldset.step legend { padding: 0; margin-bottom: .75rem; }

.option-grid { display: grid; gap: .5rem; }
@media (min-width: 640px) { .option-grid { grid-template-columns: repeat(2, 1fr); } }

.option {
  display: block; width: 100%; text-align: left; cursor: pointer; font: inherit;
  background: var(--card); border: 1px solid rgba(214, 173, 94, .2);
  border-radius: var(--radius); padding: 1rem 1.25rem; transition: border-color .15s, background .15s;
}
.option:hover { border-color: rgba(214, 173, 94, .5); }
.option[aria-pressed='true'] { border-color: var(--vt-gold); background: rgba(214, 173, 94, .1); }
.option strong { display: block; font-weight: 500; }
.option span { display: block; margin-top: .25rem; font-size: .875rem; color: var(--muted-fg); }

.slots { display: flex; flex-wrap: wrap; gap: .5rem; }
.slot {
  display: inline-block; cursor: pointer; font: inherit; font-size: .875rem; padding: .5rem 1rem;
  border-radius: var(--radius); border: 1px solid rgba(214, 173, 94, .3);
  background: var(--card); color: var(--fg); transition: border-color .15s, background .15s;
}
.slot:hover:not(:disabled) { border-color: var(--vt-gold); }
.slot[aria-pressed='true'] { background: var(--vt-gold); border-color: var(--vt-gold); color: var(--vt-black); }
.slot[aria-disabled='true'], .slot:disabled { cursor: not-allowed; background: var(--muted); border-color: var(--border); color: rgba(20,18,16,.35); text-decoration: line-through; }

.field { display: block; margin-bottom: .75rem; }
.field > span { display: block; margin-bottom: .25rem; font-size: .875rem; color: var(--muted-fg); }

input[type='text'], input[type='email'], input[type='tel'], input[type='password'],
input[type='date'], input[type='time'], input[type='number'], input[type='search'],
select, textarea {
  width: 100%; font: inherit; color: var(--fg); background: var(--card);
  border: 1px solid rgba(214, 173, 94, .3); border-radius: var(--radius);
  padding: .625rem 1rem;
}
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--vt-gold-deep); outline-offset: 2px;
}
textarea { min-height: 6rem; resize: vertical; }
fieldset[disabled] input, fieldset[disabled] textarea { opacity: .5; }

.form-grid { display: grid; gap: .75rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .form-grid .full { grid-column: 1 / -1; } }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { border-radius: var(--radius); padding: .75rem 1rem; font-size: .9rem; margin: 1rem 0; }
.notice-error { background: hsl(0 72% 96%); border: 1px solid hsl(0 72% 85%); color: var(--danger); }
.notice-ok { background: hsl(150 45% 95%); border: 1px solid hsl(150 35% 80%); color: var(--ok); }
.notice-info { background: var(--muted); border: 1px solid var(--border); color: var(--muted-fg); }

.success-box { max-width: 36rem; margin: 5rem auto; text-align: center; }
.success-box .card { padding: 2.5rem; }
.success-icon { width: 3rem; height: 3rem; margin: 0 auto; color: var(--vt-gold-deep); }

.muted { color: var(--muted-fg); }
.small { font-size: .875rem; }
.center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mb-2 { margin-bottom: 1rem; }

/* ----------------------------------------------------------------- kontakt */
.contact-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } .contact-grid .full { grid-column: 1 / -1; } }
.contact-grid h2 { font-family: var(--font-sans); }
.contact-value { font-size: 1.125rem; }
.contact-value a { text-decoration: none; }
.contact-value a:hover { color: var(--vt-gold-deep); text-decoration: underline; }
.open-list { list-style: none; margin: .75rem 0 0; padding: 0; line-height: 1.8; }
.open-list .day::first-letter { text-transform: uppercase; }
.map-frame { width: 100%; height: 18rem; border: 0; }

/* ------------------------------------------------------------------ patička */
.site-footer { background: var(--vt-black); color: rgba(231, 219, 200, .75); border-top: 1px solid rgba(214, 173, 94, .2); }
.footer-grid { display: grid; gap: 2rem; padding: 2.5rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { font-family: var(--font-script); font-size: 1.75rem; color: var(--vt-gold-bright); margin: 0; }
.footer-tagline { margin-top: .5rem; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(231, 219, 200, .5); }
.footer-heading { margin: 0 0 .25rem; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(214, 173, 94, .8); }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--vt-gold-bright); }
.footer-bottom { border-top: 1px solid rgba(214, 173, 94, .1); padding: 1rem 0; text-align: center; font-size: .75rem; color: rgba(231, 219, 200, .4); }
