/* Skákací Hrady — Variant A · Bouncy World
   Standalone CSS. Designed for 1280px fixed-width layout;
   scales down on narrower viewports via meta viewport. */

:root {
  --font: "Comfortaa", system-ui, -apple-system, sans-serif;
  --font-display: "Fredoka", system-ui, sans-serif;
  --sky-1: #7EC8F7;
  --sky-2: #B8E2F9;
  --grass-1: #6FBE4D;
  --grass-2: #4E9C33;
  --ink: #14261F;
  --red: #EF3E3E;
  --yellow: #FFD33D;
  --pink: #FF82B2;
  --purple: #9B6EE3;
  --orange: #FF9840;
  --shadow-ink: 0 8px 24px rgba(20,38,31,0.08), 0 2px 6px rgba(20,38,31,0.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--grass-2);
  -webkit-font-smoothing: antialiased;
}
button { font-family: inherit; }

.page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--sky-1) 0%,
    var(--sky-2) 40%,
    var(--sky-2) 55%,
    var(--grass-1) 55%,
    var(--grass-2) 100%
  );
}

/* ----- Sun ----- */
.sun {
  position: absolute;
  top: 40px; right: 100px;
  width: 140px; height: 140px;
  z-index: 1;
}
.sun-rays { animation: sun-spin 40s linear infinite; transform-origin: center; will-change: transform; }
.sun-face {
  position: absolute; inset: 20px;
  border-radius: 100px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
}

/* ----- Clouds ----- */
.cloud { position: absolute; z-index: 1; animation: cloud-drift 40s linear infinite; will-change: transform; }
.cloud-1 { top: 80px; left: 0; }
.cloud-2 { top: 200px; left: -300px; animation-duration: 55s; animation-delay: -15s; }

/* ----- Nav ----- */
.nav {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
}
.nav-pill {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  padding: 8px 8px 8px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(20,38,31,0.12);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  padding-right: 20px;
  border-right: 1px solid rgba(20,38,31,0.1);
  margin-right: 8px;
}
.nav-logo { font-size: 22px; }
.nav-name { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; white-space: nowrap; }
.nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: var(--ink); text-decoration: none; border-radius: 100px;
  cursor: pointer;
}
.nav-link:hover { background: rgba(20,38,31,0.05); }
.nav-cta {
  background: var(--red); color: #fff; border: none;
  padding: 10px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  margin-left: 4px;
  box-shadow: 0 4px 12px rgba(239,62,62,0.33);
  transition: transform .15s;
  text-decoration: none;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-balloons { position: relative; width: 120px; height: 90px; }
.nav-balloons .balloon { position: absolute; }

/* ----- Hero ----- */
.hero {
  position: relative; z-index: 2;
  padding: 20px 0 0;
  text-align: center;
}
.hero-kicker {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--ink); opacity: 0.8;
  margin-bottom: 8px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 140px; line-height: 0.9;
  font-weight: 700; letter-spacing: -4px;
  margin: 0 0 16px;
  text-shadow: 6px 6px 0 var(--ink);
  color: #fff;
  text-transform: uppercase;
}
.hero-lede {
  font-size: 20px; max-width: 600px; margin: 0 auto 30px;
  color: var(--ink); font-weight: 500;
}

.hero-stage {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
  height: 620px;
  margin-top: -20px;
}
.kids-layer { position: absolute; inset: 0; pointer-events: none; }
.flying-kid {
  position: absolute; bottom: 280px; left: 50%;
  font-size: 40px;
  animation: kid-fly 0.8s ease-out forwards;
}

.castle-wobble {
  animation: castle-wobble 3.5s ease-in-out infinite;
  transform-origin: bottom center;
  cursor: pointer;
  outline: none;
  will-change: transform;
}
.castle-wobble.squish { animation: castle-squish 0.6s cubic-bezier(.4,1.6,.5,1); }

.hero-ctas {
  position: relative; z-index: 3;
  display: flex; gap: 16px; justify-content: center;
  margin-top: 16px;
}
.btn {
  font-family: var(--font-display);
  padding: 20px 32px; border-radius: 100px;
  font-size: 18px; font-weight: 800;
  border: 3px solid var(--ink); cursor: pointer;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); }
.tilt-l { transform: rotate(-2deg); }
.tilt-l:hover { transform: rotate(-2deg) translateY(-2px); }
.tilt-r { transform: rotate(1.5deg); }
.tilt-r:hover { transform: rotate(1.5deg) translateY(-2px); }

/* ----- Catalog ----- */
.catalog { position: relative; z-index: 2; padding: 140px 48px 40px; }
.section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: 80px; font-weight: 800; letter-spacing: -2px;
  margin: 0 0 40px; text-transform: uppercase;
  color: #fff; text-shadow: 5px 5px 0 var(--ink);
}

.filter-row {
  display: flex; gap: 10px; justify-content: center;
  margin-bottom: 24px; flex-wrap: wrap;
}
.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  padding: 11px 22px; border-radius: 100px; border: none;
  background: #fff; color: var(--ink);
  font-size: 15px; font-weight: 700; cursor: pointer;
  box-shadow: 0 2px 6px rgba(20,38,31,0.08);
  transition: transform .15s;
}
.pill:hover { transform: translateY(-1px); }
.pill.is-active { color: #fff; }
.pill.is-active.c-red    { background: var(--red);    box-shadow: 0 6px 14px rgba(239,62,62,0.33); }
.pill.is-active.c-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 6px 14px rgba(255,211,61,0.33); }
.pill.is-active.c-pink   { background: var(--pink);   box-shadow: 0 6px 14px rgba(255,130,178,0.33); }
.pill.is-active.c-purple { background: var(--purple); box-shadow: 0 6px 14px rgba(155,110,227,0.33); }
.pill.is-active.c-orange { background: var(--orange); box-shadow: 0 6px 14px rgba(255,152,64,0.33); }

.grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 20px 0 60px;
}
.card {
  background: #fff; border-radius: 28px; padding: 18px 18px 22px;
  position: relative; box-shadow: var(--shadow-ink);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,1.6,.5,1);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-10px) scale(1.04) rotate(-2deg); }
.card-price {
  position: absolute; top: 16px; right: 16px;
  background: #fff; padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 800; color: var(--ink);
  box-shadow: 0 2px 8px rgba(20,38,31,0.1);
  z-index: 2;
}
.card-art {
  height: 190px; display: flex; align-items: center; justify-content: center;
  border-radius: 16px; margin-bottom: 0; flex-shrink: 0;
}
.card-thumb-img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; display: block; }
.card-body { padding: 16px 4px 0; display: flex; flex-direction: column; flex: 1; }
.card-name { font-size: 20px; font-weight: 700; font-family: 'Comfortaa', system-ui, sans-serif; letter-spacing: -0.3px; line-height: 1.2; margin-bottom: 4px; }
.card-tagline { font-size: 12px; opacity: 0.5; margin: 0 0 12px; line-height: 1.4; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; font-size: 12px; font-weight: 600; color: #3a5048; }
.card-tag { padding: 5px 11px; background: #F3F8F0; border-radius: 100px; }
.card-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 20px;
  color: #fff; font-size: 18px; font-weight: 600;
  opacity: 0.85;
}

/* ----- Date section ----- */
.dates { position: relative; z-index: 2; padding: 60px 48px 80px; }
.dates-row {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 40px;
}
.cal-card {
  background: #fff; border: 4px solid var(--ink); border-radius: 20px;
  padding: 28px; box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1.5deg); width: 340px;
  user-select: none;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.cal-nav {
  border: none; background: transparent; cursor: pointer;
  padding: 4px; font-size: 20px; color: var(--red);
  line-height: 1; font-weight: 700;
}
.cal-title { font-weight: 700; font-size: 15px; }
.cal-dow {
  display: grid; grid-template-columns: repeat(7, 34px);
  gap: 4px; justify-content: center;
  font-size: 11px; color: #999;
  margin-bottom: 4px;
}
.cal-dow > div { text-align: center; }
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 34px);
  gap: 4px; justify-content: center;
}
.day {
  width: 34px; height: 34px; border: none; border-radius: 8px;
  background: transparent; color: #222;
  font-size: 13px; font-family: inherit;
  cursor: pointer; padding: 0;
}
.day:hover:not(:disabled) { background: rgba(239,62,62,0.08); }
.day.past { color: #ccc; opacity: 0.4; cursor: not-allowed; }
.day.booked {
  background: #FFE5C2; color: #888; text-decoration: line-through;
  cursor: not-allowed;
}
.day.selected {
  background: var(--red); color: #fff; font-weight: 700;
}
.cal-legend {
  display: flex; gap: 12px; margin-top: 10px;
  font-size: 10px; color: #888;
}
.cal-legend span { display: flex; align-items: center; gap: 4px; }
.cal-legend i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }

.result-col { width: 340px; padding-top: 10px; }
.result-card {
  border: 4px solid var(--ink); border-radius: 20px;
  padding: 24px; box-shadow: 8px 8px 0 var(--ink);
}
.result-empty {
  background: #fff; border-style: dashed;
  transform: rotate(1deg); text-align: center; padding: 30px;
}
.result-empty-emoji { font-size: 56px; margin-bottom: 8px; }
.result-empty-text { font-size: 16px; font-weight: 700; color: var(--ink); }
.result-ok {
  background: var(--yellow); transform: rotate(2deg);
}
.result-ok .emo { font-size: 36px; }
.result-ok .kicker {
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-top: 8px;
}
.result-ok .date {
  font-size: 28px; font-weight: 900; margin-top: 4px; line-height: 1.1;
}
.result-ok .book-btn {
  margin-top: 18px; width: 100%;
  background: var(--ink); color: #fff; border: none;
  padding: 14px 20px; border-radius: 100px;
  font-size: 15px; font-weight: 800; cursor: pointer;
}

/* ----- Footer ----- */
.footer {
  position: relative; z-index: 2;
  background: var(--ink); padding: 64px 48px 28px;
  color: #fff; margin-top: 60px; overflow: hidden;
}
.footer-balloons {
  position: absolute; top: 40px; right: 60px;
  display: flex; gap: 14px;
}
.footer-shout {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 800; letter-spacing: -2.5px;
  line-height: 0.9; text-transform: uppercase;
  margin: 0 0 48px; max-width: 800px;
}
.footer-shout .y { color: var(--yellow); }
.footer-shout .r { color: var(--red); }
.btn-big-yellow {
  font-family: var(--font-display);
  background: var(--yellow); color: var(--ink); border: none;
  padding: 18px 40px; border-radius: 100px;
  font-size: 18px; font-weight: 800; cursor: pointer;
  margin-bottom: 56px;
  box-shadow: 0 6px 0 #D9A800;
  transition: transform .12s, box-shadow .12s;
}
.btn-big-yellow:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #D9A800;
}

.footer-cols {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-cols p { font-size: 14px; line-height: 1.6; opacity: 0.7; max-width: 280px; margin: 0; }
.footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
  font-size: 18px; font-weight: 700;
}
.footer-brand > span:first-child { font-size: 22px; }
.footer-cols h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; opacity: 0.5; margin: 0 0 14px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li {
  font-size: 14px; padding: 5px 0; opacity: 0.85;
}
.footer-cols li.spacer { margin-top: 8px; }
.footer-cols a {
  color: inherit; text-decoration: none;
  transition: opacity .15s;
}
.footer-cols a:hover { opacity: 0.6; }

.footer-legal {
  display: flex; justify-content: space-between;
  font-size: 12px; opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px; margin-top: 40px;
}
.footer-legal > div:last-child { display: flex; gap: 20px; }

/* ----- Animations ----- */
@keyframes castle-wobble {
  0%,100% { transform: scale(1,1); }
  20% { transform: scale(1.03, 0.95); }
  40% { transform: scale(0.97, 1.04); }
  60% { transform: scale(1.02, 0.98); }
}
@keyframes castle-squish {
  0%   { transform: scale(1,1); }
  30%  { transform: scale(1.15, 0.7); }
  60%  { transform: scale(0.92, 1.12); }
  100% { transform: scale(1,1); }
}
@keyframes kid-fly {
  0%   { transform: translate(0, 0) rotate(0); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) rotate(var(--tr)); opacity: 0; }
}
@keyframes float-a {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%     { transform: translateY(-8px) rotate(2deg); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0) rotate(3deg); }
  50%     { transform: translateY(-10px) rotate(-1deg); }
}
.float-a { animation: float-a 3s ease-in-out infinite; will-change: transform; }
.float-b { animation: float-b 3.4s ease-in-out infinite; will-change: transform; }

@keyframes cloud-drift {
  0%   { transform: translateX(-100px); }
  100% { transform: translateX(1400px); }
}
@keyframes sun-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ----- How it works ----- */
.how { position: relative; z-index: 2; padding: 80px 48px; }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1184px; margin: 0 auto;
}
.how-card {
  background: #fff; border: 4px solid var(--ink); border-radius: 20px;
  padding: 28px 22px; box-shadow: 6px 6px 0 var(--ink);
}
.how-card:nth-child(odd)  { transform: rotate(-1.2deg); }
.how-card:nth-child(even) { transform: rotate(0.8deg);  }
.how-num {
  font-family: var(--font-display);
  font-size: 60px; font-weight: 800; line-height: 1; margin-bottom: 12px;
}
.how-card:nth-child(1) .how-num { color: var(--red);    }
.how-card:nth-child(2) .how-num { color: var(--purple); }
.how-card:nth-child(3) .how-num { color: var(--orange); }
.how-card:nth-child(4) .how-num { color: var(--pink);   }
.how-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.how-card p  { font-size: 13px; line-height: 1.65; }

/* ----- Card pickup note ----- */
.card-pickup {
  font-size: 11px; font-weight: 600; color: #3a5048;
  margin-top: 10px; opacity: 0.6; line-height: 1.4;
}

/* ----- Card price detail ----- */
.card-price-detail {
  font-size: 11px; font-weight: 600; color: #888;
  margin: 2px 0 12px;
}

/* ----- Delivery area ----- */
.delivery { position: relative; z-index: 2; padding: 80px 48px; text-align: center; }
.delivery-lede {
  font-size: 18px; font-weight: 500; max-width: 600px;
  margin: 0 auto 40px; color: var(--ink); opacity: 0.85; line-height: 1.6;
}
.delivery-cities {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-bottom: 28px;
}
.delivery-city {
  background: #fff; border: 3px solid var(--ink); border-radius: 100px;
  padding: 12px 24px; font-size: 16px; font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}
.delivery-note {
  font-size: 14px; font-weight: 600; opacity: 0.55;
}

/* ----- Gallery button on card ----- */
.card-gallery-wrap { margin-top: auto; padding-top: 28px; }
.card-gallery-btn {
  width: 100%;
  background: var(--ink); color: #fff; border: none;
  padding: 11px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: var(--font);
  transition: transform .15s, background .15s;
}
.card-gallery-btn:hover { transform: translateY(-2px); background: #2a4035; }

/* ----- Gallery overlay ----- */
.gallery-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,38,31,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
  padding: 24px;
}
.gallery-overlay.is-open { opacity: 1; pointer-events: auto; }

.gallery-modal {
  background: #fff; border: 4px solid var(--ink); border-radius: 24px;
  box-shadow: 12px 12px 0 rgba(20,38,31,0.5);
  width: 960px; max-width: 100%;
  padding: 24px 28px;
  display: flex; flex-direction: column; gap: 16px;
  max-height: calc(100vh - 48px); overflow: hidden;
}

.gallery-header {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.gallery-castle-name { font-size: 22px; font-weight: 800; flex: 1; }
.gallery-counter { font-size: 13px; font-weight: 600; opacity: 0.45; }
.gallery-close {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink); color: #fff; border: none;
  font-size: 16px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font); transition: transform .15s;
}
.gallery-close:hover { transform: scale(1.1); }

.gallery-main {
  display: flex; align-items: center; gap: 14px; flex: 1; min-height: 0;
}
.gallery-img-wrap {
  flex: 1; border-radius: 16px; overflow: hidden;
  background: #f0f0f0; aspect-ratio: 4/3; min-height: 0;
  display: flex; align-items: center; justify-content: center;
}
.gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-arrow {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--yellow); color: var(--ink);
  border: 3px solid var(--ink); font-size: 32px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s;
  font-family: var(--font); line-height: 1; padding-bottom: 2px;
}
.gallery-arrow:hover:not(:disabled) { transform: scale(1.1); }
.gallery-arrow:disabled { opacity: 0.25; cursor: not-allowed; transform: none; box-shadow: none; }

.gallery-thumbs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; flex-shrink: 0;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 2px; }
.gallery-thumb {
  width: 80px; height: 60px; border-radius: 8px; overflow: hidden;
  cursor: pointer; border: 3px solid transparent; flex-shrink: 0;
  transition: border-color .15s, transform .15s;
}
.gallery-thumb:hover { transform: scale(1.05); }
.gallery-thumb.is-active { border-color: var(--red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ================================================
   PERFORMANCE / ACCESSIBILITY
   ================================================ */

@media (prefers-reduced-motion: reduce) {
  .castle-wobble,
  .sun-rays,
  .cloud,
  .float-a,
  .float-b { animation: none; }
}

/* On small screens, disable the most expensive animations to reduce GPU load */
@media (max-width: 900px) {
  .castle-wobble { animation-duration: 6s; }
  .gallery-overlay { backdrop-filter: none; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ----- Hamburger button (hidden on desktop) ----- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  margin-left: 6px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Mobile nav dropdown ----- */
.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: 16px;
  right: 16px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 12px;
  z-index: 20;
  flex-direction: column;
  gap: 2px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.nav-mobile a:hover { background: rgba(20,38,31,0.05); }
.nav-mobile .nav-mobile-cta {
  margin-top: 8px;
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(239,62,62,0.3);
}
.nav-mobile .nav-mobile-cta:hover { background: #d42e2e; }

/* ----- Tablet & mobile (≤ 900px) ----- */
@media (max-width: 900px) {
  .sun { display: none; }
  .cloud { display: none; }
  .footer-balloons { display: none; }

  .nav { padding: 16px 20px; position: relative; }
  .nav-pill { padding: 8px 6px 8px 16px; }
  .nav-link, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-balloons { display: none; }

  .hero { padding: 12px 0 0; }
  .hero-title { font-size: clamp(52px, 11vw, 120px); letter-spacing: -2px; line-height: 1.0; }
  .hero-lede { font-size: 17px; padding: 0 24px; line-height: 1.7; }

  .how-card h3 { font-size: 16px; line-height: 1.3; margin-bottom: 8px; }
  .how-card p { font-size: 13px; line-height: 1.7; }

  .footer-cols p { line-height: 1.7; }
  .footer-cols li { padding: 7px 0; }
  .hero-stage { height: auto; padding-bottom: 16px; }
  .castle-wobble svg { width: 100%; height: auto; max-width: 600px; }
  .tilt-l { transform: rotate(-2deg); }
  .tilt-r { transform: rotate(1.5deg); }
  .hero-ctas { padding: 0 24px 16px; gap: 12px; }

  .catalog { padding: 48px 20px 24px; }
  .section-title { font-size: clamp(38px, 9vw, 80px); }
  .filter-row { padding: 0 4px; }
  .grid { grid-template-columns: 1fr; gap: 16px; }

  .how { padding: 48px 20px; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .delivery { padding: 48px 20px; }
  .delivery-lede { font-size: 16px; }
  .delivery-city { font-size: 15px; padding: 10px 18px; }

  .footer { padding: 48px 24px 24px; }
  .footer-shout { font-size: clamp(36px, 8vw, 72px); margin-bottom: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }

  .gallery-modal { padding: 16px 18px; gap: 12px; }
  .gallery-castle-name { font-size: 18px; }
  .gallery-arrow { width: 42px; height: 42px; font-size: 26px; }
  .gallery-thumb { width: 68px; height: 51px; }
}

/* ----- Mobile only (≤ 560px) ----- */
@media (max-width: 560px) {
  .nav-name { font-size: 14px; }

  .hero-title { font-size: clamp(40px, 13vw, 56px); line-height: 1.05; }
  .hero-lede { font-size: 16px; line-height: 1.75; }
  .hero-stage { min-height: 200px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 340px; text-align: center; justify-content: center; }

  .how-grid { grid-template-columns: 1fr; }
  .how-card:nth-child(odd),
  .how-card:nth-child(even) { transform: none; }

  .footer-cols { grid-template-columns: 1fr; }
  .footer-shout { font-size: clamp(30px, 11vw, 44px); }

  .gallery-overlay { padding: 12px; }
  .gallery-modal { border-radius: 16px; }
  .gallery-main { gap: 8px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 22px; }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumb { width: 56px; height: 42px; }
}
