/* ─────────────────────────────────────────────────────────
   Global components — Pri Križarju
   Mobile-first. Navbar fixed. Hero pads top by --nav-h.
   ───────────────────────────────────────────────────────── */

/* Layout primitives */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--sp-5); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--sp-5); }

.section { padding-block: var(--sp-8); }
.section-tight { padding-block: var(--sp-7); }
.section-large { padding-block: var(--sp-9); }
@media (min-width: 720px) {
  .section { padding-block: var(--sp-9); }
  .section-large { padding-block: var(--sp-10); }
}

/* Typography utilities */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.lead { font-size: var(--fs-md); color: var(--text-soft); line-height: 1.6; max-width: 60ch; }
.h-display { font-family: var(--font-serif); font-size: var(--fs-3xl); line-height: 1.05; letter-spacing: -0.02em; }
.h-display-xl { font-family: var(--font-serif); font-size: var(--fs-4xl); line-height: 1.02; letter-spacing: -0.025em; }
.h-section { font-family: var(--font-serif); font-size: var(--fs-2xl); line-height: 1.1; letter-spacing: -0.015em; }
.h-card { font-family: var(--font-serif); font-size: var(--fs-xl); line-height: 1.15; }
.text-soft { color: var(--text-soft); }
.text-mute { color: var(--text-mute); }
.italic-serif { font-family: var(--font-serif); font-style: italic; }

/* ─────────────────── Buttons ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-warm {
  background: var(--warmth);
  color: #fff;
}
.btn-warm:hover { background: var(--warmth-dark); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.25rem;
  transition: border-color var(--dur-fast) var(--ease);
}
.btn-link:hover { border-color: var(--text); }
.btn-link::after { content: "→"; transition: transform var(--dur-fast) var(--ease); }
.btn-link:hover::after { transform: translateX(3px); }

/* ─────────────────── Navbar (FIXED) ─────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color var(--dur-med) var(--ease), background-color var(--dur-med) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line-soft); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-brand small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  font-size: var(--fs-sm);
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 0.25rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-current::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.lang-switch {
  display: inline-flex;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.lang-switch a { transition: color var(--dur-fast) var(--ease); }
.lang-switch a.is-current { color: var(--text); font-weight: 600; }
.lang-switch a:hover { color: var(--text); }
.lang-switch span { color: var(--line); }

.nav-cta { display: none; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
}

/* Burger */
.nav-burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  position: relative;
  transition: background var(--dur-fast) var(--ease);
}
.nav-burger span::before, .nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--dur-med) var(--ease), top var(--dur-med) var(--ease);
}
.nav-burger span::before { top: -7px; }
.nav-burger span::after { top: 7px; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); }

@media (min-width: 960px) {
  .nav-burger { display: none; }
}

/* ─────── Mobile menu (opacity/visibility — NIKOLI transform) ─────── */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
  overflow-y: auto;
  padding: var(--sp-6) var(--sp-5) var(--sp-8);
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear 0s;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-menu ul a {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  line-height: 1.1;
  padding-block: var(--sp-2);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .mobile-actions {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.mobile-menu .mobile-actions .btn { width: 100%; }
.mobile-menu .mobile-meta {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  color: var(--text-soft);
  font-size: var(--fs-sm);
}

@media (min-width: 960px) {
  .mobile-menu { display: none; }
}

/* ─────────────────── Hero ─────────────────── */
.hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: clamp(560px, 88vh, 880px);
  color: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 10, 0.35) 0%, rgba(20, 16, 10, 0.55) 70%, rgba(20, 16, 10, 0.7) 100%);
}
.hero-inner {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: var(--sp-7) var(--sp-8);
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: var(--sp-4);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin-bottom: var(--sp-4);
  font-weight: 400;
}
.hero-title em { font-style: italic; color: var(--soft); }
.hero-sub {
  max-width: 50ch;
  font-size: var(--fs-md);
  line-height: 1.55;
  opacity: 0.92;
  margin-bottom: var(--sp-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.hero .btn-ghost { color: var(--bg); border-color: var(--bg); }
.hero .btn-ghost:hover { background: var(--bg); color: var(--text); }
.hero-meta {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  display: none;
}

@media (min-width: 720px) {
  .hero-title { font-size: var(--fs-4xl); }
  .hero-sub { font-size: var(--fs-lg); }
  .hero-meta { display: block; }
}

/* Page header (subpages) */
.page-header {
  padding-top: calc(var(--nav-h) + var(--sp-7));
  padding-bottom: var(--sp-7);
  background: var(--soft-2);
  border-bottom: 1px solid var(--line-soft);
}
.page-header .eyebrow { margin-bottom: var(--sp-3); }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: var(--sp-4);
}
.page-header p {
  font-size: var(--fs-md);
  color: var(--text-soft);
  max-width: 60ch;
}
@media (min-width: 720px) {
  .page-header { padding-top: calc(var(--nav-h) + var(--sp-8)); padding-bottom: var(--sp-8); }
  .page-header h1 { font-size: var(--fs-4xl); }
}

/* ─────────────────── Cards ─────────────────── */
.cards {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .cards { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); } }
@media (min-width: 1000px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card-media {
  aspect-ratio: 4 / 3;
  background: var(--soft);
  overflow: hidden;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.card-title { font-family: var(--font-serif); font-size: var(--fs-xl); line-height: 1.15; }
.card-text { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.6; }
.card-foot { margin-top: auto; padding-top: var(--sp-3); }

/* ─────────────────── Split (image + text) ─────────────────── */
.split {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .split.reverse > :first-child { order: 2; }
}
.split-media {
  aspect-ratio: 4 / 5;
  background: var(--soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body > * + * { margin-top: var(--sp-4); }

/* ─────────────────── Quote / story ─────────────────── */
.story {
  background: var(--soft-2);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-5);
  text-align: center;
}
.story blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-xl);
  line-height: 1.4;
  max-width: 38ch;
  margin: 0 auto var(--sp-4);
  color: var(--text);
}
.story cite {
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
@media (min-width: 720px) {
  .story { padding: var(--sp-9) var(--sp-7); }
  .story blockquote { font-size: var(--fs-2xl); }
}

/* ─────────────────── Footer ─────────────────── */
.footer {
  background: var(--text);
  color: var(--soft-2);
  padding-block: var(--sp-8) var(--sp-5);
  margin-top: var(--sp-8);
}
.footer a { color: var(--soft-2); }
.footer a:hover { color: var(--bg); }
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-6);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: var(--sp-3);
  font-weight: 500;
  line-height: 1.3;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-col li { font-size: var(--fs-sm); }
.footer-brand { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: var(--sp-3); display: block; }
.footer-brand-meta { font-size: var(--fs-sm); color: var(--soft); max-width: 32ch; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(232, 220, 196, 0.15);
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--soft);
  letter-spacing: 0.06em;
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ─────────────────── Forms ─────────────────── */
.form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  font-size: var(--fs-base);
  font-family: var(--font-sans);
  color: var(--text);
  min-height: 48px;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(93, 110, 74, 0.2);
}
.field-hint { font-size: var(--fs-xs); color: var(--text-mute); }
.form-row { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }

/* ─────────────────── Mobile sticky CTA ─────────────────── */
.sticky-cta {
  position: fixed;
  left: var(--sp-3);
  right: var(--sp-3);
  bottom: var(--sp-3);
  z-index: 80;
  display: flex;
  gap: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
}
.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear 0s;
}
.sticky-cta .btn { flex: 1; box-shadow: var(--shadow-lg); }
@media (min-width: 720px) { .sticky-cta { display: none; } }

/* ─────────────────── Accordion ─────────────────── */
.accordion { border-top: 1px solid var(--line-soft); }
.acc-item { border-bottom: 1px solid var(--line-soft); }
.acc-summary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: var(--sp-4) 0;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  cursor: pointer;
  list-style: none;
  gap: var(--sp-4);
}
.acc-summary::-webkit-details-marker { display: none; }
.acc-summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.5rem;
  color: var(--text-soft);
  transition: transform var(--dur-med) var(--ease);
}
details[open] > .acc-summary::after { transform: rotate(45deg); }
.acc-body { padding-bottom: var(--sp-5); color: var(--text-soft); line-height: 1.7; max-width: 70ch; }
.acc-body > * + * { margin-top: var(--sp-3); }

/* ─────────────────── Gallery ─────────────────── */
.gallery {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
@media (min-width: 1000px) { .gallery-4 { grid-template-columns: repeat(4, 1fr); } }
.gallery a, .gallery button {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--soft);
  display: block;
  cursor: zoom-in;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery a:hover img, .gallery button:hover img { transform: scale(1.06); }
.gallery .tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* ─────────────────── Lightbox ─────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 10, 0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear 0s;
}
.lightbox img { max-width: min(1200px, 95vw); max-height: 88vh; object-fit: contain; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--bg);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox .lb-close { top: var(--sp-5); right: var(--sp-5); }
.lightbox .lb-prev { left: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(255, 255, 255, 0.22); }

/* ─────────────────── Pricing table ─────────────────── */
.price-table {
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.price-row:last-child { border-bottom: 0; }
.price-row .label { font-family: var(--font-serif); font-size: var(--fs-md); }
.price-row .label small { display: block; font-family: var(--font-sans); font-size: var(--fs-xs); color: var(--text-soft); margin-top: 0.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.price-row .value { font-family: var(--font-serif); font-size: var(--fs-lg); white-space: nowrap; }
.price-row .value small { font-family: var(--font-sans); font-size: var(--fs-xs); color: var(--text-soft); }

/* ─────────────────── Process steps ─────────────────── */
.steps { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-7); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { display: flex; flex-direction: column; gap: var(--sp-3); }
.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--warmth);
  letter-spacing: -0.03em;
}
.step-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  background: var(--soft);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}
.step-media img { width: 100%; height: 100%; object-fit: cover; }
.step h3 { font-family: var(--font-serif); font-size: var(--fs-lg); }
.step p { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.65; }

/* ─────────────────── Product card (shop) ─────────────────── */
.product-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } }
.product {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.product-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--soft);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.product:hover .product-media img { transform: scale(1.05); }
.product-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.product-title { font-family: var(--font-serif); font-size: var(--fs-lg); }
.product-meta { font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }
.product-variants { display: flex; flex-direction: column; gap: var(--sp-2); margin-top: auto; padding-top: var(--sp-3); border-top: 1px solid var(--line-soft); }
.product-variant {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--sp-3);
  align-items: center;
  font-size: var(--fs-sm);
  padding-block: var(--sp-2);
}
.product-variant .v-name { color: var(--text-soft); }
.product-variant .v-price { font-family: var(--font-serif); font-size: var(--fs-md); }
.product-variant .v-buy {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warmth);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.product-variant .v-buy:hover { color: var(--warmth-dark); }

/* ─────────────────── Notice / banner ─────────────────── */
.notice {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--soft-2);
  border-left: 3px solid var(--warmth);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--fs-sm);
  color: var(--text-soft);
}
.notice strong { color: var(--text); }

/* ─────────────────── Decorative divider ─────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--warmth);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-md);
  margin: 0 auto;
  max-width: 480px;
  padding-block: var(--sp-5);
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ─────────────────── Reveal on scroll ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────────── Helpers ─────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text);
  color: var(--bg);
  padding: 1rem 1.5rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Scroll lock for mobile menu */
body.menu-open { overflow: hidden; }

/* ─────────────────── Widget placeholders (Bookingmood / Calendly) ─────────────────── */
.booking-widget-placeholder,
.calendly-placeholder {
  background: var(--soft-2);
  border: 2px dashed var(--line);
  border-radius: var(--r-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--sp-6) 0;
  padding: var(--sp-7) var(--sp-5);
  scroll-margin-top: calc(var(--nav-h) + var(--sp-4));
}

.placeholder-content {
  text-align: center;
  max-width: 460px;
}

.placeholder-icon {
  color: var(--accent);
  margin: 0 auto var(--sp-4);
  display: block;
}

.placeholder-content h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.placeholder-content p {
  color: var(--text-soft);
  margin-bottom: var(--sp-3);
  line-height: 1.65;
}

.placeholder-note {
  font-size: var(--fs-sm);
  color: var(--text-mute);
  font-style: italic;
}

@media (max-width: 768px) {
  .booking-widget-placeholder,
  .calendly-placeholder {
    min-height: 320px;
    padding: var(--sp-6) var(--sp-4);
  }
  .placeholder-icon { width: 40px; height: 40px; }
  .placeholder-content h3 { font-size: var(--fs-lg); }
}
