/* ============================================================
   Chalupa Elba — site styles (built on colors_and_type.css tokens)
   ============================================================ */

* { box-sizing: border-box; }

.ce-site {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  -webkit-font-smoothing: antialiased;
}

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

/* ---------------- HERO HEADER BAR (replaces sticky nav) ---------------- */
.ce-hero-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  color: var(--linen-50);
}
.ce-hero-bar-mark {
  font-family: 'Pirata One', 'UnifrakturCook', serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--linen-50);
  text-shadow: 0 1px 12px rgba(26,36,24,0.7), 0 0 1px rgba(26,36,24,0.4);
}
.ce-hero-bar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ce-hero-bar-link {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--linen-50);
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(26,36,24,0.6);
  transition: color var(--dur-fast) var(--ease-out);
}
.ce-hero-bar-link:hover { color: var(--ember-300); }
.ce-hero-bar-lang {
  display: flex;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--linen-100);
  text-shadow: 0 1px 8px rgba(26,36,24,0.6);
}
.ce-hero-bar-lang .is-active { color: var(--linen-50); font-weight: 600; }
.ce-hero-bar-lang .sep { opacity: 0.5; }

/* mobile bar — selector .ce-m (runtime-toggled on .ce-site root) */
.ce-m .ce-hero-bar { padding: 20px 20px; }
.ce-m .ce-hero-bar-mark { font-size: 24px; }
.ce-m .ce-hero-bar-link { font-size: 12px; }

/* Wordmark — Sudeten blackletter, used in nav and footer */
.ce-wm-script {
  font-family: 'Pirata One', 'UnifrakturCook', serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}
/* (legacy nav styles removed — header is now part of the hero) */

/* ---------------- BUTTONS ---------------- */
.ce-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: var(--track-button);
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.ce-btn-primary { background: var(--ember-500); color: var(--accent-fg); }
.ce-btn-primary:hover { background: var(--ember-700); }
.ce-btn-primary.is-glow { box-shadow: var(--shadow-glow); }
.ce-btn-ghost { background: transparent; color: var(--linen-50); border: 1px solid rgba(244,236,220,0.4); }
.ce-btn-ghost:hover { border-color: var(--linen-50); }
.ce-btn-dark { background: var(--forest-800); color: var(--linen-50); }
.ce-btn-dark:hover { background: var(--forest-700); }
.ce-btn-arrow { display: inline-block; transition: transform var(--dur-fast) var(--ease-out); }
.ce-btn:hover .ce-btn-arrow { transform: translateX(3px); }

/* ---------------- HERO ----------------
   Layered overlays per the design-system hero spec:
   1) top scrim under the chrome bar (wordmark + nav)
   2) solid forest plate at the bottom behind the headline
   3) soft radial focus behind the headline so type never floats over snow
*/
.ce-hero-wrap {
  position: relative;
  width: 100%;
  height: 760px;
  overflow: hidden;
  background: var(--forest-900);
}
.ce-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  animation: kenburns 22s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1.0); }
  to { transform: scale(1.04); }
}
.ce-hero-grad-top {
  position: absolute; top: 0; left: 0; right: 0; height: 180px;
  background: linear-gradient(180deg, rgba(26,36,24,0.62) 0%, rgba(26,36,24,0.28) 60%, rgba(26,36,24,0) 100%);
  pointer-events: none;
}
.ce-hero-grad-bot {
  position: absolute; left: 0; right: 0; bottom: 0; height: 360px;
  background: linear-gradient(180deg, rgba(26,36,24,0) 0%, rgba(26,36,24,0.55) 45%, rgba(26,36,24,0.85) 100%);
  pointer-events: none;
}
.ce-hero-grad-focus {
  position: absolute; left: 0; right: 0; bottom: 0; height: 380px;
  background: radial-gradient(ellipse 65% 100% at 22% 100%, rgba(26,36,24,0.45) 0%, rgba(26,36,24,0) 70%);
  pointer-events: none;
}
.ce-hero-content {
  position: absolute;
  left: 56px; right: 56px; bottom: 64px;
  color: var(--linen-50);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 48px;
}
.ce-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.018em;
  max-width: 14ch;
  margin: 0;
  color: var(--linen-50);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(26,36,24,0.55), 0 1px 2px rgba(26,36,24,0.4);
}
.ce-hero-headline em { font-style: italic; }
.ce-hero-sub {
  max-width: 38ch;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--linen-50);
  margin: 0 0 24px 0;
  text-shadow: 0 1px 8px rgba(26,36,24,0.55);
}
.ce-hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; min-width: 320px; }
.ce-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen-50);
  opacity: 0.92;
  text-shadow: 0 1px 8px rgba(26,36,24,0.6);
}

/* hero mobile — selector .ce-m (runtime-toggled on .ce-site root) */
.ce-m .ce-hero-wrap { height: 640px; }
.ce-m .ce-hero-content {
  left: 20px; right: 20px; bottom: 32px;
  flex-direction: column; align-items: flex-start; gap: 20px;
}
.ce-m .ce-hero-headline { font-size: 44px; }
.ce-m .ce-hero-right { align-items: flex-start; min-width: 0; }
.ce-m .ce-hero-img { object-position: 60% 45%; }
/* Lang switcher is non-functional until EN is built — and at 12px in a
   crowded mobile bar it was overflowing the right edge. */
.ce-m .ce-hero-bar-lang { display: none; }

/* ---------------- SECTION ---------------- */
.ce-section { padding: 120px 56px; }
.ce-m .ce-section { padding: 72px 20px; }
.ce-section-dark { background: var(--forest-800); color: var(--linen-50); }
.ce-section-dark .ce-eyebrow { color: var(--forest-300); }
.ce-section-dark p { color: var(--linen-100); }
.ce-rail { max-width: 1180px; margin: 0 auto; }
.ce-prose-narrow { max-width: 600px; }

.ce-section-num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex; align-items: center; gap: 12px;
}
.ce-section-num::after { content: ''; flex: 1; height: 1px; background: var(--rule); max-width: 80px; }

/* ---------------- FILOXENIA (Tomáš) ---------------- */
.ce-filo-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.ce-filo-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--forest-700);
}
.ce-filo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.ce-filo-eyebrow { margin-bottom: 32px; }
.ce-filo-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 32px 0;
  text-wrap: balance;
}
.ce-filo-h em { font-style: italic; color: var(--ember-500); }
.ce-filo-prose p { font-size: 18px; line-height: 1.7; max-width: 56ch; }
.ce-filo-sig { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ember-700); margin-top: 32px; }

/* ---------------- FOOD (Stůl) ---------------- */
.ce-food {
  background: var(--forest-800);
  color: var(--linen-50);
  padding: 120px 56px;
  position: relative;
  overflow: hidden;
}
.ce-food .ce-section-num { color: var(--forest-300); }
.ce-food .ce-section-num::after { background: var(--rule-on-dark); }
.ce-food-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.ce-food-h {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--linen-50);
}
.ce-food-h em { font-style: italic; }
.ce-food-prose p { color: var(--linen-100); font-size: 17px; line-height: 1.65; }
.ce-food-photos {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 16px;
}
.ce-food-photos .img1 { grid-column: 1 / span 5; grid-row: span 4; }
.ce-food-photos .img2 { grid-column: 6 / span 4; grid-row: span 3; }
.ce-food-photos .img3 { grid-column: 10 / span 3; grid-row: span 4; }
.ce-food-photos .img4 { grid-column: 6 / span 4; grid-row: 4 / span 4; }
.ce-food-photos .img5 { grid-column: 10 / span 3; grid-row: 5 / span 3; }
.ce-food-photos .img6 { grid-column: 1 / span 5; grid-row: 5 / span 3; }
.ce-food-photos div {
  background: var(--forest-700);
  border-radius: var(--radius-image);
  overflow: hidden;
}
.ce-food-photos img { width: 100%; height: 100%; object-fit: cover; }

/* food caption strip */
.ce-food-caption {
  display: flex; align-items: baseline; gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-on-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ember-300);
}

/* ---------------- OKOLI (Cottage & surroundings) ---------------- */
.ce-okoli { background: var(--forest-800); color: var(--linen-50); }
.ce-okoli .ce-section-num { color: var(--forest-300); }
.ce-okoli .ce-section-num::after { background: var(--rule-on-dark); }
.ce-okoli .ce-okoli-h { color: var(--linen-50); }
.ce-okoli .ce-okoli-h em { color: var(--ember-400); }
.ce-okoli .ce-okoli-lede { color: var(--linen-100); }
.ce-okoli .ce-okoli-strip { color: var(--linen-100); }
.ce-okoli .ce-okoli-strip li { border-right-color: var(--rule-on-dark); }
.ce-okoli-head {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.ce-okoli-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.014em;
  margin: 16px 0 0 0;
  text-wrap: balance;
}
.ce-okoli-h em { font-style: italic; color: var(--ember-700); }
.ce-okoli-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  max-width: 52ch;
  margin: 0;
}
.ce-okoli-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 132px;
  gap: 16px;
}
.ce-okoli-mosaic .tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--forest-700);
}
.ce-okoli-mosaic .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.ce-okoli-mosaic .tile:hover img { transform: scale(1.03); }
.ce-okoli-mosaic .tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(180deg, rgba(26,36,24,0) 0%, rgba(26,36,24,0.78) 100%);
  color: var(--linen-50);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  display: flex; align-items: baseline; gap: 10px;
}
.ce-okoli-mosaic .tile figcaption span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  color: var(--ember-300);
  letter-spacing: 0.1em;
}
/* mosaic placement — irregular editorial grid */
.ce-okoli-mosaic .lead { grid-column: 1 / span 7; grid-row: span 4; }
.ce-okoli-mosaic .a    { grid-column: 8 / span 5; grid-row: span 2; }
.ce-okoli-mosaic .b    { grid-column: 8 / span 5; grid-row: span 2; }
.ce-okoli-mosaic .c    { grid-column: 1 / span 4; grid-row: span 3; }
.ce-okoli-mosaic .d    { grid-column: 5 / span 4; grid-row: span 3; }
.ce-okoli-mosaic .e    { grid-column: 9 / span 4; grid-row: span 2; }
.ce-okoli-mosaic .f    { grid-column: 9 / span 4; grid-row: span 1; }
.ce-okoli-mosaic .g    { grid-column: 1 / span 8; grid-row: span 2; }

.ce-okoli-strip {
  list-style: none;
  margin: 56px 0 0 0;
  padding: 32px 0 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-muted);
}
.ce-okoli-strip li {
  padding-right: 16px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
  line-height: 1.4;
}
.ce-okoli-strip li:last-child { border-right: none; }
.ce-okoli-strip li span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--forest-800);
  letter-spacing: -0.005em;
}

.ce-m .ce-okoli-head { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 32px; }
.ce-m .ce-okoli-h { font-size: 32px; }
.ce-m .ce-okoli-mosaic { grid-auto-rows: 80px; gap: 8px; }
.ce-m .ce-okoli-mosaic .lead { grid-column: 1 / span 12; grid-row: span 4; }
.ce-m .ce-okoli-mosaic .a    { grid-column: 1 / span 7; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .b    { grid-column: 8 / span 5; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .c    { grid-column: 1 / span 5; grid-row: span 3; }
.ce-m .ce-okoli-mosaic .d    { grid-column: 6 / span 7; grid-row: span 3; }
.ce-m .ce-okoli-mosaic .e    { grid-column: 1 / span 7; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .f    { grid-column: 8 / span 5; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .g    { grid-column: 1 / span 12; grid-row: span 2; }
.ce-m .ce-okoli-strip { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
.ce-m .ce-okoli-strip li:nth-child(2) { border-right: none; }
.ce-m .ce-okoli-strip li { border-right: 1px solid var(--rule); }
.ce-m .ce-okoli-strip li:last-child { border-right: none; }

/* ---------------- WEEKEND (sample timeline) ---------------- */
.ce-weekend-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 16px 0 64px 0;
  max-width: 18ch;
}
.ce-weekend-h em { font-style: italic; }

.ce-weekend-list { display: flex; flex-direction: column; gap: 0; }
.ce-weekend-item {
  display: grid;
  grid-template-columns: 140px 1fr 5fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.ce-weekend-item:last-child { border-bottom: 1px solid var(--rule); }
.ce-weekend-when {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 6px;
}
.ce-weekend-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.15;
  color: var(--forest-800);
}
.ce-weekend-text {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  max-width: 56ch;
}
.ce-weekend-text strong { font-weight: 600; color: var(--forest-800); }

.ce-weekend-pull {
  background: var(--linen-100);
  border-left: 2px solid var(--ember-500);
  padding: 32px 40px;
  margin: 48px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  color: var(--forest-800);
  max-width: 24ch;
}

/* ---------------- PRICE CARDS ---------------- */
.ce-prices-eyebrow { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; }
.ce-prices-h {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 56px 0;
  letter-spacing: -0.012em;
}
.ce-prices-grid {
  display: grid;
  gap: 24px;
}
/* layout variants */
.ce-prices-grid.layout-80-20 { grid-template-columns: 8fr 4fr; align-items: stretch; }
.ce-prices-grid.layout-60-40 { grid-template-columns: 6fr 4fr; align-items: stretch; }
.ce-prices-grid.layout-stacked { grid-template-columns: 1fr; gap: 32px; }

.ce-price-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--rule);
  background: var(--linen-100);
  color: var(--fg);
  transition: box-shadow var(--dur-mid) var(--ease-out);
  box-shadow: var(--shadow-1);
}
.ce-price-card:hover { box-shadow: var(--shadow-2); }
.ce-price-card-photo { aspect-ratio: 16/9; overflow: hidden; background: var(--forest-700); }
.ce-price-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.ce-price-card-body { padding: 40px; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.ce-price-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
}
.ce-price-name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.ce-price-name em { font-style: italic; }
.ce-price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ce-price-amount-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.ce-price-amount-suffix { font-family: var(--font-sans); font-size: 13px; color: var(--fg-muted); letter-spacing: 0.04em; }
.ce-price-meta { font-family: var(--font-sans); font-size: 13px; color: var(--fg-muted); display: flex; gap: 6px; flex-wrap: wrap; }
.ce-price-meta span:not(:last-child)::after { content: '·'; margin-left: 6px; color: var(--linen-300); }
.ce-price-text { font-size: 16px; line-height: 1.6; color: var(--fg); }
.ce-price-text strong { font-weight: 600; color: var(--forest-800); }
.ce-price-cta { margin-top: auto; padding-top: 8px; }

/* primary card on dark */
.ce-price-card.is-primary {
  background: var(--forest-800);
  color: var(--linen-50);
  border: none;
}
.ce-price-card.is-primary .ce-price-eyebrow { color: var(--ember-300); }
.ce-price-card.is-primary .ce-price-amount-suffix,
.ce-price-card.is-primary .ce-price-meta { color: var(--linen-200); }
.ce-price-card.is-primary .ce-price-meta span:not(:last-child)::after { color: var(--rule-on-dark); }
.ce-price-card.is-primary .ce-price-text { color: var(--linen-100); }
.ce-price-card.is-primary .ce-price-text strong { color: var(--linen-50); }
.ce-price-card.is-primary .ce-price-name { color: var(--linen-50); }
.ce-price-card.is-primary .ce-price-amount { color: var(--linen-50); }

/* layout-stacked tweaks */
.ce-prices-grid.layout-stacked .ce-price-card {
  display: grid;
  grid-template-columns: 5fr 7fr;
}
.ce-prices-grid.layout-stacked .ce-price-card-photo { aspect-ratio: auto; height: 100%; }

/* ---------------- MISTO (location) ---------------- */
.ce-misto-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 80px;
  align-items: start;
}
.ce-misto-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 16px 0 32px 0;
}
.ce-misto-h em { font-style: italic; }
.ce-misto-distances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}
.ce-misto-dist {
  padding: 24px 0;
  border-right: 1px solid var(--rule);
  text-align: left;
  padding-right: 16px;
}
.ce-misto-dist:last-child { border-right: none; }
.ce-misto-dist-city { font-family: var(--font-sans); font-size: 11px; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--fg-muted); }
.ce-misto-dist-time { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-top: 6px; }
.ce-misto-dist-time em { font-style: italic; }

/* map */
.ce-misto-map {
  aspect-ratio: 5/6;
  background: var(--linen-100);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.ce-misto-map svg { width: 100%; height: 100%; display: block; }

/* historical */
.ce-misto-hist {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--linen-100);
  border-radius: var(--radius-sm);
}
.ce-misto-hist img { width: 120px; height: auto; filter: sepia(0.2); border-radius: 2px; }
.ce-misto-hist-body { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.ce-misto-hist-body em { font-style: italic; }

/* ---------------- CALENDAR ---------------- */
.ce-cal-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  margin: 16px 0 24px 0;
}
.ce-cal-filters { display: flex; gap: 12px; margin-bottom: 32px; align-items: center; flex-wrap: wrap; }
.ce-cal-chip {
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px;
}
.ce-cal-chip-dot { width: 8px; height: 8px; border-radius: 50%; }
.ce-cal-chip.is-active { border-color: var(--forest-800); background: var(--forest-800); color: var(--linen-50); }
.ce-cal-chip:hover:not(.is-active) { border-color: var(--forest-800); color: var(--forest-800); }

.ce-cal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.ce-cal-month { }
.ce-cal-month-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  margin: 0 0 16px 0;
  display: flex; justify-content: space-between; align-items: baseline;
}
.ce-cal-month-year { font-family: var(--font-sans); font-size: 12px; color: var(--fg-faint); letter-spacing: var(--track-eyebrow); text-transform: uppercase; }
.ce-cal-weekends { display: flex; flex-direction: column; gap: 8px; }
.ce-cal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--linen-100);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.ce-cal-row:hover { border-color: var(--forest-800); background: var(--linen-50); }
.ce-cal-row .dates { color: var(--forest-800); font-weight: 500; }
.ce-cal-row .status { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.ce-cal-row.is-booked { background: transparent; color: var(--fg-faint); cursor: default; }
.ce-cal-row.is-booked:hover { border-color: transparent; background: transparent; }
.ce-cal-row.is-booked .dates { color: var(--fg-faint); text-decoration: line-through; text-decoration-color: var(--linen-300); }
.ce-cal-row.is-booked .status { color: var(--fg-faint); }
.ce-cal-row.kind-chef .status { color: var(--ember-700); }
.ce-cal-row.kind-self .status { color: var(--forest-600); }

/* ---------------- FAQ ---------------- */
.ce-faq-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400;
  margin: 16px 0 48px 0;
}
.ce-faq-list { border-top: 1px solid var(--rule); }
.ce-faq-item { border-bottom: 1px solid var(--rule); }
.ce-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 28px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest-800);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  transition: color var(--dur-fast) var(--ease-out);
}
.ce-faq-q:hover { color: var(--ember-700); }
.ce-faq-q-mark { font-family: var(--font-sans); font-size: 24px; font-weight: 300; color: var(--fg-muted); transition: transform var(--dur-mid) var(--ease-out); }
.ce-faq-item.is-open .ce-faq-q-mark { transform: rotate(45deg); color: var(--ember-500); }
.ce-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-mid) var(--ease-out), padding var(--dur-mid) var(--ease-out);
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  max-width: 60ch;
}
.ce-faq-item.is-open .ce-faq-a { max-height: 400px; padding-bottom: 28px; }
.ce-faq-a-signal { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--ember-700); }

/* ---------------- FOOTER ---------------- */
.ce-footer {
  background: var(--forest-900);
  color: var(--linen-100);
  padding: 96px 56px 48px;
}
.ce-footer-top { display: grid; grid-template-columns: 5fr 3fr 2fr 2fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid var(--rule-on-dark); }
.ce-footer-mark {
  font-family: 'Pirata One', 'UnifrakturCook', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--linen-50);
  margin: 0 0 16px 0;
  letter-spacing: 0.005em;
}
.ce-footer-mark em { font-style: italic; }
.ce-footer-tag { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--forest-300); }
.ce-footer h4 { font-family: var(--font-sans); font-size: 11px; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--forest-300); margin: 0 0 16px 0; }
.ce-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ce-footer li { font-family: var(--font-serif); font-size: 15px; color: var(--linen-100); }
.ce-footer a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
.ce-footer a:hover { border-color: var(--ember-300); color: var(--ember-300); }
.ce-footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; font-family: var(--font-sans); font-size: 12px; color: var(--forest-300); letter-spacing: 0.04em; }

/* ---------------- TYPE PAIRING VARIANTS ---------------- */
.type-classic {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}
.type-modern {
  --font-display: 'Fraunces', Georgia, serif;
  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}
.type-rustic {
  --font-display: 'EB Garamond', Georgia, serif;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Work Sans', system-ui, sans-serif;
}

/* ---------------- MOBILE ADAPTATIONS ---------------- */
.ce-m .ce-section-num { font-size: 10px; }
.ce-m .ce-filo-grid { grid-template-columns: 1fr; gap: 32px; }
.ce-m .ce-filo-h { font-size: 32px; }
.ce-m .ce-filo-prose p { font-size: 16px; }
.ce-m .ce-food { padding: 72px 20px; }
.ce-m .ce-food-grid { grid-template-columns: 1fr; gap: 24px; align-items: start; }
.ce-m .ce-food-h { font-size: 44px; }
/* Food photos: same 2-col mobile rhythm as the Okolí mosaic — feature lead
   image full-width, then paired half-width tiles. The prototype's irregular
   12-col grid produced postage-stamp tiles at 360px just like the mosaic did. */
.ce-m .ce-food-photos {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 92px;
  gap: 8px;
}
.ce-m .ce-food-photos .img1 { grid-column: 1 / -1; grid-row: span 3; }
.ce-m .ce-food-photos .img2 { grid-column: 1 / 2; grid-row: span 2; }
.ce-m .ce-food-photos .img3 { grid-column: 2 / 3; grid-row: span 2; }
.ce-m .ce-food-photos .img4 { grid-column: 1 / 2; grid-row: span 2; }
.ce-m .ce-food-photos .img5 { grid-column: 2 / 3; grid-row: span 2; }
.ce-m .ce-food-photos .img6 { display: none; }
.ce-m .ce-weekend-h { font-size: 36px; margin-bottom: 32px; }
.ce-m .ce-weekend-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
.ce-m .ce-weekend-pull { font-size: 22px; padding: 24px 28px; margin: 32px 0; }
.ce-m .ce-prices-grid.layout-80-20,
.ce-m .ce-prices-grid.layout-60-40,
.ce-m .ce-prices-grid.layout-stacked { grid-template-columns: 1fr; gap: 16px; }
.ce-m .ce-prices-grid.layout-stacked .ce-price-card { grid-template-columns: 1fr; }
.ce-m .ce-prices-grid.layout-stacked .ce-price-card-photo { aspect-ratio: 16/9; height: auto; }
.ce-m .ce-price-card-body { padding: 28px; }
.ce-m .ce-price-name { font-size: 28px; }
.ce-m .ce-price-amount { font-size: 40px; }
.ce-m .ce-misto-grid { grid-template-columns: 1fr; gap: 32px; }
.ce-m .ce-misto-h { font-size: 32px; }
.ce-m .ce-misto-distances { grid-template-columns: repeat(2, 1fr); }
.ce-m .ce-misto-dist:nth-child(2) { border-right: none; }
.ce-m .ce-cal-grid { grid-template-columns: 1fr; gap: 24px; }
.ce-m .ce-cal-h { font-size: 32px; }
.ce-m .ce-faq-h { font-size: 32px; }
.ce-m .ce-faq-q { font-size: 17px; padding: 22px 0; }
.ce-m .ce-faq-a { font-size: 15px; }
.ce-m .ce-footer { padding: 64px 20px 32px; }
.ce-m .ce-footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px; }
.ce-m .ce-footer-mark { font-size: 36px; }
.ce-m .ce-footer-bottom { flex-direction: column; gap: 12px; }

/* small util */
.ce-eyebrow { font-family: var(--font-sans); font-size: 11px; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--fg-muted); }

/* ============================================================
   Mobile refinements (added after the audit). Everything below
   is keyed on .ce-m (runtime-toggled on the .ce-site root).
   ============================================================ */

/* Prices section eyebrow row: prototype used space-between flex which
   on a 360-wide screen made "06 · CENA" and the kicker collide. */
.ce-m .ce-prices-eyebrow {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

/* Calendar — bigger tap targets + line-through contrast for booked weekends. */
.ce-m .ce-cal-chip { padding: 11px 16px; font-size: 14px; }
.ce-m .ce-cal-row { padding: 14px 14px; }
.ce-cal-row.is-booked { text-decoration-color: var(--fg-muted); }

/* Map: the OSM iframe captures touch-pan on mobile and breaks page scroll.
   Drop pointer events from the iframe and overlay a transparent tap target
   that opens the map in OpenStreetMap full-screen (no JS needed). */
.ce-m .ce-misto-map { aspect-ratio: 4/3; }
.ce-m .ce-misto-map iframe { pointer-events: none; }
.ce-misto-map-tap { display: none; }
.ce-m .ce-misto-map-tap {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

/* Mosaic at 360 was throwing 99-px-wide "postage-stamp" tiles. Switch to a
   2-column rhythm at mobile with lead and the wide tile (g) breaking full. */
.ce-m .ce-okoli-mosaic {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 92px;
  gap: 8px;
}
.ce-m .ce-okoli-mosaic .lead { grid-column: 1 / -1; grid-row: span 3; }
.ce-m .ce-okoli-mosaic .a    { grid-column: 1 / 2; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .b    { grid-column: 2 / 3; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .c    { grid-column: 1 / 2; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .d    { grid-column: 2 / 3; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .e    { grid-column: 1 / -1; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .f    { grid-column: 1 / 2; grid-row: span 2; }
.ce-m .ce-okoli-mosaic .g    { grid-column: 2 / 3; grid-row: span 2; }

/* Type readability — iOS auto-zooms on focus when text < 16px. */
.ce-m .ce-faq-a { font-size: 16px; }
.ce-m .ce-misto-hist-body { font-size: 16px; }
