/* ==========================================================================
   Beauty Time — warm editorial (skincare reference), polished pass
   White→warm · elegant Cormorant serif · taupe band · soft rounded frames
   ========================================================================== */

:root {
  --bg:      #fdfbf8;
  --bg-2:    #f5efe6;
  --card:    #fffdfa;
  --taupe:   #8a755e;        /* deeper for richness + legible white text */
  --taupe-d: #6f6052;
  --ink:     #2c2620;
  --ink-2:   #756a5e;
  --line:    rgba(44, 38, 32, .12);
  --line-2:  rgba(44, 38, 32, .26);
  --accent:  #9a6c40;        /* richer caramel, better contrast */

  --serif: "Cormorant Garamond", Georgia, serif;
  --ui:    "Inter", -apple-system, "Segoe UI", system-ui, sans-serif;

  --maxw:   1200px;
  --gutter: clamp(20px, 5vw, 70px);
  --section: clamp(40px, 5.5vw, 84px);
  --radius: 22px;
  --ease:   cubic-bezier(.2, .7, .25, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--ui); color: var(--ink);
  background: linear-gradient(180deg, #fdfbf8, #f6f0e7 160%);
  background-attachment: fixed;
  font-weight: 400; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: hidden; width: 100%; max-width: 100%; position: relative;
  animation: pageFade .7s ease both;
}
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--taupe); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.ital { font-style: italic; color: var(--accent); }

.soft { filter: saturate(1.06) contrast(1.02) brightness(1.02) sepia(.045); }

/* ---------- Type ---------- */
.eyebrow { font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 18px; }
.display { font-family: var(--serif); font-weight: 500; font-size: clamp(2.5rem, 5.8vw, 4.4rem); line-height: 1.02; letter-spacing: -.012em; }
.head { margin-bottom: clamp(40px, 6vw, 66px); }
.head--center { text-align: center; }
.head--center .eyebrow { display: block; }
.head--center .display::after { content: ""; display: block; width: 50px; height: 1px; background: var(--accent); margin: 24px auto 0; }

/* section headings reveal straight up — keeps every section's text symmetric */
.section .head.reveal { transform: translateY(24px); }
.section .head.reveal.is-in { transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ui); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ink); color: var(--bg); border: 1px solid var(--ink); cursor: pointer;
  padding: 15px 30px; border-radius: 100px;
  transition: background .35s var(--ease), color .35s, transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(154, 108, 64, .55); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); box-shadow: none; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--block { width: 100%; }

/* ---------- NAV (full-width bar) ---------- */
/* Transparent over the hero (white text + soft scrim); turns into a solid
   white bar once scrolled. No backdrop-filter — a filtered ancestor would
   become the containing block for the fixed menu overlay and collapse it. */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; color: #fff; transition: color .35s, background .35s, box-shadow .35s; }
.nav::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 150%; background: linear-gradient(180deg, rgba(20, 14, 10, .55), rgba(20, 14, 10, 0)); pointer-events: none; opacity: 1; transition: opacity .35s; z-index: -1; }
.nav.is-scrolled::before { opacity: 0; }
.nav.is-scrolled { color: var(--ink); background: rgba(253, 251, 248, .97); box-shadow: 0 1px 0 var(--line); }
.nav.nav--open { color: var(--ink); background: #fff; box-shadow: none; }
.nav__bar { width: 100%; max-width: var(--maxw); margin-inline: auto; padding: 20px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; transition: padding .35s var(--ease); }
.nav.is-scrolled .nav__bar { padding-top: 13px; padding-bottom: 13px; }
.brand { display: flex; flex-direction: row; align-items: center; line-height: 1; color: inherit; z-index: 120; gap: 12px; }
.brand__mark { flex-shrink: 0; width: 56px; height: 56px; color: #e9c79b; display: grid; place-items: center; transition: color .35s; }
.nav.is-scrolled .brand__mark { color: var(--accent); }
.brand__mark svg { width: 56px; height: 56px; }
.brand__text { display: flex; flex-direction: column; gap: 4px; }
.brand__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; font-style: italic; letter-spacing: .03em; line-height: 1; }
.brand__name em { font-style: normal; font-weight: 600; color: #e9c79b; letter-spacing: .03em; transition: color .35s; }
.nav.is-scrolled .brand__name em { color: var(--accent); }
.brand__sub { font-size: .6rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: rgba(255, 255, 255, .6); transition: color .35s; }
.nav.is-scrolled .brand__sub { color: var(--ink-2); }
.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links a { font-size: .77rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; position: relative; color: inherit; }
.nav__links a:not(.nav__cta)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.nav__links a:not(.nav__cta):hover::after, .nav__links a.is-active:not(.nav__cta)::after { width: 100%; }
/* current page: keep the normal text colour, mark it with a gold underline
   that matches the brand gold in each state — champagne over the hero,
   accent once the bar turns solid on scroll — so it never reads as a
   different brown from the rest of the navbar. */
.nav__links a.is-active:not(.nav__cta)::after { background: #e9c79b; height: 2px; }
.nav.is-scrolled .nav__links a.is-active:not(.nav__cta)::after { background: var(--accent); }
/* highlighted gold pill — stands out over hero and on scroll alike */
.nav__cta { padding: 11px 24px; background: var(--accent); border: 1px solid var(--accent); border-radius: 100px; color: #fff; box-shadow: 0 14px 30px -16px rgba(154, 108, 64, .7); transition: background .35s, border-color .35s, transform .35s var(--ease), box-shadow .35s; }
.nav__cta:hover { background: #82542f; border-color: #82542f; color: #fff; transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(130, 84, 47, .8); }

/* current-page indicators — text stays in the nav colour (no clashing word),
   the gold underline is the marker */
.nav__links a.is-active:not(.nav__cta) { color: inherit; }
.nav__droptoggle.is-active { color: var(--accent); }
.nav__submenu a.is-active { color: var(--accent); font-weight: 600; }

/* ---------- NAV DROPDOWN ---------- */
.nav__drop { position: relative; }
.nav__droptoggle {
  font-family: var(--ui); font-size: .77rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: inherit; background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 0; line-height: 1;
  position: relative;
}
.nav__droptoggle::after { content: ""; display: inline-block; width: 7px; height: 4px; background: currentColor; clip-path: polygon(0 0, 100% 0, 50% 100%); transition: transform .3s var(--ease); flex-shrink: 0; }
.nav__drop.is-open .nav__droptoggle::after, .nav__drop:hover .nav__droptoggle::after { transform: rotate(180deg); }
.nav__submenu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 28px 60px -20px rgba(44, 38, 32, .32);
  opacity: 0; visibility: hidden;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 200;
}
.nav__drop:hover .nav__submenu, .nav__drop.is-open .nav__submenu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__submenu::before { content: ""; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 12px; height: 6px; background: var(--card); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.nav__submenu a {
  display: block; padding: 10px 18px;
  font-size: .8rem; font-weight: 500; letter-spacing: .04em; text-transform: none;
  color: var(--ink);
  transition: background .2s, color .2s, padding-left .2s;
}
.nav__submenu a::after { display: none !important; }
.nav__submenu a:hover { background: var(--bg-2); color: var(--accent); padding-left: 24px; }

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 8px; cursor: pointer; color: inherit; -webkit-appearance: none; appearance: none; }
.burger span { display: block; width: 26px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .35s var(--ease), opacity .25s; filter: drop-shadow(0 1px 1px rgba(20, 14, 10, .28)); }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO (full-bleed cover, dark scrim + white text) ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #1c1612; color: #fff; }
.hero__bg { position: absolute; inset: 0 0 -220px 0; z-index: 0; will-change: transform, filter; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; filter: saturate(1.08) contrast(1.03); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero__bg.is-empty { background: linear-gradient(150deg, #4a3d33, #241b15); }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(28,21,16,.5) 0%, rgba(28,21,16,.12) 26%, rgba(28,21,16,.28) 56%, rgba(28,21,16,.82) 100%),
  linear-gradient(90deg, rgba(28,21,16,.62) 0%, rgba(28,21,16,.22) 38%, rgba(28,21,16,0) 66%); }
/* left-anchored, not centered — reads as a deliberate editorial hero on wide screens */
.hero__content { position: relative; z-index: 2; max-width: none; width: 100%; margin: 0;
  padding-top: 150px; padding-bottom: clamp(40px, 6vw, 88px);
  padding-left: clamp(24px, 6vw, 110px); padding-right: var(--gutter);
  text-shadow: 0 1px 28px rgba(20,14,10,.4); }
.hero__content > * { max-width: 700px; }
.hero .eyebrow { color: rgba(255, 255, 255, .85); display: inline-flex; align-items: center; gap: 14px; }
.hero .eyebrow::before { content: ""; width: 36px; height: 1px; background: rgba(255, 255, 255, .55); }
.hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(3.4rem, 11vw, 6.8rem); line-height: .96; letter-spacing: -.018em; margin-bottom: 22px; color: #fff; }
.hero__title .ital { color: #e9c79b; }
.hero__lead { font-size: 1.12rem; color: rgba(255, 255, 255, .9); max-width: 42ch; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .5); }
.hero .btn--ghost:hover { color: #fff; border-color: #fff; background: rgba(255, 255, 255, .12); }

/* staggered entrance for hero elements */
.hero .eyebrow.reveal    { transition-delay: .05s; }
.hero .hero__title.reveal{ transition-delay: .22s; }
.hero .hero__lead.reveal { transition-delay: .42s; }
.hero .hero__cta.reveal  { transition-delay: .58s; }
.hero__scroll { position: absolute; left: 50%; bottom: 18px; z-index: 2; transform: translateX(-50%); width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .4); border-radius: 50%; color: #fff; font-size: .9rem; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 5px); } }

/* ---------- BAND ---------- */
.band { position: relative; overflow: hidden; background: linear-gradient(150deg, #9a8369 0%, var(--taupe) 46%, var(--taupe-d) 100%); color: #fff; padding: clamp(58px, 8vw, 104px) 0 clamp(56px, 7vw, 90px); }
/* flow out of the dark hero into the first band so they connect smoothly */
.hero + .band { background: linear-gradient(180deg, #241c16 0%, #5d4f43 15%, var(--taupe) 52%, var(--taupe-d) 100%); }
.band::before, .band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .055); pointer-events: none; }
.band::before { width: 340px; height: 340px; top: -140px; left: -90px; }
.band::after { width: 280px; height: 280px; bottom: -140px; right: -70px; }
.band > .wrap { position: relative; z-index: 1; }
.band__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.band__eyebrow { font-size: .72rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: rgba(255, 255, 255, .85); margin-bottom: 18px; }
.band__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.8vw, 3.3rem); line-height: 1.12; letter-spacing: -.01em; margin-bottom: 18px; }
.band__text { color: rgba(255, 255, 255, .9); max-width: 52ch; margin: 0 auto; }
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(32px, 4vw, 48px); padding-top: clamp(26px, 3vw, 38px); border-top: 1px solid rgba(255, 255, 255, .18); }
.tag { display: inline-flex; align-items: center; gap: 9px; background: var(--card); color: var(--ink); font-size: .74rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 14px 24px; border-radius: 100px; border: 1px solid rgba(154, 108, 64, .22); box-shadow: 0 14px 40px -20px rgba(44, 38, 32, .4); transition: transform .4s var(--ease), box-shadow .4s; }
.tag:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -20px rgba(44, 38, 32, .55); }
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ---------- SERVICES ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 26px); }
.card { background: var(--card); border: 1px solid rgba(44, 38, 32, .06); border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 14px 34px -24px rgba(44, 38, 32, .3); transition: transform .45s var(--ease), box-shadow .45s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(44, 38, 32, .44); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); position: relative; }
.card__media::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.28) 50%, transparent 62%); transform: translateX(-110%); transition: transform .75s ease; }
.card:hover .card__media::after { transform: translateX(110%); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }

/* staggered card entrance */
.cards .reveal:nth-child(1) { transition-delay: .04s; }
.cards .reveal:nth-child(2) { transition-delay: .14s; }
.cards .reveal:nth-child(3) { transition-delay: .24s; }
.cards .reveal:nth-child(4) { transition-delay: .34s; }
.cards .reveal:nth-child(5) { transition-delay: .44s; }
.cards .reveal:nth-child(6) { transition-delay: .54s; }
.card__media.is-empty { background: linear-gradient(150deg, var(--bg-2), #e3d6c6); }
.card__body { padding: 26px 28px 28px; }
.card__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.7rem; letter-spacing: -.01em; margin-bottom: 8px; }
.card__body p { color: var(--ink-2); font-size: .95rem; margin-bottom: 18px; }
.card__price { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); margin-top: 4px; gap: 12px; }
.card__link { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; transition: gap .3s var(--ease); }
.card__link::after { content: "→"; font-size: .9em; }
.card__link:hover { gap: 9px; }

/* ---------- GIFT VOUCHER BANNER (matches the rating/CTA strip style) ---------- */
.voucher { position: relative; overflow: hidden; text-align: center; background: linear-gradient(150deg, #3a322b 0%, var(--ink) 55%, #16120e 100%); color: #fff; border-radius: var(--radius); padding: clamp(40px, 6vw, 74px) clamp(26px, 5vw, 60px); margin-top: clamp(22px, 3vw, 36px); box-shadow: 0 30px 60px -40px rgba(44, 38, 32, .5); }
.voucher::before, .voucher::after { content: ""; position: absolute; border-radius: 50%; background: rgba(233, 199, 155, .08); pointer-events: none; }
.voucher::before { width: 240px; height: 240px; top: -100px; left: -70px; }
.voucher::after { width: 200px; height: 200px; bottom: -100px; right: -50px; }
.voucher > * { position: relative; z-index: 1; }
.voucher__eyebrow { font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, .75); margin-bottom: 16px; }
.voucher h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.1; margin-bottom: 14px; color: #fff; }
.voucher__lead { color: rgba(255, 255, 255, .85); max-width: 48ch; margin: 0 auto 30px; font-size: .98rem; }
.voucher .btn--light { background: #fff; color: var(--taupe-d); border-color: #fff; }
.voucher .btn--light:hover { background: var(--ink); border-color: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(44, 38, 32, .5); }

/* ---------- ABOUT ---------- */
.about { background: var(--bg-2); }
.about__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 6vw, 86px); align-items: center; }
.about__fig { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--bg); box-shadow: 0 40px 80px -50px rgba(44, 38, 32, .5); }

/* about: image enters from left, text from right */
@media (min-width: 601px) {
  .about__fig.reveal { transform: translateX(-32px); }
  .about__fig.reveal.is-in { transform: none; }
  .about__text .reveal { transform: translateX(28px); }
  .about__text .reveal.is-in { transform: none; }
}
.about__fig img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about__fig.is-empty { background: linear-gradient(150deg, var(--bg), #e3d6c6); }
.about__text .display { margin: 14px 0 24px; }
.about__text p { color: var(--ink-2); margin-bottom: 18px; max-width: 50ch; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.85rem; color: var(--ink); margin-top: 6px; }

/* ---------- PRICING ---------- */
.pricing__card { position: relative; overflow: hidden; background: var(--card); border: 1px solid rgba(44, 38, 32, .06); border-radius: var(--radius); padding: clamp(30px, 5vw, 64px); box-shadow: 0 44px 90px -56px rgba(44, 38, 32, .5); }
.pricing__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), #e9c79b 60%, var(--accent)); }
.pricing__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 90px); }
.menu__cat { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: clamp(1.85rem, 3.6vw, 2.4rem); color: var(--ink); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1.5px solid rgba(154, 108, 64, .3); line-height: 1.1; }
.menu__cat:not(:first-child) { margin-top: 46px; }
.menu ul { list-style: none; }
.menu li { display: flex; align-items: baseline; gap: 12px; padding: 14px 12px; margin: 0 -12px; border-bottom: 1px solid var(--line); border-radius: 10px; transition: background .25s; }
.menu li:hover { background: rgba(154, 108, 64, .07); }
.menu li span { font-size: 1.04rem; }
.menu li i { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.menu li b { font-family: var(--serif); font-weight: 600; font-size: 1.42rem; color: var(--accent); white-space: nowrap; font-variant-numeric: tabular-nums; }
.pricing__note { text-align: center; margin-top: 36px; font-size: .88rem; font-style: italic; color: var(--ink-2); }

/* ---------- QUOTE ---------- */
.quote { position: relative; overflow: hidden; background: linear-gradient(150deg, #9a8369 0%, var(--taupe) 46%, var(--taupe-d) 100%); color: #fff; padding: clamp(74px, 11vw, 134px) 0; }
.quote::before, .quote::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .055); pointer-events: none; }
.quote::before { width: 340px; height: 340px; top: -130px; left: -90px; }
.quote::after { width: 280px; height: 280px; bottom: -130px; right: -70px; }
.quote__inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.quote__inner::before { content: "\201C"; position: absolute; top: -.62em; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: 9rem; line-height: 1; color: rgba(255, 255, 255, .16); pointer-events: none; }
.quote__stars { position: relative; letter-spacing: .34em; font-size: 1rem; color: #f1ddc3; margin-bottom: 26px; }
.quote__text { position: relative; font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 4.4vw, 3rem); line-height: 1.3; }
.quote__text .ital { color: #f7e8d2; }
.quote__cite { display: inline-flex; align-items: center; gap: 13px; margin-top: 32px; font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .85); }
.quote__avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .4); display: grid; place-items: center; font-family: var(--serif); font-size: 1.15rem; font-style: italic; letter-spacing: 0; color: #fff; }

/* ---------- GALLERY ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gtile { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--bg-2); cursor: pointer; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gtile:hover img { transform: scale(1.05); }
.gtile:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.gtile--tall { grid-row: span 2; }
.gtile--wide { grid-column: span 2; }
.gtile.is-empty { background: linear-gradient(150deg, var(--bg-2), #ddd0bf); }

/* ---------- CONTACT ---------- */
.contact { background: var(--bg-2); }
.contact__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.form { background: var(--card); border: 1px solid rgba(44, 38, 32, .06); border-top: 3px solid var(--accent); border-radius: var(--radius); padding: clamp(28px, 4vw, 46px); box-shadow: 0 34px 74px -50px rgba(44, 38, 32, .55); }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field span { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field input, .field select, .field textarea { font-family: var(--ui); font-size: 1rem; color: var(--ink); padding: 13px 15px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--bg); transition: border-color .3s, box-shadow .3s; resize: vertical; width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(154, 108, 64, .14); }
.field input:invalid:not(:placeholder-shown) { border-color: #b1492f; }
.form__status { margin-top: 14px; font-size: .92rem; min-height: 1.2em; }
.form__status.is-ok { color: var(--accent); font-weight: 600; }
.form__status.is-err { color: #b1492f; }

.info h3 { font-family: var(--serif); font-weight: 600; font-size: 1.55rem; margin-bottom: 14px; }
.info h3:not(:first-child) { margin-top: 28px; }
.info__list, .info__hours { list-style: none; }
.info__list li { display: grid; grid-template-columns: 38px 1fr; align-items: center; column-gap: 14px; row-gap: 2px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.info__ico { grid-row: span 2; width: 38px; height: 38px; border-radius: 50%; background: rgba(154, 108, 64, .1); display: grid; place-items: center; }
.info__ico svg { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.6; }
.info__list li > span:not(.info__ico) { font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.info__list li b { font-weight: 500; font-size: 1.02rem; }
.info__list a:hover { color: var(--accent); }
.info__hours li { display: flex; justify-content: space-between; padding: 8px 0; }
.info__hours li span { color: var(--ink-2); }
.info__hours li b { font-weight: 600; }

/* ---------- FOOTER ---------- */
.footer { position: relative; overflow: hidden; background: linear-gradient(165deg, #4a3f35 0%, #342c25 38%, #211c17 100%); color: var(--bg); padding: clamp(54px, 8vw, 96px) 0 0; box-shadow: inset 0 1px 0 rgba(233, 199, 155, .14); }
/* warm decorative glows so the footer isn't a flat block */
.footer::before, .footer::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.footer::before { width: 420px; height: 420px; top: -160px; left: -120px; background: radial-gradient(circle, rgba(154, 108, 64, .26), transparent 70%); }
.footer::after { width: 480px; height: 480px; bottom: -200px; right: -140px; background: radial-gradient(circle, rgba(233, 199, 155, .12), transparent 70%); }
.footer > .wrap { position: relative; z-index: 1; }

.footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); border-bottom: 1px solid rgba(255, 255, 255, .08); }

.footer__logo { display: flex; flex-direction: column; gap: 6px; }
.footer__name { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; font-style: italic; letter-spacing: .04em; display: block; }
.footer__name em { font-style: normal; font-weight: 600; color: #e9c79b; }
.footer__sub { font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; opacity: .5; }
.footer__tagline { font-size: .88rem; line-height: 1.65; opacity: .55; margin-top: 20px; max-width: 28ch; }

.footer__social { margin-top: 22px; }
.footer__social a { display: inline-flex; align-items: center; gap: 10px; font-size: .82rem; opacity: .65; transition: opacity .3s, color .3s; }
.footer__social a:hover { opacity: 1; color: #e9c79b; }
.footer__icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; flex-shrink: 0; }

.footer__heading { font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .4); margin-bottom: 16px; }
.footer__heading--mt { margin-top: 28px; }

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__list a { font-size: .9rem; opacity: .65; transition: opacity .3s, color .3s; }
.footer__list a:hover { opacity: 1; color: #e9c79b; }

.footer__contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__contact li { display: flex; flex-direction: column; gap: 3px; }
.footer__contact li span { font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; opacity: .4; }
.footer__contact li b { font-weight: 400; font-size: .9rem; opacity: .78; }
.footer__contact a:hover { color: #e9c79b; }

.footer__hours { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__hours li { display: flex; justify-content: space-between; gap: 16px; font-size: .88rem; }
.footer__hours li span { opacity: .5; }
.footer__hours li b { font-weight: 500; opacity: .8; }

.footer__bottom { display: flex; justify-content: center; align-items: center; text-align: center; gap: 12px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .06); }
.footer__copy { font-size: .74rem; opacity: .45; }
.footer__admin { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #e9c79b; opacity: .5; transition: opacity .3s; }
.footer__admin:hover { opacity: 1; }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 9500; background: rgba(30, 25, 20, .94); display: none; place-items: center; padding: 30px; opacity: 0; transition: opacity .35s; }
.lightbox.is-open { display: grid; opacity: 1; }
/* size to the lightbox's padded area (not vw) so the photo is truly centred
   with equal margins and never clipped at the right edge */
.lightbox__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .4); background: none; color: #fff; font-size: 1rem; cursor: pointer; }
.lightbox__close:hover { background: rgba(255, 255, 255, .15); }

/* ---------- Gallery hover overlay ---------- */
.gtile::after { content: ""; position: absolute; inset: 0; background: rgba(28, 21, 16, 0); transition: background .45s var(--ease); pointer-events: none; border-radius: var(--radius); }
.gtile:hover::after { background: rgba(28, 21, 16, .22); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- QUICK CONTACT CARDS ---------- */
.qcontact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.qcontact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: clamp(22px, 3vw, 32px) 20px; background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: var(--radius); box-shadow: 0 10px 28px -18px rgba(44,38,32,.25); transition: transform .4s var(--ease), box-shadow .4s; cursor: pointer; }
.qcontact-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -20px rgba(44,38,32,.35); }
.qcontact-card__icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(154,108,64,.1); display: grid; place-items: center; flex-shrink: 0; }
.qcontact-card__icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.qcontact-card__label { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-2); }
.qcontact-card__value { font-size: .88rem; font-weight: 500; color: var(--ink); word-break: break-all; }

/* ---------- EMBEDDED MAP ---------- */
.map-embed { border-radius: 16px; overflow: hidden; aspect-ratio: 16 / 11; background: var(--bg-2); border: 1px solid var(--line); box-shadow: 0 18px 40px -28px rgba(44, 38, 32, .3); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.15) saturate(.92); }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero { position: relative; min-height: 38vh; display: flex; align-items: flex-end; overflow: hidden; background: #1c1612; color: #fff; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.65) contrast(1.04) brightness(.85) sepia(.3); }
.page-hero__bg.is-empty { background: linear-gradient(150deg, #4a3d33, #241b15); }
.page-hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(28,21,16,.55) 0%, rgba(28,21,16,.2) 40%, rgba(28,21,16,.8) 100%), linear-gradient(90deg, rgba(28,21,16,.6) 0%, rgba(28,21,16,0) 60%); }
.page-hero__content { position: relative; z-index: 2; width: 100%; padding-top: 118px; padding-bottom: clamp(40px, 6vw, 72px); padding-left: clamp(24px, 6vw, 110px); padding-right: var(--gutter); }
.page-hero__breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 10px; font-size: .68rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.page-hero__breadcrumb a { color: inherit; transition: color .25s; white-space: nowrap; }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb span { opacity: .5; white-space: nowrap; }
.page-hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: .97; letter-spacing: -.016em; color: #fff; margin-bottom: 14px; }
.page-hero__title .ital { color: #e9c79b; }
.page-hero__lead { font-size: 1.05rem; color: rgba(255,255,255,.82); max-width: 50ch; }

/* ---------- SERVICE INTRO ---------- */
.service-intro { padding: var(--section) 0; }
.service-intro__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.service-intro__fig { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2); box-shadow: 0 40px 80px -50px rgba(44,38,32,.5); }
.service-intro__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.service-intro__fig:hover img { transform: scale(1.04); }
.service-intro__fig.is-empty { background: linear-gradient(150deg, var(--bg-2), #e3d6c6); }
.service-intro__text .display { margin: 14px 0 22px; }
.service-intro__text p { color: var(--ink-2); margin-bottom: 16px; max-width: 52ch; }
.service-steps { list-style: none; counter-reset: step; margin-top: 32px; display: flex; flex-direction: column; gap: 6px; }
.service-steps li { display: grid; grid-template-columns: 40px 1fr; column-gap: 20px; row-gap: 4px; padding: 15px 0; align-items: start; counter-increment: step; }
.service-steps li:not(:last-child) { border-bottom: 1px solid rgba(44, 38, 32, .07); }
.service-steps li::before { content: counter(step, decimal-leading-zero); grid-row: span 2; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.55rem; line-height: 1; color: var(--accent); }
.service-steps li b { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em; }
.service-steps li span { font-size: .92rem; color: var(--ink-2); line-height: 1.55; }

/* ---------- SERVICE PRICING STRIP ---------- */
.service-pricing { padding: var(--section) 0; background: var(--bg-2); }

/* ---------- GALLERY PAGE ---------- */
.gallery-page { padding: var(--section) 0; }
.gallery-page__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 14px; }
.gallery-page__grid .gtile--tall { grid-row: span 2; }
.gallery-page__grid .gtile--wide { grid-column: span 2; }

/* ---------- VOUCHER PAGE ---------- */
.voucher-page { padding: var(--section) 0; }
.voucher-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
/* grid/flex items must be allowed to shrink below their content (a wide
   <select> option was forcing the column past the viewport width) */
.voucher-page__inner > *, .contact__inner > *, .service-intro__inner > *, .about-page__inner > * { min-width: 0; }
.form { min-width: 0; max-width: 100%; }
/* Voucher preview card — image framed in a clean white card + pill button */
.voucher-preview { position: relative; max-width: 320px; margin-inline: auto; border-radius: var(--radius); background: #fff; padding: 12px; box-shadow: 0 24px 54px -30px rgba(44, 38, 32, .42); border: 1px solid rgba(44, 38, 32, .06); }
.voucher-preview__img { width: 100%; height: auto; display: block; border-radius: 12px; }
.voucher-preview.is-empty { aspect-ratio: 4/3; min-height: 180px; }
.voucher-preview__dl { display: flex; justify-content: center; width: 100%; margin-top: 12px; border-radius: 100px; background: var(--ink); border-color: var(--ink); color: #fff; font-size: .75rem; padding: 14px; }
.voucher-preview__dl:hover { background: var(--accent); border-color: var(--accent); transform: none; box-shadow: none; }

.voucher-amounts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.voucher-amount { padding: 14px 26px; border: 1.5px solid var(--line-2); border-radius: 100px; font-size: .92rem; font-weight: 600; cursor: pointer; transition: background .25s, border-color .25s, color .25s; background: var(--card); }
.voucher-amount:hover, .voucher-amount.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- CTA STRIP ---------- */
.cta-strip { position: relative; overflow: hidden; background: linear-gradient(150deg, #9a8369 0%, var(--taupe) 46%, var(--taupe-d) 100%); color: #fff; padding: clamp(68px, 9vw, 114px) 0; text-align: center; }
.cta-strip::before, .cta-strip::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .055); pointer-events: none; }
.cta-strip::before { width: 320px; height: 320px; top: -120px; left: -80px; }
.cta-strip::after { width: 260px; height: 260px; bottom: -120px; right: -60px; }
.cta-strip__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-strip__eyebrow { font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.cta-strip__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.8vw, 3.3rem); line-height: 1.1; margin-bottom: 18px; }
.cta-strip__text { color: rgba(255,255,255,.82); max-width: 48ch; margin: 0 auto 34px; }
.cta-strip .btn--light { background: #fff; color: var(--taupe-d); border-color: #fff; }
.cta-strip .btn--light:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.cta-strip .btn--ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.cta-strip .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.cta-strip__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Seamless join when two brown sections stack (e.g. band + CTA on O mně):
   match the colour where they meet so there's no hard line between them. */
/* A values band sitting directly above a CTA becomes light with brown
   elements, so the two stacked sections read as clearly separate (the CTA
   stays brown). */
.band:has(+ .cta-strip) { background: var(--bg-2); color: var(--ink); }
.band:has(+ .cta-strip)::before { background: radial-gradient(circle, rgba(154, 108, 64, .10), transparent 70%); }
.band:has(+ .cta-strip)::after { background: radial-gradient(circle, rgba(154, 108, 64, .07), transparent 70%); }
.band:has(+ .cta-strip) .band__eyebrow { color: var(--accent); }
.band:has(+ .cta-strip) .band__title { color: var(--ink); }
.band:has(+ .cta-strip) .band__text { color: var(--ink-2); }
.band:has(+ .cta-strip) .tags { border-top-color: var(--line); }

/* ---------- O MNĚ PAGE ---------- */
.about-page { padding: var(--section) 0; }
.about-page__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.about-page__fig { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--bg-2); box-shadow: 0 40px 80px -50px rgba(44,38,32,.5); position: sticky; top: 100px; }
.about-page__fig img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about-page__fig.is-empty { background: linear-gradient(150deg, var(--bg-2), #e3d6c6); }
.about-page__certs { margin-top: 36px; }
.cert-list { list-style: none; margin-top: 16px; }
.cert-list li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.cert-list li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; background: rgba(154,108,64,.12); color: var(--accent); font-size: .8rem; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 880px) {
  .about__inner, .pricing__cols, .contact__inner { grid-template-columns: 1fr; }
  .about__fig { max-width: 420px; margin-inline: auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .gtile--tall { grid-row: span 1; } .gtile--wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: span 2; }
  .service-intro__inner, .voucher-page__inner, .about-page__inner { grid-template-columns: 1fr; }
  .about-page__fig { position: static; max-width: 420px; margin-inline: auto; }
  .gallery-page__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .qcontact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .nav__bar { padding-left: 14px; padding-right: 14px; }
  .brand { gap: 9px; }
  .brand__mark, .brand__mark svg { width: 46px; height: 46px; }
  .brand__name { font-size: 1.18rem; }
  .nav__links {
    position: fixed; inset: 0; width: 100%; margin-left: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    text-align: left;
    background: var(--bg); padding: 82px 18px 104px; overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px);
    transition: opacity .4s var(--ease), transform .45s var(--ease), visibility .4s;
    z-index: 130;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav__links > a { display: block; width: 100%; text-align: left; font-family: var(--serif);
    font-size: 1.3rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink);
    padding: 10px 18px; border-radius: 12px; transition: background .25s, color .25s; }
  .nav__links > a:hover { background: var(--bg-2); }
  .nav__links > a.is-active { background: rgba(154, 108, 64, .1); color: var(--accent); }
  .nav__links a::after { display: none; }
  /* Rezervovat as a full-width button pinned to the bottom of the open menu */
  .nav__cta { display: none; }
  .nav:has(.nav__links.is-open) .nav__cta {
    display: flex; position: fixed; left: 18px; right: 18px; bottom: 26px; z-index: 135;
    padding: 18px 24px; font-size: .82rem; justify-content: center; box-shadow: 0 16px 34px -16px rgba(154, 108, 64, .7);
  }
  .burger { display: flex; position: relative; z-index: 140; width: auto; height: auto; padding: 10px; justify-content: center; background: none; border: none; border-radius: 0; -webkit-backdrop-filter: none; backdrop-filter: none; }
  /* boxed X when the menu is open, like the reference */
  .burger.is-open { background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 6px 18px -10px rgba(44, 38, 32, .3); }
  /* keep the logo visible above the open menu (top-left), like the reference */
  .nav:has(.nav__links.is-open) .brand { opacity: 1; z-index: 140; }
  .nav:has(.nav__links.is-open) .brand__mark { color: var(--accent); }
  /* keep the brand text readable against the light open menu */
  .nav:has(.nav__links.is-open) .brand__sub { color: var(--ink-2); }
  .nav:has(.nav__links.is-open) .brand__name em { color: var(--accent); }
  /* keep nav dark while menu open */
  .nav:has(.nav__links.is-open) { color: var(--ink); }
  .cards { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .tag { font-size: .68rem; padding: 12px 18px; }
  .tags { gap: 10px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  /* hero a touch over the LARGE viewport so the photo fills + spills below
     the fold (no white strip); CTAs lifted so they stay visible with photo
     continuing beneath them — like the reference */
  /* hero a touch over the viewport so the photo extends a bit lower; CTAs
     stay visible with a modest lift */
  .hero { min-height: 104vh; }
  .hero__bg { inset: -30px 0 -100px 0; }
  .hero__bg img { object-position: center 32%; }
  .hero__content { padding-bottom: clamp(78px, 13vh, 130px); }
  /* dropdown: collapsible "Služby" group — opens only when tapped */
  .nav__drop { display: flex; flex-direction: column; align-items: stretch; width: 100%; }
  .nav__droptoggle {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
    letter-spacing: 0; text-transform: none; color: var(--ink);
    display: flex; align-items: center; justify-content: flex-start; gap: 9px; width: 100%; cursor: pointer;
    padding: 10px 18px; border-radius: 12px;
  }
  .nav__droptoggle::after {
    content: ""; display: inline-block; width: 9px; height: 6px;
    background: currentColor; clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: transform .3s var(--ease); flex-shrink: 0;
  }
  .nav__drop.is-open .nav__droptoggle { color: var(--accent); }
  .nav__drop.is-open .nav__droptoggle::after { transform: rotate(180deg); }
  .nav__submenu {
    position: static; transform: none; width: 100%;
    opacity: 0; visibility: hidden; max-height: 0; overflow: hidden;
    background: none; border: none; box-shadow: none; padding: 0; min-width: auto;
    display: flex; flex-direction: column; align-items: stretch; gap: 12px;
    transition: opacity .3s var(--ease), max-height .4s var(--ease), margin .3s, visibility .3s;
  }
  .nav__submenu::before { display: none; }
  .nav__drop.is-open .nav__submenu,
  .nav__drop.is-current .nav__submenu {
    opacity: 1; visibility: visible; max-height: 600px; margin-top: 12px;
    transform: none;
  }
  .nav__drop.is-current .nav__droptoggle { color: var(--accent); }
  .nav__drop.is-current .nav__droptoggle::after { transform: rotate(180deg); }
  .nav__submenu a {
    display: block; width: 100%;
    font-family: var(--serif); font-size: 1.02rem; font-weight: 400;
    padding: 5px 18px 5px 36px; color: var(--ink-2); text-align: left; letter-spacing: 0;
  }
  .nav__submenu a:hover { padding-left: 36px; background: none; color: var(--accent); }
  /* highlight the current page inside the open menu (top level + submenu) */
  .nav__submenu a.is-active { color: var(--accent); font-weight: 600; }
  .nav__droptoggle.is-active { color: var(--accent); }
  /* quick contact cards: 2 col on mobile */
  .qcontact-cards { grid-template-columns: 1fr 1fr; }
  .gallery-page__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .page-hero { min-height: 34vh; }
  .page-hero__content { padding-top: 104px; padding-bottom: clamp(28px, 5vw, 44px); padding-left: clamp(18px, 5vw, 40px); padding-right: clamp(18px, 5vw, 40px); }
  .page-hero__breadcrumb { font-size: .62rem; letter-spacing: .03em; gap: 5px 8px; }
}

/* tighter reveal on mobile — less travel, snappier */
@media (max-width: 600px) {
  .reveal { transform: translateY(16px); transition-duration: .65s; }
  .cards .reveal:nth-child(n) { transition-delay: .06s; }
  .cards .reveal:nth-child(2) { transition-delay: .14s; }
  .cards .reveal:nth-child(3) { transition-delay: .22s; }

  /* gift voucher page — stack cleanly, no overflow */
  .voucher-page__inner { gap: 30px; }
  .voucher-amounts { gap: 9px; }
  .voucher-amount { padding: 11px 18px; font-size: .82rem; }
  .voucher-preview__dl { font-size: .72rem; }

  /* quote: lighten decorative circles so text stays readable */
  .quote::before { width: 220px; height: 220px; top: -90px; left: -70px; }
  .quote::after { width: 180px; height: 180px; bottom: -90px; right: -50px; }
  .quote__inner::before { font-size: 6.5rem; }

  /* gift voucher banner on homepage */
  .voucher { padding-left: 22px; padding-right: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   EDITORIAL REFRESH — body reads as a left-aligned magazine, not centered bands
   ========================================================================== */

/* 1. Section heads: centered & airy, with a dash-eyebrow + subtitle -------- */
.head--center { text-align: center; }
.head--center .eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 14px; }
.head--center .eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--accent); flex-shrink: 0; }
.head--center .display::after { margin: 22px auto 0; }

/* Centered magazine opener: dash-eyebrow, big serif heading, subtitle ------- */
.section-head { display: block; text-align: center; max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head__lead .display { margin: 0; }
.section-head .eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 16px; }
.section-head .eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--accent); flex-shrink: 0; }
.section-head__note { color: var(--ink-2); font-size: 1.02rem; line-height: 1.65;
  max-width: 56ch; margin: 18px auto 0; }

/* 2. Taupe band becomes an asymmetric split (text left · tags stacked right) */
.band--split .band__grid { display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 76px); align-items: center; }
.band--split .band__inner { text-align: left; max-width: none; margin: 0; }
.band--split .band__eyebrow { display: inline-flex; align-items: center; gap: 14px; }
.band--split .band__eyebrow::before { content: ""; width: 32px; height: 1px; background: rgba(255,255,255,.6); flex-shrink: 0; }
.band--split .band__text { margin: 0; max-width: 46ch; }
.band__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) { .band--split .band__grid { grid-template-columns: 1fr; } }

/* 3. Feature split — real photo + copy (replaces the centered dark voucher box) */
.feature { display: grid; grid-template-columns: .82fr 1.18fr; align-items: stretch;
  background: var(--card); border: 1px solid rgba(44,38,32,.06); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 30px 60px -42px rgba(44,38,32,.42);
  margin-top: clamp(30px, 4vw, 48px); }
.feature__fig { position: relative; overflow: hidden; min-height: 280px; background: var(--bg-2); }
.feature__fig img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.feature:hover .feature__fig img { transform: scale(1.04); }
.feature__fig.is-empty { background: linear-gradient(150deg, var(--bg-2), #e3d6c6); }
.feature__body { padding: clamp(30px, 4.5vw, 60px); align-self: center; }
.feature__eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.feature__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--accent); flex-shrink: 0; }
.feature__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.08; letter-spacing: -.01em; margin-bottom: 16px; }
.feature__text { color: var(--ink-2); max-width: 48ch; margin-bottom: 28px; }
@media (max-width: 760px) { .feature { grid-template-columns: 1fr; }
  .feature__fig { aspect-ratio: 16/10; min-height: 0; } }

/* 4. Pull-quote: centered & airy ------------------------------------------- */
.pricing__teaser { position: relative; overflow: hidden; background: var(--card);
  border: 1px solid rgba(44,38,32,.06); border-radius: var(--radius); text-align: center;
  padding: clamp(30px, 5vw, 60px); box-shadow: 0 44px 90px -60px rgba(44,38,32,.5);
  border-top: 3px solid var(--accent); }
.pricing__teaser p { color: var(--ink-2); font-size: 1.05rem; max-width: 58ch; margin: 0 auto 6px; }
.pricing__teaser .pricing__note { text-align: center; margin: 10px 0 0; }
.pricing__teaser-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; justify-content: center; }

/* 6. Alternate the photo side on service subpages so they stop looking identical */
.service-intro--rev .service-intro__fig { order: 2; }
@media (max-width: 880px) { .service-intro--rev .service-intro__fig { order: 0; } }

/* band--split on a light background (sits above a CTA): accent rule, not white */
.band--split:has(+ .cta-strip) .band__eyebrow::before { background: var(--accent); }

/* ---------- COSMETIC DEVICES (přístroje) ---------- */
.devices { padding: var(--section) 0; }
.devices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 26px); }
.device { position: relative; background: var(--card); border: 1px solid rgba(44,38,32,.06);
  border-radius: var(--radius); padding: clamp(26px, 3.4vw, 42px);
  box-shadow: 0 14px 34px -24px rgba(44,38,32,.3);
  transition: transform .45s var(--ease), box-shadow .45s; }
.device:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -34px rgba(44,38,32,.42); }
.device__index { display: inline-block; font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 1.5rem; line-height: 1; color: var(--accent); margin-bottom: 16px; }
.device__index::after { content: ""; display: block; width: 30px; height: 1px; background: var(--accent); margin-top: 14px; opacity: .5; }
.device h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 12px; }
.device p { color: var(--ink-2); font-size: .96rem; line-height: 1.65; }
@media (max-width: 760px) { .devices__grid { grid-template-columns: 1fr; } }

/* ---------- REASONS — "Proč právě já" icon cards (inspired by reference) --- */
.reasons { padding: var(--section) 0; background: var(--bg-2); }
.reasons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
.reason { background: var(--card); border: 1px solid rgba(44,38,32,.06); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px) clamp(22px, 2.4vw, 30px); text-align: center;
  box-shadow: 0 14px 34px -24px rgba(44,38,32,.3);
  transition: transform .45s var(--ease), box-shadow .45s; }
.reason:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -34px rgba(44,38,32,.42); }
.reason__icon { width: 60px; height: 60px; margin: 0 auto 20px; border-radius: 18px;
  background: rgba(154,108,64,.1); display: grid; place-items: center; }
.reason__icon svg { width: 27px; height: 27px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.reason h3 { font-family: var(--serif); font-weight: 500; font-size: 1.34rem; letter-spacing: -.01em; margin-bottom: 10px; }
.reason p { color: var(--ink-2); font-size: .92rem; line-height: 1.62; }
@media (max-width: 880px) { .reasons__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .reasons__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   REFERENCE PASS 2 — quick links, big price cards, lighter band
   ========================================================================== */

/* A. Quick links under the hero (3 icon cards) ----------------------------- */
.quicklinks { padding: clamp(56px, 8vw, 96px) 0 0; }
.quicklinks + .services { padding-top: clamp(46px, 6vw, 74px); }
.quicklinks__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.quicklink { display: block; background: var(--card); border: 1px solid rgba(44,38,32,.06);
  border-radius: var(--radius); padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 14px 34px -24px rgba(44,38,32,.3);
  transition: transform .45s var(--ease), box-shadow .45s; }
.quicklink:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -34px rgba(44,38,32,.42); }
.quicklink__icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(154,108,64,.1);
  display: grid; place-items: center; margin-bottom: 20px; }
.quicklink__icon svg { width: 25px; height: 25px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.quicklink h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 10px; }
.quicklink p { color: var(--ink-2); font-size: .95rem; margin-bottom: 16px; }
.quicklink__arrow { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 6px; transition: gap .3s var(--ease); }
.quicklink__arrow::after { content: "→"; }
.quicklink:hover .quicklink__arrow { gap: 10px; }
/* On phones the three quick links sit side by side as compact icon+title
   chips (the description/arrow would be unreadable in a narrow third). */
@media (max-width: 820px) {
  .quicklinks__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .quicklink { padding: clamp(14px, 3.5vw, 22px) clamp(8px, 2vw, 14px); text-align: center; }
  .quicklink__icon { width: clamp(42px, 12vw, 52px); height: clamp(42px, 12vw, 52px);
    margin: 0 auto 12px; border-radius: 14px; }
  .quicklink__icon svg { width: 21px; height: 21px; }
  .quicklink h3 { font-size: clamp(.98rem, 3.6vw, 1.2rem); margin-bottom: 0; line-height: 1.2; }
  .quicklink p, .quicklink__arrow { display: none; }
}

/* B. Big price cards — restyle the menu lists into airy cards --------------- */
.pricing__card { background: transparent; border: none; box-shadow: none; padding: 0; overflow: visible; }
.pricing__card::before { display: none; }
.menu__cat { border-bottom: none; padding-bottom: 0; margin-bottom: 18px; }
.menu__cat:not(:first-child) { margin-top: 42px; }
.menu ul { display: flex; flex-direction: column; gap: 14px; }
.menu li { margin: 0; border-radius: 18px; gap: 20px; align-items: center;
  padding: clamp(18px, 2.3vw, 26px) clamp(22px, 3vw, 34px);
  background: var(--card); border: 1px solid rgba(44,38,32,.07);
  box-shadow: 0 10px 28px -22px rgba(44,38,32,.3);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.menu li:hover { background: var(--card); transform: translateY(-3px);
  box-shadow: 0 22px 44px -26px rgba(44,38,32,.4); border-color: rgba(154,108,64,.25); }
.menu li i { display: none; }
.menu li span { font-family: var(--serif); font-weight: 500; font-size: clamp(1.24rem, 2.2vw, 1.55rem); flex: 1; letter-spacing: -.01em; }
.menu li b { font-size: 1.12rem; }

/* C. Lighter homepage band (airier, closer to the light reference) --------- */
.band--light { background: var(--bg-2); color: var(--ink); }
.band--light::before { background: radial-gradient(circle, rgba(154,108,64,.10), transparent 70%); }
.band--light::after { background: radial-gradient(circle, rgba(154,108,64,.07), transparent 70%); }
.band--light .band__eyebrow { color: var(--accent); }
.band--light .band__eyebrow::before { background: var(--accent); }
.band--light .band__title { color: var(--ink); }
.band--light .band__text { color: var(--ink-2); }

/* ---------- CENÍK — kosmetické rituály (detailní karty) ------------------- */
.rituals { max-width: 880px; margin: 0 auto; }
.rituals__cat { font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.2rem); color: var(--ink); margin: 0 0 20px; }
.rituals__cat:not(:first-child) { margin-top: clamp(40px, 6vw, 60px); }
.ritual { background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: 18px;
  padding: clamp(22px, 3vw, 32px); margin-bottom: 14px; box-shadow: 0 12px 30px -24px rgba(44,38,32,.35);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.ritual:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -28px rgba(44,38,32,.42); border-color: rgba(154,108,64,.22); }
.ritual__head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px 20px; flex-wrap: wrap; margin-bottom: 12px; }
.ritual__name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.3vw, 1.62rem);
  letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ritual__dur { font-family: var(--ui); font-size: .62rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-2); background: rgba(154,108,64,.1); padding: 5px 11px; border-radius: 100px; white-space: nowrap; }
.ritual__price { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--accent); white-space: nowrap; margin-left: auto; }
.ritual__desc { color: var(--ink-2); font-size: .95rem; line-height: 1.62; }
.ritual__note { color: var(--ink-2); font-size: .84rem; font-style: italic; margin-top: 11px; padding-top: 11px; border-top: 1px dashed var(--line-2); }
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.addon { display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 15px clamp(18px, 2.4vw, 24px); background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: 14px; }
.addon__name { font-family: var(--serif); font-weight: 500; font-size: 1.14rem; }
.addon__dur { font-family: var(--ui); font-size: .74rem; color: var(--ink-2); margin-left: 8px; }
.addon__price { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--accent); white-space: nowrap; }
.rituals__gift { text-align: center; font-style: italic; color: var(--ink-2); font-size: .95rem;
  max-width: 62ch; margin: clamp(34px, 5vw, 50px) auto 0; }
@media (max-width: 620px) { .addons { grid-template-columns: 1fr; } }

/* ---------- FAQ (accordion) ----------------------------------------------- */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item { background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: 16px;
  overflow: hidden; box-shadow: 0 12px 30px -24px rgba(44,38,32,.32); transition: border-color .3s, box-shadow .3s; }
.faq__item.is-open { border-color: rgba(154,108,64,.28); box-shadow: 0 22px 44px -28px rgba(44,38,32,.4); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; background: none; border: none; cursor: pointer; font-family: var(--serif);
  font-weight: 500; font-size: clamp(1.15rem, 2.2vw, 1.4rem); color: var(--ink);
  padding: clamp(18px, 2.6vw, 25px) clamp(20px, 3vw, 30px); letter-spacing: -.01em; }
.faq__ico { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__ico::before, .faq__ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .35s var(--ease); }
.faq__ico::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__ico::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq__item.is-open .faq__ico::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 clamp(20px, 3vw, 30px) clamp(20px, 2.6vw, 26px); color: var(--ink-2);
  font-size: .96rem; line-height: 1.62; margin: 0; }

/* ---------- CONTACT (cards + map + CTA, no form) -------------------------- */
.contact__grid { display: flex; flex-direction: column; gap: clamp(22px, 3.5vw, 38px); max-width: 960px; margin: 0 auto; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FOOTER — map + navigace + spojení (reference style) ----------- */
.footer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(40px, 6vw, 64px); border-bottom: 1px solid rgba(255,255,255,.08); align-items: stretch; }
.footer__map { border-radius: 18px; overflow: hidden; min-height: 300px; background: rgba(255,255,255,.05); box-shadow: 0 24px 50px -30px rgba(0,0,0,.5); }
.footer__map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; filter: grayscale(.2) saturate(.9) brightness(.96); }
.footer__content { display: flex; flex-direction: column; }
.footer__quote { font-family: var(--serif); font-style: italic; font-size: 1.16rem; line-height: 1.5;
  color: rgba(255,255,255,.8); margin-top: 18px; max-width: 42ch; }
.footer__socials { display: flex; gap: 12px; margin-top: 24px; }
.footer__social { width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: var(--bg); transition: background .3s, color .3s, transform .3s var(--ease); }
.footer__social:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); margin-top: clamp(32px, 4vw, 44px); }
.footer__contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__contact li { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--bg); opacity: .82; }
.footer__contact a { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.footer__contact li a:hover { color: #e9c79b; opacity: 1; }
.footer__contact svg { width: 18px; height: 18px; fill: none; stroke: #e9c79b; stroke-width: 1.6; flex-shrink: 0; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__map { min-height: 240px; order: -1; }
}
@media (max-width: 480px) { .footer__links { grid-template-columns: 1fr; gap: 26px; } }

/* ==========================================================================
   GRAPHIC RICHNESS — lotus motif, ornaments, richer headings
   ========================================================================== */

/* Lotus glyph above every section heading (on-brand — salon's lotus logo) */
.section-head::before,
.head--center::before {
  content: ""; display: block; width: 56px; height: 32px; margin: 0 auto 16px;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%239a6c40' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
  opacity: .92;
}
/* On dark/taupe sections the lotus turns cream */
.band .section-head::before { filter: brightness(0) saturate(0) invert(1); opacity: .7; }

/* Faint lotus watermark to enliven the plainer light sections */
.faq, .reasons, .services, .devices { position: relative; overflow: hidden; }
.faq::before, .reasons::before, .services::before, .devices::before {
  content: ""; position: absolute; top: -40px; right: -50px; width: 320px; height: 320px;
  pointer-events: none; z-index: 0; opacity: .05;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%232c2620' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
}
.faq .wrap, .reasons .wrap, .services .wrap, .devices .wrap { position: relative; z-index: 1; }

/* Ceník cards: name left (wraps), price stays top-right — clearer heading */
.ritual__head { flex-wrap: nowrap; align-items: baseline; gap: 16px; }
.ritual__name { flex: 1; min-width: 0; }
.ritual__price { margin-left: 0; }
@media (max-width: 460px) {
  .ritual__head { flex-wrap: wrap; }
  .ritual__price { margin-left: auto; }
}

/* O mně — framed portrait (offset gold frame) + drop cap + colourful checks */
.about-page__fig { overflow: visible; box-shadow: none; background: none; }
.about-page__fig img { border-radius: var(--radius); position: relative; z-index: 1; box-shadow: 0 40px 80px -50px rgba(44,38,32,.5); }
.about-page__fig::before { content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--accent); border-radius: var(--radius); opacity: .5; z-index: 0; }
.dropcap::first-letter { float: left; font-family: var(--serif); font-weight: 600;
  font-size: 3.6rem; line-height: .78; padding: 6px 14px 0 0; color: var(--accent); }
.cert-list li::before { background: var(--accent); color: #fff; }

/* Contact — form + inline info (no card blocks) + gold submit button */
.btn--accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--accent:hover { background: #82542f; border-color: #82542f; color: #fff; }
.contact__info { align-self: center; }
.contact__info-title { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; margin-bottom: 22px; }
.contact__lines { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact__lines li { display: flex; align-items: center; gap: 14px; font-size: 1.02rem; color: var(--ink); }
.contact__lines a { color: inherit; }
.contact__lines a:hover { color: var(--accent); }
.contact__lines svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Lotus glyph on the taupe CTA/quote sections too (white), less "boring" */
.cta-strip__inner { position: relative; }
.cta-strip__inner::before {
  content: ""; display: block; width: 52px; height: 30px; margin: 0 auto 18px; opacity: .65;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
}

/* ==========================================================================
   DARK-GOLD ACCENT CARDS (feature + pricing teaser) & FOOTER POLISH
   ========================================================================== */

/* Feature (Ella Baché): dark gradient card, gold rim, white text ---------- */
.feature { background: linear-gradient(150deg, #3a322b 0%, var(--ink) 55%, #16120e 100%);
  border: 1px solid rgba(233,199,155,.28); }
.feature__body { position: relative; z-index: 1; }
.feature__eyebrow { color: #e9c79b; border: 1px solid rgba(233,199,155,.45);
  border-radius: 100px; padding: 9px 18px; }
.feature__eyebrow::before { background: #e9c79b; width: 22px; }
.feature__title { color: #fff; }
.feature__text { color: rgba(255,255,255,.82); }
.feature .btn { background: var(--accent); border-color: var(--accent); color: #fff; }
.feature .btn:hover { background: #e9c79b; border-color: #e9c79b; color: var(--ink); }
.feature__fig::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(28,21,16,.45) 100%); }
@media (max-width: 760px) { .feature__fig::after { background: linear-gradient(180deg, transparent 55%, rgba(28,21,16,.5) 100%); } }

/* Pricing teaser: matching dark-gold banner with lotus ornament ------------ */
.pricing__teaser { background: linear-gradient(150deg, #3a322b 0%, var(--ink) 55%, #16120e 100%);
  border: 1px solid rgba(233,199,155,.28); border-top: none; position: relative; }
.pricing__teaser::before { content: ""; position: absolute; inset: auto -60px -70px auto; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(233,199,155,.14), transparent 70%); pointer-events: none; }
.pricing__teaser::after { content: ""; position: absolute; top: -40px; left: -50px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(154,108,64,.25), transparent 70%); pointer-events: none; }
.pricing__teaser p { color: rgba(255,255,255,.86); position: relative; z-index: 1; }
.pricing__teaser .pricing__note { color: rgba(255,255,255,.6); }
.pricing__teaser-btns { position: relative; z-index: 1; }
.pricing__teaser .btn { background: var(--accent); border-color: var(--accent); color: #fff; }
.pricing__teaser .btn:hover { background: #e9c79b; border-color: #e9c79b; color: var(--ink); }
.pricing__teaser .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.pricing__teaser .btn--ghost:hover { border-color: #e9c79b; color: #e9c79b; }

/* Footer polish (mobile especially) ---------------------------------------- */
.footer__contact li { align-items: flex-start; text-align: left; }
.footer__contact li svg { margin-top: 2px; }
.footer__contact li, .footer__contact a { justify-content: flex-start; }
@media (max-width: 860px) {
  .footer__grid { gap: 34px; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__quote { font-size: 1.05rem; }
  .footer__bottom { justify-content: flex-start; text-align: left; }
}

/* footer contact rows must not wrap the icon onto its own line */
.footer__contact li { flex-wrap: nowrap; }
.footer__contact li > span, .footer__contact li > a { min-width: 0; }

/* ---------- 3 SIMPLE STEPS (Základ úspěchu krásné pleti) ------------------ */
.steps3 { padding: var(--section) 0; background: var(--bg-2); position: relative; overflow: hidden; }
.steps3::before { content: ""; position: absolute; top: -40px; right: -50px; width: 300px; height: 300px;
  pointer-events: none; opacity: .05;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%232c2620' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
}
.steps3 .wrap { position: relative; z-index: 1; }
.steps3__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.step3 { position: relative; background: var(--card); border: 1px solid rgba(44,38,32,.07);
  border-radius: var(--radius); padding: clamp(30px, 3.6vw, 46px) clamp(24px, 3vw, 36px) clamp(26px, 3vw, 38px);
  box-shadow: 0 14px 34px -24px rgba(44,38,32,.3); text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s; }
.step3:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -34px rgba(44,38,32,.42); }
.step3__num { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(154,108,64,.1); border: 1px solid rgba(154,108,64,.3);
  font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.5rem; color: var(--accent);
  margin-bottom: 18px; }
.step3 h3 { font-family: var(--serif); font-weight: 500; font-size: 1.55rem; letter-spacing: -.01em; margin-bottom: 10px; }
.step3 p { color: var(--ink-2); font-size: .95rem; line-height: 1.65; }
.step3::after { content: ""; position: absolute; top: 50%; right: -22px; width: 22px; height: 1px;
  background: var(--line-2); display: none; }
@media (min-width: 881px) { .step3:not(:last-child)::after { display: block; } }
@media (max-width: 880px) { .steps3__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* device cards: product photo on top */
.device__fig { aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid rgba(44,38,32,.06); margin-bottom: 20px; display: grid; place-items: center; }
.device__fig img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .6s var(--ease); }
.device:hover .device__fig img { transform: scale(1.05); }
.device__fig.is-empty { background: linear-gradient(150deg, var(--bg-2), #e3d6c6); }

/* ---------- GOOGLE REVIEWS ------------------------------------------------ */
.greviews { padding: var(--section) 0; }
.greviews__badge { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px;
  background: var(--card); border: 1px solid rgba(44,38,32,.08); border-radius: 100px;
  padding: 12px 22px; box-shadow: 0 10px 26px -18px rgba(44,38,32,.3); font-size: .92rem; }
.greviews__badge b { font-family: var(--serif); font-size: 1.25rem; }
.greviews__stars { color: #e2a53c; letter-spacing: .12em; font-size: .95rem; }
.greviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 24px); }
.greview { background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: var(--radius);
  padding: clamp(24px, 2.8vw, 34px); box-shadow: 0 14px 34px -24px rgba(44,38,32,.3);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .45s var(--ease), box-shadow .45s; }
.greview:hover { transform: translateY(-5px); box-shadow: 0 28px 52px -32px rgba(44,38,32,.42); }
.greview__stars { color: #e2a53c; letter-spacing: .14em; font-size: .9rem; }
.greview__text { color: var(--ink-2); font-size: .95rem; line-height: 1.65; flex: 1; }
.greview__meta { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
.greview__avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(154,108,64,.12);
  display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-weight: 600; color: var(--accent); }
.greview__name { font-weight: 600; font-size: .9rem; }
.greview__src { font-size: .74rem; color: var(--ink-2); }
.greviews__more { text-align: center; margin-top: clamp(28px, 4vw, 40px); }
@media (max-width: 880px) { .greviews__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ---------- AKTUALITY (news) ---------------------------------------------- */
.news { padding: var(--section) 0; }
.news__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 30px); max-width: 980px; margin: 0 auto; }
.news-card { background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 14px 34px -24px rgba(44,38,32,.3); display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s; }
.news-card:hover { transform: translateY(-5px); box-shadow: 0 28px 52px -32px rgba(44,38,32,.42); }
.news-card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: clamp(22px, 2.8vw, 32px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card__date { font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.news-card__body h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; }
.news-card__body p { color: var(--ink-2); font-size: .95rem; line-height: 1.65; }
@media (max-width: 760px) { .news__grid { grid-template-columns: 1fr; } }

/* footer Spojení rows: force row direction (old footer CSS set column) */
.footer__contact li { flex-direction: row; align-items: center; }

/* ==========================================================================
   CONTACT PANEL — dark gold split: big phone + rows left, map right
   ========================================================================== */
.cpanel { display: grid; grid-template-columns: 1.05fr .95fr; border-radius: var(--radius);
  overflow: hidden; background: linear-gradient(150deg, #3a322b 0%, var(--ink) 55%, #16120e 100%);
  border: 1px solid rgba(233,199,155,.28); box-shadow: 0 40px 80px -50px rgba(44,38,32,.6); }
.cpanel__body { padding: clamp(30px, 4.5vw, 60px); position: relative; }
.cpanel__body::before { content: ""; position: absolute; top: -60px; left: -70px; width: 240px; height: 240px;
  border-radius: 50%; background: radial-gradient(circle, rgba(154,108,64,.28), transparent 70%); pointer-events: none; }
.cpanel__eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: #e9c79b;
  border: 1px solid rgba(233,199,155,.45); border-radius: 100px; padding: 9px 18px; margin-bottom: 20px; }
.cpanel__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08; letter-spacing: -.01em; color: #fff; margin-bottom: 8px; }
.cpanel__phone { display: inline-block; font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.2rem); color: #e9c79b; letter-spacing: .01em; margin: 10px 0 22px;
  transition: color .3s; }
.cpanel__phone:hover { color: #fff; }
.cpanel__rows { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.cpanel__rows li { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.85); font-size: .98rem; }
.cpanel__rows a { color: inherit; }
.cpanel__rows a:hover { color: #e9c79b; }
.cpanel__rows svg { width: 20px; height: 20px; fill: none; stroke: #e9c79b; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.cpanel__btns { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 26px; }
.cpanel .btn--gold { background: var(--accent); border-color: var(--accent); color: #fff; }
.cpanel .btn--gold:hover { background: #e9c79b; border-color: #e9c79b; color: var(--ink); }
.cpanel .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cpanel .btn--ghost:hover { color: #e9c79b; border-color: #e9c79b; background: none; }
.cpanel__socials { display: flex; gap: 11px; }
.cpanel__social { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #fff; transition: background .3s, color .3s, transform .3s var(--ease); }
.cpanel__social:hover { background: var(--accent); transform: translateY(-3px); }
.cpanel__social svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cpanel__map { min-height: 380px; background: rgba(255,255,255,.05); }
.cpanel__map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block;
  filter: grayscale(.15) saturate(.92); }
@media (max-width: 880px) {
  .cpanel { grid-template-columns: 1fr; }
  .cpanel__map { min-height: 260px; }
}

/* Gallery grids: backfill holes left by tall/wide tiles */
.gallery__grid, .gallery-page__grid { grid-auto-flow: dense; }

/* O mně: the offset gold frame draws a stray line on small screens — hide it */
@media (max-width: 880px) {
  .about-page__fig::before { display: none; }
}

/* ---------- ARTICLE DETAIL ------------------------------------------------ */
.article { padding: var(--section) 0; }
.article__wrap { max-width: 720px; margin: 0 auto; }
.article__date { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 14px; }
.article__wrap h2 { font-family: var(--serif); font-weight: 500; font-size: 1.6rem; margin: 30px 0 12px; letter-spacing: -.01em; }
.article__wrap p { color: var(--ink-2); line-height: 1.75; margin-bottom: 16px; }
.article__fig { border-radius: var(--radius); overflow: hidden; margin: 26px 0; }
.article__back { margin-top: 34px; }

/* steps3 with circular photos + number badge (like the client's real site) */
.step3__fig { position: relative; width: clamp(150px, 16vw, 190px); height: clamp(150px, 16vw, 190px);
  margin: 0 auto 22px; }
.step3__fig img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 3px solid rgba(154,108,64,.35); padding: 6px; background: var(--card); }
.step3__fig .step3__num { position: absolute; right: -6px; top: -6px; margin: 0;
  width: 54px; height: 54px; background: var(--accent); color: #fff; border: none;
  box-shadow: 0 10px 24px -10px rgba(154,108,64,.7); }

/* ==========================================================================
   RESPONSIVE & POLISH PASS — burger ≤1080, lightbox nav, map→photo, animace
   ========================================================================== */

/* Lotus glyph shows on plain section heads too (owner's wish) */
.section-head--plain::before { display: block; }

/* Burger menu already at tablet widths — long brand + 8 links need ≥1240px */
@media (max-width: 1239px) {
  .nav__links {
    position: fixed; inset: 0; width: 100%; margin-left: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    text-align: left; background: var(--bg); padding: 92px 18px 120px; overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px);
    transition: opacity .4s var(--ease), transform .45s var(--ease), visibility .4s;
    z-index: 130;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav__links > a { display: block; width: 100%; text-align: left; font-family: var(--serif);
    font-size: 1.3rem; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--ink);
    padding: 10px 18px; border-radius: 12px; transition: background .25s, color .25s; }
  .nav__links > a:hover { background: var(--bg-2); }
  .nav__links > a.is-active { background: rgba(154, 108, 64, .1); color: var(--accent); }
  .nav__links a::after { display: none; }
  .nav__cta { display: none; }
  .nav:has(.nav__links.is-open) .nav__cta {
    display: flex; position: fixed; left: 18px; right: 18px; bottom: 26px; z-index: 135;
    padding: 18px 24px; font-size: .82rem; justify-content: center;
    box-shadow: 0 16px 34px -16px rgba(154, 108, 64, .7);
  }
  .burger { display: flex; position: relative; z-index: 140; padding: 10px; justify-content: center; background: none; border: none; }
  .burger.is-open { background: var(--card); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 6px 18px -10px rgba(44, 38, 32, .3); }
  .nav:has(.nav__links.is-open) .brand { opacity: 1; z-index: 140; }
  .nav:has(.nav__links.is-open) .brand__mark { color: var(--accent); }
  .nav:has(.nav__links.is-open) { color: var(--ink); }
}

/* Lightbox prev/next arrows */
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(28,21,16,.45); color: #fff; font-size: 1.25rem; cursor: pointer;
  display: grid; place-items: center; transition: background .3s, border-color .3s; }
.lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
@media (max-width: 600px) { .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; } }

/* Map replaced by a photo that opens Google Maps (embeds failed to load) */
.cpanel__map, .footer__map { position: relative; display: block; overflow: hidden; }
.cpanel__map img, .footer__map img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.cpanel__map:hover img, .footer__map:hover img { transform: scale(1.04); }
.maplink { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(253,251,248,.95); color: var(--ink); font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 12px 22px; border-radius: 100px;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.5); transition: background .3s, color .3s; }
.cpanel__map:hover .maplink, .footer__map:hover .maplink { background: var(--accent); color: #fff; }

/* Footer mobile: content first, photo after, tighter */
@media (max-width: 860px) {
  .footer__map { order: 2; min-height: 200px; }
  .footer__map img { min-height: 200px; }
  .footer__grid { padding-bottom: 34px; }
  .footer__quote { font-size: 1rem; }
  .footer__links { gap: 22px; }
}

/* O mně "Můj příběh": photo breathing room on mobile */
@media (max-width: 880px) {
  .about-page { padding-top: clamp(44px, 8vw, 70px); }
  .about-page__inner { gap: 26px; }
  .about-page__fig { max-width: none; aspect-ratio: 16/11; }
}

/* ---------- Animace ---------- */
@keyframes floatSoft { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
.faq::before, .reasons::before, .services::before, .devices::before, .steps3::before { animation: floatSoft 9s ease-in-out infinite; }
@keyframes heroZoomSub { from { transform: scale(1.08); } to { transform: scale(1); } }
.page-hero__bg img { animation: heroZoomSub 12s var(--ease) both; }
@keyframes badgePop { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.greviews__badge { animation: badgePop .8s var(--ease) both; }
.cpanel__phone { position: relative; }
.cpanel__phone::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: #e9c79b; transition: width .45s var(--ease); }
.cpanel__phone:hover::after { width: 100%; }

/* cpanel without media side: single centered column */
.cpanel { display: block; max-width: 860px; margin: 0 auto; }
.cpanel__body { text-align: center; }
.cpanel__rows li { justify-content: center; }
.cpanel__btns, .cpanel__socials { justify-content: center; }

/* Device product shots: blend the white photo background into the card */
.device__fig { background: transparent; border: none; border-radius: 0; margin-bottom: 12px; }
.device__fig img { mix-blend-mode: multiply; filter: sepia(.06) saturate(1.03); padding: 0; }
.device:hover .device__fig img { transform: scale(1.04); }

/* Hard clamp against any horizontal overflow (incl. Safari page zoom) */
html, body { overflow-x: clip; }
main, section, .wrap { max-width: 100vw; }
img, svg, iframe { max-width: 100%; }

/* ---------- Výraznější nadpisy ---------- */
.display { font-weight: 600; letter-spacing: -.015em; }
.hero__title { font-weight: 500; }
.section-head .eyebrow { color: var(--accent); font-weight: 600; }
.rituals__cat { font-size: clamp(1.9rem, 3.8vw, 2.5rem); }
.ritual__name { font-weight: 600; }
.feature__title, .cpanel__title, .band__title, .cta-strip__title { font-weight: 600; }
.reason h3, .step3 h3, .device h3, .quicklink h3, .card__body h3,
.news-card__body h3, .faq__q { font-weight: 600; }

/* ---------- cpanel rows: shared left edge, block centered (mobile fix) ---- */
.cpanel__rows { display: inline-flex; flex-direction: column; align-items: flex-start;
  text-align: left; margin-left: auto; margin-right: auto; }
.cpanel__rows li { justify-content: flex-start; align-items: flex-start; }
.cpanel__rows svg { margin-top: 3px; }
.cpanel__body { display: flex; flex-direction: column; align-items: center; }
.cpanel__body > * { max-width: 100%; }

/* Homepage service cards: product shots (webp) blend into the card */
.card__media:has(img[src$=".webp"]) { background: var(--card); }
.card__media img[src$=".webp"] { object-fit: contain; mix-blend-mode: multiply; padding: 12px; }
.card__media:has(img[src$=".webp"])::after { display: none; }

/* ---------- REAL LOTUS LOGO ---------- */
.brand__mark { display: grid; place-items: center; }
.brand__logo { width: 100%; height: 100%; object-fit: contain; display: block; }
/* white over the dark hero, dark once nav turns light */
.nav .brand__logo { filter: invert(1) brightness(1.7); }
.nav.is-scrolled .brand__logo,
.nav.nav--open .brand__logo,
.nav:has(.nav__links.is-open) .brand__logo { filter: none; }
/* footer emblem (dark footer → white) */
.footer__emblem { width: 96px; height: 96px; object-fit: contain; margin-bottom: 14px;
  filter: invert(1) brightness(1.8); opacity: .92; }

/* Mobile/tablet dropdown for Služby inside the burger overlay (≤1080) */
@media (max-width: 1239px) {
  .nav__drop { display: flex; flex-direction: column; align-items: stretch; width: 100%; position: static; }
  .nav__droptoggle {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
    letter-spacing: 0; text-transform: none; color: var(--ink);
    display: flex; align-items: center; justify-content: flex-start; gap: 10px; width: 100%;
    cursor: pointer; padding: 10px 18px; border-radius: 12px; background: none; border: none;
  }
  .nav__droptoggle::after { width: 9px; height: 6px; }
  .nav__drop.is-open .nav__droptoggle,
  .nav__drop.is-current .nav__droptoggle { color: var(--accent); background: rgba(154,108,64,.08); }
  .nav__drop.is-open .nav__droptoggle::after,
  .nav__drop.is-current .nav__droptoggle::after { transform: rotate(180deg); }
  .nav__submenu {
    position: static; transform: none; width: 100%;
    opacity: 0; visibility: hidden; max-height: 0; overflow: hidden;
    background: none; border: none; box-shadow: none; padding: 0; min-width: auto;
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    transition: opacity .3s var(--ease), max-height .4s var(--ease), margin .3s, visibility .3s;
  }
  .nav__submenu::before { display: none; }
  .nav__drop.is-open .nav__submenu,
  .nav__drop.is-current .nav__submenu { opacity: 1; visibility: visible; max-height: 600px; margin-top: 4px; }
  .nav__submenu a {
    display: block; width: 100%;
    font-family: var(--serif); font-size: 1.16rem; font-weight: 400;
    padding: 9px 18px 9px 40px; color: var(--ink-2); text-align: left; letter-spacing: 0;
  }
  .nav__submenu a:hover { padding-left: 40px; background: none; color: var(--accent); }
}

/* Service card: duration badge on the photo */
.card__badge { position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(253,251,248,.95); color: var(--ink); font-size: .66rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
  box-shadow: 0 8px 20px -10px rgba(44,38,32,.4); }
.card__footer .card__price { margin: 0; }

/* Homepage O mně: balanced on desktop */
.about__inner { max-width: 1020px; margin: 0 auto; }
.about__fig { aspect-ratio: 4/4.6; }

/* ---------- Buttons stand out (gold primary, accent ghost) ---------- */
.btn { background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 14px 30px -14px rgba(154,108,64,.55); }
.btn:hover { background: #82542f; border-color: #82542f; color: #fff; }
.btn--ghost { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); box-shadow: none; }
.btn--ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 14px 30px -14px rgba(154,108,64,.55); }
.hero .btn--ghost, .cta-strip .btn--ghost, .cpanel .btn--ghost { color: #fff; border-color: rgba(255,255,255,.65); }
.hero .btn--ghost:hover, .cta-strip .btn--ghost:hover, .cpanel .btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; color: #fff; }
.btn--light { background: #fff; border-color: #fff; color: var(--ink); box-shadow: 0 14px 30px -14px rgba(0,0,0,.35); }

/* ---------- Eyebrow dashes removed everywhere ---------- */
.section-head .eyebrow::before,
.head--center .eyebrow::before,
.hero .eyebrow::before,
.band__eyebrow::before,
.feature__eyebrow::before { display: none; }

/* ---------- Footer without map: brand left, links right ---------- */
.footer__grid { display: block; }
.footer__content { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
@media (max-width: 860px) { .footer__content { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Contact: open layout, no dark block ---------- */
.cpanel { background: none; border: none; box-shadow: none; border-radius: 0; max-width: 720px; }
.cpanel__body { padding: 0; }
.cpanel__body::before { display: none; }
.cpanel__phone { color: var(--accent); font-size: clamp(2.4rem, 6vw, 3.6rem); margin: 0 0 24px; }
.cpanel__phone:hover { color: #82542f; }
.cpanel__phone::after { background: var(--accent); }
.cpanel__rows li { color: var(--ink-2); font-size: 1.02rem; }
.cpanel__rows a:hover { color: var(--accent); }
.cpanel__rows svg { stroke: var(--accent); }
.cpanel .btn--ghost { color: var(--accent); border-color: var(--accent); }
.cpanel .btn--ghost:hover { background: var(--accent); color: #fff; }
.cpanel__social { background: rgba(154,108,64,.1); color: var(--accent); }
.cpanel__social:hover { background: var(--accent); color: #fff; }

/* Contact blends into the page background (no separate cream band) */
.contact { background: transparent; }
.contact .cpanel { background: none; }

/* ==========================================================================
   GALLERY (uniform, no holes) · LIGHT CTA · DROP CAP · VARIED LIST ICONS
   ========================================================================== */

/* Gallery: clean uniform grid — no mosaic holes */
.gallery__grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: 16px; }
.gallery__grid .gtile { aspect-ratio: 4/3; }
.gallery-page__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; gap: 14px; }
.gallery-page__grid .gtile { aspect-ratio: 1/1; }
.gtile--tall { grid-row: auto; } .gtile--wide { grid-column: auto; }
@media (max-width: 880px) { .gallery__grid, .gallery-page__grid { grid-template-columns: 1fr 1fr; } }

/* CTA strip: light & airy so it matches the rest of the page */
.cta-strip { background: transparent; color: var(--ink); }
.cta-strip::before, .cta-strip::after { display: none; }
.cta-strip__eyebrow { color: var(--accent); }
.cta-strip__title { color: var(--ink); }
.cta-strip__text { color: var(--ink-2); }
.cta-strip__inner::before { filter: none; opacity: .9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%239a6c40' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E"); }
.cta-strip .btn--light { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 14px 30px -14px rgba(154,108,64,.55); }
.cta-strip .btn--light:hover { background: #82542f; border-color: #82542f; color: #fff; }
.cta-strip .btn--ghost { color: var(--accent); border-color: var(--accent); }
.cta-strip .btn--ghost:hover { background: var(--accent); color: #fff; }

/* Drop cap — clean, no collision (used on O mně intro) */
.dropcap::first-letter { float: left; font-family: var(--serif); font-weight: 600;
  font-size: 3.1rem; line-height: 1; margin: 4px 14px -2px 0; color: var(--accent); }

/* Varied list icons instead of the same checkmark everywhere */
.icon-list { list-style: none; margin-top: 16px; }
.icon-list li { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.icon-list li:last-child { border-bottom: none; }
.icon-list__ico { width: 40px; height: 40px; border-radius: 12px; background: rgba(154,108,64,.1);
  display: grid; place-items: center; }
.icon-list__ico svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Product shots (webp) inside service-intro figures blend in too */
.service-intro__fig:has(img[src$=".webp"]) { background: var(--card); }
.service-intro__fig img[src$=".webp"] { object-fit: contain; mix-blend-mode: multiply; padding: clamp(16px,3vw,30px); }
.service-intro__fig:hover img[src$=".webp"] { transform: none; }

/* Sections flow in one background — no hard cream seams */
.about, .reasons, .steps3, .service-pricing, .contact { background: transparent; }

/* Transparent device PNGs — sit directly on the card, no blend tricks */
.device__fig img, .service-intro__fig img[src*="pristroj-"] { mix-blend-mode: normal; }
.device__fig { background: transparent; }
.device__fig img { object-fit: contain; padding: 6px 0; }
.service-intro__fig:has(img[src*="pristroj-"]) { background: transparent; box-shadow: none; aspect-ratio: auto; }
.service-intro__fig img[src*="pristroj-"] { object-fit: contain; padding: clamp(20px,4vw,44px); }

/* Drop cap: tighter gap between the initial and the text */
.dropcap::first-letter { font-size: 2.9rem; line-height: .85; margin: 3px 7px 0 0; padding: 0; }

/* tall map next to the contact form */
.map-embed--tall { aspect-ratio: auto; height: 100%; min-height: 380px; }
.map-embed--tall iframe { min-height: 380px; }


/* Devices without photos: numbered cards read as a clean 2-col list */
.device { padding: clamp(26px,3vw,38px); }


/* Devices page: heading first, then photo on a clean panel, then text */
.devices__grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.device { text-align: left; padding: clamp(24px,3vw,32px); display: flex; flex-direction: column; overflow: hidden; }
.device__head { }
.device__index { display: inline-block; }
.device__sub { margin: 6px 0 0; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.device__head h3 { margin-top: 6px; }
.device__fig { margin: 18px 0; aspect-ratio: 16/10; border-radius: 16px; display: grid; place-items: center;
  background: #fff; border: 1px solid rgba(44,38,32,.06); }
.device__fig img { width: auto; max-width: 82%; max-height: 84%; object-fit: contain; mix-blend-mode: normal; padding: 0; }
.device__fig.is-empty { background: linear-gradient(150deg, var(--bg-2), #e3d6c6); }
.device__desc { color: var(--ink-2); font-size: .95rem; line-height: 1.62; margin: 0; }
@media (max-width: 720px) { .devices__grid { grid-template-columns: 1fr; } }

/* Service intro: heading above the photo (left aligned, no lotus) */
.service-intro__head { text-align: center; margin-bottom: clamp(22px,3.5vw,38px); }
.service-intro__head::before { content: ""; display: block; width: 56px; height: 32px; margin: 0 auto 16px;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%239a6c40' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
  opacity: .92; }
.service-intro__head .eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--accent); }
.service-intro__head .display { margin: 0; }

/* ---------- Background variation (less monotone) ---------- */
.gallery { background: var(--bg-2); }
.greviews { background: var(--bg); }
/* soft warm glow so large light areas aren't flat */
.services, .greviews, .faq { position: relative; }
.services::after, .greviews::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 85% 0%, rgba(154,108,64,.05), transparent 60%);
}
.services > .wrap, .greviews > .wrap { position: relative; z-index: 1; }

/* ---------- More animation ---------- */
.device { transition: transform .45s var(--ease), box-shadow .45s; }
.device:hover { transform: translateY(-6px); box-shadow: 0 30px 56px -34px rgba(44,38,32,.42); }
.device__fig img { transition: transform .6s var(--ease); }
.device:hover .device__fig img { transform: scale(1.05); }
.card, .ritual, .greview, .quicklink, .reason, .step3, .news-card { will-change: transform; }
/* staggered reveal inside grids */
.devices__grid .reveal:nth-child(2){ transition-delay:.06s }
.devices__grid .reveal:nth-child(3){ transition-delay:.12s }
.devices__grid .reveal:nth-child(4){ transition-delay:.18s }
.devices__grid .reveal:nth-child(5){ transition-delay:.24s }
.greviews__grid .reveal:nth-child(2){ transition-delay:.08s }
.greviews__grid .reveal:nth-child(3){ transition-delay:.16s }
/* gentle lift on any card hover */
.ritual, .greview, .news-card, .quicklink { transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }

/* ---------- "Kde mě najdete" — framed location card ---------- */
.findme { max-width: 760px; margin: clamp(36px,5vw,56px) auto 0;
  background: var(--card); border: 1px solid rgba(44,38,32,.07); border-radius: var(--radius);
  padding: clamp(20px,3vw,28px); box-shadow: 0 22px 50px -40px rgba(44,38,32,.4); }
.findme--side { max-width: none; margin: 0; }
.findme--wide { max-width: 920px; }
.findme--wide .map-embed { aspect-ratio: 16/9; height: auto; }
.findme__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.findme__pin { flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(154,108,64,.1); display: grid; place-items: center; }
.findme__pin svg { width: 24px; height: 24px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.findme__title { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; line-height: 1.1; }
.findme__addr { color: var(--ink-2); font-size: .95rem; margin-top: 2px; }
.findme .map-embed { aspect-ratio: 16/9; border-radius: 14px; margin: 0; }
.findme--side .map-embed { aspect-ratio: auto; height: 300px; }
.findme__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  transition: gap .3s var(--ease); }
.findme__link:hover { gap: 12px; color: #82542f; }
@media (max-width: 600px) { .findme .map-embed { aspect-ratio: 4/3; } }

/* ---------- Font consistency + new bits ---------- */
/* unified sub-headings */
.subhead { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; letter-spacing: -.01em; margin-bottom: 8px; }
/* author name shown above the intro text */
.about__name { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.45rem;
  color: var(--accent); margin-top: 18px; line-height: 1.1; }
/* ceník category headings — accent-coloured & centred so each group of
   procedures reads as its own clearly separated block (no longer blends in) */
.rituals__cat { font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.6rem, 2.8vw, 2rem); color: var(--accent); letter-spacing: 0;
  text-align: center; margin: 0 0 28px; padding-top: 0; border-top: none;
  display: flex; align-items: center; justify-content: center; gap: clamp(12px,3vw,20px); }
.rituals__cat::before, .rituals__cat::after { content: ""; flex: 0 0 auto;
  height: 1px; width: clamp(26px, 12vw, 88px);
  background: linear-gradient(90deg, transparent, rgba(154,108,64,.55)); }
.rituals__cat::after { background: linear-gradient(90deg, rgba(154,108,64,.55), transparent); }
.rituals__cat:not(:first-child) { margin-top: clamp(46px,6vw,66px); }
/* "Zobrazit celý ceník" button block */
.rituals__more { text-align: center; margin-top: clamp(28px,4vw,40px); }

/* Map iframe must stay inside its rounded frame (Safari clips iframes badly
   with plain overflow:hidden — force a clipping stacking context + full width). */
.map-embed { position: relative; width: 100%; max-width: 100%; overflow: hidden;
  -webkit-transform: translateZ(0); transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black); }
.map-embed iframe { width: 100% !important; max-width: 100%; height: 100%; display: block; }
.map-embed--tall iframe { height: 100%; }
.findme { overflow: hidden; }

/* Desktop nav: keep items on one line (no two-line "O MNĚ" / "OTEVÍRACÍ DOBA") */
.nav__links a, .nav__droptoggle { white-space: nowrap; }
@media (min-width: 1240px) {
  .nav__links { gap: clamp(14px, 1.8vw, 26px); }
  .nav__links a { font-size: .74rem; }
  .nav__droptoggle { font-size: .74rem; }
}

/* Solid nav bar when scrolled (text used to ghost through at 97% opacity) */
.nav.is-scrolled { background: var(--bg); }

/* ==========================================================================
   FIX PASS — roomier nav, consistent eyebrows, alternating section bands,
   tighter section rhythm, less-zoomed hero
   ========================================================================== */

/* Nav: room on desktop + brand never wraps */
.brand__name, .brand__sub { white-space: nowrap; }
@media (min-width: 1240px) {
  .nav__links { gap: clamp(16px, 1.9vw, 30px); }
  .nav__links a, .nav__droptoggle { font-size: .75rem; letter-spacing: .08em; }
}

/* Consistent gold eyebrows everywhere (hero/dark bands keep their own light colour) */
.eyebrow { color: var(--accent); }
.hero .eyebrow, .cta-strip .cta-strip__eyebrow, .band .band__eyebrow, .page-hero .eyebrow { color: inherit; }

/* Alternating section bands for gentle contrast (light / slightly darker) */
.about        { background: var(--bg-2); }
.services     { background: var(--bg); }
.steps3       { background: var(--bg-2); }
.greviews     { background: var(--bg); }
.gallery      { background: var(--bg-2); }
.faq          { background: var(--bg); }
.contact      { background: var(--bg-2); }

/* Consistent, calmer rhythm: one section's padding = the whole gap (bands touch) */
:root { --section: clamp(52px, 6vw, 96px); }
.section, .devices, .service-intro, .service-pricing, .steps3, .greviews, .faq,
.reasons, .news, .article, .about-page, .gallery-page, .voucher-page { padding: var(--section) 0; }
.hero + .band, .page-hero + * { margin-top: 0; }

/* Hero: pull the framing back so the photo isn't so tightly cropped */
.hero__bg img { object-position: center 42%; animation: heroZoom 22s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.03); } to { transform: scale(1); } }

/* Desktop: keep the hero full-bleed (na šířku). The photo is portrait, so we
   fill the width with cover and pull the framing up a touch so both the
   practitioner and the client stay in view rather than being cropped tight. */
@media (min-width: 1000px) {
  .hero { min-height: 100vh; }
  .hero__bg { inset: 0; }
  .hero__bg img { object-fit: cover; object-position: center 30%; }
}

/* Contact panel: a single centred column at every width (the map is now its
   own section below), so it stays balanced on desktop instead of sitting in
   the left half. */
.contact .cpanel { margin: 0 auto; max-width: 620px; }
.contact .cpanel__body { align-items: center; text-align: center; }
.contact .cpanel__rows { margin-left: auto; margin-right: auto; }
.contact .cpanel__rows li { justify-content: flex-start; }
.contact .cpanel__btns, .contact .cpanel__socials { justify-content: center; }

/* ==========================================================================
   FILLED SECONDARY BUTTONS + more lotus ornaments (footer + sections)
   ========================================================================== */

/* Ghost buttons get a soft gold fill (no longer hollow); primary stays solid */
.btn--ghost { background: rgba(154,108,64,.12); color: var(--accent); border-color: transparent; }
.btn--ghost:hover { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 14px 30px -14px rgba(154,108,64,.55); }
/* on dark contexts: translucent white fill */
.hero .btn--ghost, .cta-strip .btn--ghost, .band .btn--ghost, .feature .btn--ghost {
  background: rgba(255,255,255,.16); color: #fff; border-color: transparent; }
.hero .btn--ghost:hover, .cta-strip .btn--ghost:hover, .band .btn--ghost:hover, .feature .btn--ghost:hover {
  background: rgba(255,255,255,.26); color: #fff; border-color: transparent; }
/* contact band ghost (light) keeps gold fill */
.cpanel .btn--ghost { background: rgba(154,108,64,.12); color: var(--accent); border-color: transparent; }
.cpanel .btn--ghost:hover { background: var(--accent); color: #fff; }

/* ---------- More lotus ornaments across sections ---------- */
.about, .steps3, .greviews, .gallery, .contact, .about-page, .service-pricing, .cenik, .news, .pricing { position: relative; overflow: hidden; }
.about::after, .steps3::after, .greviews::after, .gallery::after, .contact::after,
.about-page::after, .service-pricing::after, .news::after, .pricing::after {
  content: ""; position: absolute; bottom: -50px; left: -50px; width: 300px; height: 300px;
  pointer-events: none; z-index: 0; opacity: .045;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%232c2620' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
}
.about > .wrap, .steps3 > .wrap, .greviews > .wrap, .gallery > .wrap, .contact > .wrap,
.about-page > .wrap, .service-pricing > .wrap, .news > .wrap, .pricing > .wrap { position: relative; z-index: 1; }

/* Second, smaller lotus on the opposite (top-right) corner of each section */
.about, .steps3, .greviews, .gallery, .contact, .about-page, .service-pricing, .cenik, .news, .pricing, .services, .faq { position: relative; overflow: hidden; }
.about::before, .steps3::before, .greviews::before, .gallery::before, .contact::before,
.about-page::before, .service-pricing::before, .news::before, .pricing::before,
.services::before, .faq::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 190px; height: 190px;
  pointer-events: none; z-index: 0; opacity: .05; transform: scaleX(-1);
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%232c2620' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E");
}
.services > .wrap, .faq > .wrap { position: relative; z-index: 1; }
/* On the taupe/dark sections use a cream tint so the extra lotus reads */
.greviews::before, .greviews::after { opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%23e9c79b' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E"); }

/* ---------- Footer: lotus ornaments ---------- */
.footer::before { display: block; }
.footer__deco { position: absolute; pointer-events: none; z-index: 0; opacity: .06;
  background: center/contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 40' fill='none' stroke='%23e9c79b' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 37c-4-9-3-18 0-24 3 6 4 15 0 24Z'/%3E%3Cpath d='M32 37c-8-6-12-13-13-20 6 3 11 9 13 16'/%3E%3Cpath d='M32 37c8-6 12-13 13-20-6 3-11 9-13 16'/%3E%3Cpath d='M32 37C22 34 13 29 8 22c8 0 18 5 24 13'/%3E%3Cpath d='M32 37c10-3 19-8 24-15-8 0-18 5-24 13'/%3E%3C/svg%3E"); }
.footer__deco--1 { width: 260px; height: 260px; top: -40px; right: 4%; }
.footer__deco--2 { width: 180px; height: 180px; bottom: 40px; left: 3%; opacity: .05; }

/* ==========================================================================
   CALMER TYPOGRAPHY — client feedback: fonts felt busy / too loud.
   Accent words in headings keep the italic but inherit the heading colour;
   drop caps removed; uppercase eyebrows track tighter. Easy to revert.
   ========================================================================== */
.ital, .hero__title .ital, .page-hero__title .ital, .quote__text .ital { color: inherit; }
.dropcap::first-letter { float: none; font-size: inherit; font-family: inherit;
  font-weight: inherit; color: inherit; margin: 0; padding: 0; line-height: inherit; }
.eyebrow { letter-spacing: .14em; }
.brand__sub, .footer__sub { letter-spacing: .18em; }
.rituals__cat { font-style: normal; }

/* Dárkový poukaz — highlighted card at the end of the price list */
.giftbox { display: flex; align-items: center; gap: 18px; max-width: 720px;
  margin: clamp(30px,5vw,44px) auto 0; padding: clamp(18px,3vw,26px) clamp(20px,3.5vw,30px);
  background: linear-gradient(135deg, rgba(233,199,155,.22), rgba(154,108,64,.1));
  border: 1px solid rgba(154,108,64,.28); border-radius: var(--radius); }
.giftbox__ic { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 16px;
  background: var(--accent); color: #fff; display: grid; place-items: center; }
.giftbox__ic svg { width: 28px; height: 28px; }
.giftbox__t strong { display: block; font-family: var(--serif); font-weight: 600;
  font-size: 1.35rem; margin-bottom: 4px; color: var(--ink); }
.giftbox__t p { margin: 0; color: var(--ink-2); font-size: .97rem; line-height: 1.55; }
@media (max-width: 520px) { .giftbox { flex-direction: column; text-align: center; align-items: center; } }

/* Hero photos: no zoom/parallax animation — scaling made them render blurry */
.hero__bg img, .page-hero__bg img { animation: none !important; transform: none !important; }
.hero__bg { will-change: auto; }

/* Hours/menu rows: long values must wrap, never push past the screen edge */
.menu li b { white-space: normal; overflow-wrap: anywhere; text-align: right; }
@media (max-width: 640px) {
  .menu li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu li i { display: none; }
  .menu li b { text-align: left; font-size: 1.2rem; }
}

/* O mně — welcome block with the YSL quote */
.welcome { max-width: 760px; }
.welcome > p:first-child { color: var(--ink-2); font-size: 1.05rem; line-height: 1.75; }
.welcome .about__sign { margin-top: 14px; }
.welcome__quote { margin: clamp(28px,4vw,40px) 0 0; padding: clamp(20px,3vw,28px) clamp(22px,3.5vw,32px);
  background: var(--card); border-left: 3px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; }
.welcome__quote p { margin: 0; font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem); color: var(--ink); line-height: 1.4; }
.welcome__quote cite { display: block; margin-top: 10px; font-style: normal; font-family: var(--ui);
  font-size: .8rem; letter-spacing: .08em; color: var(--ink-2); }

/* VOP / kontraindikace content */
.vop-body { max-width: 820px; color: var(--ink-2); font-size: .96rem; line-height: 1.7; }
.vop-body .subhead { margin: 26px 0 10px; font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--ink); }
.vop-body .subhead:first-child { margin-top: 0; }
.vop-sub { margin: 16px 0 6px; color: var(--ink); }
.vop-list { margin: 0 0 10px 0; padding-left: 22px; }
.vop-list li { margin-bottom: 6px; }
.faq__a .vop-body { padding-bottom: 18px; }

/* Footer: make the legal links stand out from the rest of the nav column */
.footer__law a { color: #e9c79b !important; font-weight: 600; }
.footer__law a:hover { color: #fff !important; }
.footer__law:first-of-type { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); }

/* Every section label centred, lotus above, no stray dash lines */
.section-head, .section-head__lead { text-align: center; }
.section-head__lead { margin-left: auto; margin-right: auto; }
.section-head .eyebrow, .service-intro__head .eyebrow { display: inline-flex; justify-content: center; }
.section-head .eyebrow::before, .service-intro__head .eyebrow::before { display: none; }

/* ==========================================================================
   Podpis autora — pruh přes celou šířku pod patičkou
   ========================================================================== */
.sig {
  display: block; width: 100%; box-sizing: border-box;
  background: var(--accent); color: #fff;
  text-align: center; text-decoration: none;
  padding: 15px 20px;
  font-family: var(--ui); font-size: .8rem; font-weight: 500; letter-spacing: .06em;
  transition: background .25s;
}
.sig:hover, .sig:focus-visible { background: #825934; color: #fff; }
@media (max-width: 520px) { .sig { font-size: .74rem; padding: 14px 16px; } }
