/* ============================================================
   STUDIO MILA — lepotni studio Ljubljana
   Skupni slog za vse podstrani
   Paleta: porcelan + vino + prašna roža
   Pisave: Cormorant Garamond (display) + Manrope (body)
   ============================================================ */

:root {
  /* Barve */
  --bg:        #F7F2EE;   /* topel porcelan */
  --bg-tint:   #EFE3DD;   /* mehka blush podlaga za izmenične sekcije */
  --bg-deep:   #EAD9D2;   /* nekoliko globlja roža */
  --ink:       #2B1F22;   /* skoraj črna sliva — besedilo, naslovi */
  --ink-soft:  #6A595C;   /* sekundarno besedilo */
  --wine:      #7A2E3A;   /* vino — znamka, gumbi, poudarki */
  --wine-dark: #5E212B;   /* hover */
  --rose:      #C2897B;   /* prašna roža — drobni poudarki, podčrte */
  --line:      #DBC9C2;   /* tanke črte */
  --white:     #FFFFFF;

  /* Pisave */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Razmiki / mere */
  --wrap: 1180px;
  --gap: clamp(1.5rem, 4vw, 4rem);
  --pad-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 4px;
  --shadow: 0 18px 50px -28px rgba(43, 31, 34, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / osnova ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1.0625rem;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

/* ---------- Tipografija ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: .003em; }
.display {
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
}
.h-section { font-size: clamp(2rem, 4.6vw, 3.2rem); font-weight: 400; }
.h-card { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
em, .ital { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 1.6rem; height: 1px;
  background: var(--rose);
}
.eyebrow.center { justify-content: center; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--ink-soft); max-width: 54ch; }
.muted { color: var(--ink-soft); }

/* ---------- Gumbi ---------- */
.btn {
  --c: var(--wine);
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 1.8rem;
  border: 1px solid var(--c);
  background: var(--c); color: var(--white);
  border-radius: 999px;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--wine-dark); border-color: var(--wine-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.textlink {
  font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wine); display: inline-flex; gap: .5rem; align-items: center;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.textlink:hover { border-color: var(--wine); gap: .8rem; }

/* ============================================================
   HEADER / NAVIGACIJA
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.scrolled { border-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo { display: inline-flex; align-items: center; gap: .65rem; }
.logo-mark {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--wine);
  border-radius: 50%;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
  color: var(--wine);
  line-height: 1;
}
.logo-word { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: .01em; }
.logo-word small { font-family: var(--sans); display: block; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); margin-top: -2px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  color: var(--ink-soft);
  position: relative; padding: .3rem 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--wine);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .7rem 1.3rem; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 6px;
  align-items: flex-end;
}
.hamburger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 26px; }

/* Mobilni meni */
.mobile-menu {
  display: none;
  position: fixed; inset: 76px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform .45s var(--ease);
  z-index: 99; padding: 1.5rem 0 2.2rem;
  max-height: calc(100dvh - 76px); overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block; font-family: var(--serif); font-size: 1.6rem;
  padding: .55rem 0; color: var(--ink); border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 1.4rem; }

/* ============================================================
   HERO — celozaslonska široka slika (obrvi.webp)
   ============================================================ */
.hero {
  position: relative; isolation: isolate;
  display: flex; align-items: center;
  min-height: clamp(540px, 82vh, 720px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 68% center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(95deg, rgba(43,31,34,.86) 0%, rgba(43,31,34,.62) 30%, rgba(43,31,34,.22) 58%, rgba(43,31,34,0) 82%),
    linear-gradient(0deg, rgba(43,31,34,.30), rgba(43,31,34,0) 42%);
}
.hero-inner { padding-block: clamp(3rem, 8vh, 6rem); }
.hero-copy { max-width: 40rem; color: var(--bg); }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.4rem; color: var(--bg); }
.hero h1 em { color: #E7B5A6; }
.hero .lead { margin-bottom: 2.1rem; color: rgba(247,242,238,.88); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* poudarki na temni podlagi */
.eyebrow.light { color: #E7B5A6; }
.eyebrow.light::before { background: #E7B5A6; }
.btn-on-dark { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.btn-on-dark:hover { background: var(--bg); border-color: var(--bg); color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--bg); border-color: rgba(247,242,238,.55); }
.btn-ghost-light:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* Trak z drobnimi podatki pod herojem */
.strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.strip-grid div { padding: 1.6rem 1rem; border-right: 1px solid var(--line); }
.strip-grid div:last-child { border-right: 0; }
.strip-grid .n { font-family: var(--serif); font-size: 1.9rem; color: var(--wine); line-height: 1; }
.strip-grid .l { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .5rem; }

/* ============================================================
   SEKCIJE
   ============================================================ */
.section { padding: var(--pad-y) 0; }
.section.tint { background: var(--bg-tint); }
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head h2 { margin-bottom: 1.1rem; }

/* Split (slika + besedilo) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media.tall img { aspect-ratio: 3 / 4; }
.split-body h2 { margin-bottom: 1.3rem; }
.split-body p + p { margin-top: 1rem; }
.split-body .eyebrow { margin-bottom: 1.1rem; }
.split-body .btn, .split-body .textlink { margin-top: 1.8rem; }

/* ---------- Kartice storitev ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 14px 40px -30px rgba(43,31,34,.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { overflow: hidden; aspect-ratio: 4 / 3; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.6rem 1.6rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .6rem; }
.card-body p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.card-body .from { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin-top: auto; }

/* ============================================================
   CITAT TRAK (panoramska slika obrvi.webp)
   ============================================================ */
.quote-band {
  position: relative; isolation: isolate;
  padding: clamp(5rem, 11vw, 9rem) 0;
  color: var(--white); text-align: center;
}
.quote-band img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.quote-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43,31,34,.55), rgba(94,33,43,.6)); }
.quote-band blockquote { font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 400; line-height: 1.25; max-width: 20ch; margin-inline: auto; }
.quote-band .by { margin-top: 1.5rem; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; opacity: .85; }

/* ============================================================
   CENIK — slog spa menija (vodilne pikice)
   ============================================================ */
.menu-block { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.menu-block:last-child { margin-bottom: 0; }
.menu-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.menu-head h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.menu-head .eyebrow { margin-left: auto; }
.price-list { display: flex; flex-direction: column; gap: .15rem; }
.price-row { display: flex; align-items: flex-end; padding: .55rem 0; }
.price-name { font-size: 1.08rem; }
.price-name span { display: block; font-size: .82rem; color: var(--ink-soft); }
.price-dots { flex: 1; border-bottom: 1px dotted var(--rose); margin: 0 .7rem .42rem; min-width: 1.5rem; }
.price-val { font-family: var(--serif); font-size: 1.4rem; color: var(--wine); white-space: nowrap; }
.menu-note { margin-top: 1.2rem; font-size: .88rem; color: var(--ink-soft); font-style: italic; }
.cenik-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }

/* ============================================================
   GALERIJA
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; grid-auto-flow: dense; }
.gallery a { overflow: hidden; border-radius: var(--radius); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform .7s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery .tall { grid-row: span 2; }
.gallery .tall img { aspect-ratio: 1 / 2; }
.gallery .wide { grid-column: span 2; }
.gallery .wide img { aspect-ratio: 2 / 1; }

/* ============================================================
   MNENJA
   ============================================================ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testimonial {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  box-shadow: 0 14px 40px -32px rgba(43,31,34,.5);
}
.stars { color: var(--rose); letter-spacing: .2em; font-size: .9rem; }
.testimonial p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.4; }
.testimonial .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--bg-deep); color: var(--wine); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; }
.who .name { font-size: .92rem; font-weight: 700; }
.who .role { font-size: .78rem; color: var(--ink-soft); }

/* ============================================================
   OBRAZEC / REZERVACIJA
   ============================================================ */
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.form-card { background: var(--white); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow); }
.demo-note {
  background: var(--bg-deep); color: var(--wine);
  font-size: .82rem; font-weight: 600; letter-spacing: .03em;
  padding: .8rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.8rem;
  display: flex; gap: .6rem; align-items: flex-start;
}
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .04em; margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(122,46,58,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-card .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-deep); color: var(--wine); display: grid; place-items: center; margin: 0 auto 1.2rem; font-size: 1.8rem; }
.form-success h3 { font-size: 1.8rem; margin-bottom: .6rem; }

.info-list { display: flex; flex-direction: column; gap: 1.6rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .ic { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--wine); }
.info-item h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .25rem; font-weight: 700; }
.info-item p { font-size: 1.05rem; }

/* Delovni čas tabela */
.hours { background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: 0 14px 40px -32px rgba(43,31,34,.5); }
.hours li { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--ink-soft); }
.hours .closed { color: var(--rose); }

/* Zemljevid */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.25) contrast(1.02); }

/* ============================================================
   CTA pas
   ============================================================ */
.cta-band { background: var(--ink); color: var(--bg); text-align: center; padding: clamp(4rem, 8vw, 6.5rem) 0; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.cta-band h2 em { color: var(--rose); }
.cta-band p { color: rgba(247,242,238,.7); max-width: 48ch; margin: 0 auto 2.2rem; }
.cta-band .btn { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.cta-band .btn:hover { background: var(--white); border-color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(247,242,238,.72); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(247,242,238,.14); }
.footer-grid .logo-word { color: var(--bg); }
.footer-grid .logo-mark { border-color: var(--rose); color: var(--rose); }
.footer-about p { margin-top: 1.2rem; max-width: 34ch; font-size: .95rem; }
.footer-col h5 { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .65rem; font-size: .95rem; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; font-size: .82rem; color: rgba(247,242,238,.5); }
.footer-bottom a { color: rgba(247,242,238,.7); }
.footer-bottom a:hover { color: var(--bg); }

/* ============================================================
   PAGE HERO (notranje strani)
   ============================================================ */
.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); text-align: center; }
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 400; margin-bottom: 1.1rem; }
.page-hero p { max-width: 56ch; margin-inline: auto; color: var(--ink-soft); font-size: clamp(1.02rem, 1.6vw, 1.18rem); }
.crumbs { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.6rem; }
.crumbs a:hover { color: var(--wine); }

/* ============================================================
   REVEAL animacije
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .hero { min-height: 78vh; }
  .hero-copy { max-width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: -1; }
  .cards, .testimonials { grid-template-columns: 1fr 1fr; }
  .cenik-cols { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid div:nth-child(2) { border-right: 0; }
  .strip-grid div:nth-child(1), .strip-grid div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .cards, .testimonials { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 86vh; min-height: calc(100dvh - 76px); align-items: center; }
  .hero-bg { object-position: 66% 42%; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(43,31,34,.42) 0%, rgba(43,31,34,.28) 42%, rgba(43,31,34,.55) 100%),
      linear-gradient(90deg, rgba(43,31,34,.55) 0%, rgba(43,31,34,.20) 62%, rgba(43,31,34,0) 100%);
  }
  .hero-inner { padding-block: clamp(2rem, 6vh, 3.5rem); }
  .hero h1 { font-size: clamp(3rem, 13vw, 4rem); }
  .menu-head { flex-wrap: wrap; }
  .menu-head .eyebrow { margin-left: 0; }
}

/* ---------- Dostopnost ---------- */
:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* 4 kartice v vrsti (domov / storitve preview) */
.cards-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards-4 { grid-template-columns: 1fr; } }

/* text-only value kartice */
.card.text-card .card-body { padding: 2rem 1.8rem; }
.card.text-card .card-body .num { font-family: var(--serif); font-size: 2rem; color: var(--rose); line-height: 1; margin-bottom: .8rem; }

/* checklist */
.checklist li { position: relative; padding-left: 1.9rem; margin-bottom: .85rem; font-size: 1rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(194,137,123,.18); }

/* service detail bullets inline */
.svc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.3rem 0; }
.svc-tags span { font-size: .8rem; letter-spacing: .03em; padding: .4rem .85rem; background: var(--bg-tint); border-radius: 999px; color: var(--ink-soft); }
.svc-price { font-family: var(--serif); font-size: 1.5rem; color: var(--wine); }
