/* Poland Survival v1 — no external dependencies */

:root {
  --ink: #171717;
  --muted: #66625f;
  --paper: #fffdf9;
  --soft: #f5f1eb;
  --line: #ded8d0;
  --red: #d4212f;
  --red-dark: #a91420;
  --green: #1d6b54;
  --shadow: 0 20px 60px rgba(27, 24, 21, .09);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.wrap {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
}
.compact { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 216, 208, .75);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.02em;
}
.flag-mark {
  width: 30px;
  height: 22px;
  display: grid;
  overflow: hidden;
  border: 1px solid #e4dfd9;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.flag-mark span:first-child { background: white; }
.flag-mark span:last-child { background: #dc143c; }

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.main-nav a:hover { color: var(--ink); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 750;
}

.hero {
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212,33,47,.10), transparent 32%),
    linear-gradient(180deg, #fffdf9 0%, #faf6f1 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.05;
}
h1 { font-size: clamp(48px, 7vw, 86px); max-width: 840px; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 27px; }
.hero-copy {
  margin: 22px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.microcopy { color: var(--muted); font-size: 13px; margin: 14px 0 0; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 19px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}
.primary { background: var(--red); color: white; }
.primary:hover { background: var(--red-dark); }
.secondary { background: white; border-color: var(--line); color: var(--ink); }
.secondary:hover { border-color: #aaa39b; }

.phone-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-label { margin: 0 0 46px; color: var(--muted); font-size: 13px; font-weight: 800; }
.phrase-pl { margin: 0; font-size: 34px; font-weight: 900; letter-spacing: -.04em; line-height: 1.08; }
.phrase-pl.small { font-size: 24px; }
.pronunciation { color: var(--red); font-weight: 750; margin: 9px 0 2px; }
.translation { color: var(--muted); margin: 0; }
.show-phrase {
  margin-top: 28px;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-weight: 850;
  cursor: pointer;
}

.section { padding: 84px 0; }
.section.soft { background: var(--soft); }
.section-heading { max-width: 730px; margin-bottom: 32px; }
.section-heading p:last-child { font-size: 18px; color: var(--muted); margin: 15px 0 0; }

.featured-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  padding: 32px;
}
.featured-card h3 { margin: 12px 0 8px; }
.featured-card p { margin: 0; color: #c9c5c0; max-width: 640px; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f9e8e9;
  color: #a51a25;
  font-size: 12px;
  font-weight: 850;
}
.pill.neutral { background: #f0ede8; color: #57514c; }

.cards { display: grid; gap: 16px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.small-card, .topic-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  padding: 24px;
}
.category-icon { display: block; font-size: 26px; margin-bottom: 40px; }
.text-button {
  width: auto;
  margin-top: 18px;
  padding: 0;
  background: transparent;
  color: var(--red);
  border: 0;
  font-weight: 850;
  cursor: pointer;
}
.topic-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.topic-card:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(35,29,24,.07); }
.topic-card span { font-size: 28px; margin-bottom: auto; }
.topic-card strong { font-size: 17px; margin-top: 26px; }
.topic-card small { color: var(--muted); margin-top: 4px; }
.large-copy { font-size: 21px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }
.footer-inner strong { color: var(--ink); }

/* Article */
.article-hero {
  padding: 70px 0 58px;
  background: linear-gradient(180deg, #fffdf9, #f8f3ee);
}
.article-wrap { max-width: 850px; }
.breadcrumbs { display: flex; gap: 7px; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.breadcrumbs a { text-decoration: none; }
.article-hero h1 { font-size: clamp(46px, 7vw, 74px); margin-top: 13px; }
.status-line { display: flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--muted); font-size: 13px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }

.article-section { padding: 70px 0; }
.quick-answer {
  padding: 28px;
  border-left: 5px solid var(--red);
  background: #fff6f5;
  border-radius: 0 18px 18px 0;
  margin-bottom: 24px;
}
.quick-answer h2 { font-size: 30px; }
.quick-answer p:last-child { margin-bottom: 0; }

.route-cards { display: grid; gap: 16px; }
.route-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 26px;
}
.route-card.recommended { border-color: #e8a2a8; box-shadow: 0 14px 44px rgba(183,30,41,.06); }
.route-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.route-icon { font-size: 30px; }
.route-card h2 { font-size: 34px; }
.route-summary { color: var(--muted); margin-top: 7px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0; }
.facts div { border-radius: 14px; background: var(--soft); padding: 13px; }
.facts dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.facts dd { margin: 5px 0 0; font-weight: 850; }
.source-link, .source-list a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}
.source-link:hover, .source-list a:hover { text-decoration: underline; }

.ticket-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.price-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.price-card span, .price-card small { display: block; color: var(--muted); }
.price-card strong { display: block; font-size: 34px; margin: 4px 0; letter-spacing: -.04em; }

.note { margin-top: 22px; padding: 18px; background: #fff8db; border: 1px solid #eadb94; border-radius: 14px; }
.source-list { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-size: 14px; }
.inline-button { margin-top: 14px; }

.phrase-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  padding: 26px;
}
.phrase-panel .show-phrase { width: auto; margin: 0; }

.next-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--ink);
  color: white;
  border-radius: 24px;
  padding: 28px;
}
.next-card p:not(.eyebrow) { color: #c9c5c0; margin-bottom: 0; }
.next-card h2 { font-size: 34px; }
.editorial-note { margin-top: 28px; color: var(--muted); font-size: 13px; }

/* Full screen phrase */
.phrase-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: white;
  color: black;
}
.phrase-overlay[hidden] { display: none; }
.overlay-close {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  font-size: 32px;
  cursor: pointer;
}
.overlay-content {
  min-height: 100dvh;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overlay-kicker { color: var(--red); font-size: 13px; font-weight: 900; letter-spacing: .16em; }
.overlay-phrase { margin: 8px 0 0; font-size: clamp(42px, 11vw, 110px); font-weight: 950; line-height: 1.02; letter-spacing: -.055em; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 900;
  transform: translate(-50%, 20px);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.toast.visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 820px) {
  .hero { padding-top: 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .phone-card { transform: none; }
  .cards.three { grid-template-columns: 1fr; }
  .cards.four { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr; }
  .phrase-panel, .next-card { grid-template-columns: 1fr; display: grid; }
  .featured-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 26px), var(--max)); }
  .header-inner { min-height: 62px; }
  .menu-button { display: inline-block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 13px;
    right: 13px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px; }
  h1 { font-size: 52px; }
  .hero { padding: 50px 0 60px; }
  .section, .article-section { padding: 56px 0; }
  .cards.four { grid-template-columns: 1fr; }
  .ticket-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .phrase-panel .show-phrase, .next-card .button { width: 100%; }
}

/* Restaurant phrase page */
.phrase-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.phrase-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.phrase-row .button {
  min-width: 92px;
}
.phrase-row .show-phrase {
  width: auto;
  margin: 0;
}
.restaurant-tips .small-card {
  min-height: 220px;
}
.restaurant-tips .category-icon {
  margin-bottom: 22px;
}
.restaurant-tips strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}
@media (max-width: 620px) {
  .phrase-row {
    grid-template-columns: 1fr;
  }
  .phrase-row .button {
    width: 100%;
  }
}

/* Gdansk public transport page */
.transport-overview {
  display: grid;
  gap: 16px;
}
.three-ticket-grid {
  grid-template-columns: repeat(3, 1fr);
}
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.decision-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.decision-card strong {
  display: block;
  margin-bottom: 7px;
}
.decision-card p {
  margin: 0;
  color: var(--muted);
}
.howto-steps {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}
.howto-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.howto-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.howto-step strong {
  display: block;
  margin-bottom: 5px;
}
.howto-step p {
  margin: 0;
  color: var(--muted);
}
.warning-card, .danger-card {
  margin: 24px 0;
  border-radius: 18px;
  padding: 22px;
}
.warning-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  border: 1px solid #eadb94;
  background: #fff8db;
}
.warning-card p {
  margin: 5px 0 0;
}
.warning-icon {
  font-size: 24px;
}
.danger-card {
  border: 1px solid #e8a2a8;
  background: #fff3f3;
}
.danger-card h3 {
  font-size: 25px;
  line-height: 1.15;
  margin: 5px 0 10px;
}
.danger-card p:last-child {
  margin-bottom: 0;
}
.subheading {
  margin-top: 34px;
  font-size: 23px;
}
@media (max-width: 820px) {
  .three-ticket-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }
}

/* Tap water in Poland page */
.answer-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  margin-bottom: 26px;
  border: 1px solid #b8dccb;
  border-radius: 20px;
  background: #f0faf5;
}
.answer-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 32px;
  font-weight: 950;
}
.answer-card h2 {
  font-size: 32px;
}
.answer-card p:last-child {
  margin-bottom: 0;
}
.city-water-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 28px;
}
.city-water-card {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.city-water-card h3 {
  margin: 12px 0 10px;
}
.city-water-card p {
  color: var(--muted);
}
.city-emoji {
  font-size: 30px;
}
.water-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.water-choice {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}
.water-choice span {
  display: block;
  font-size: 29px;
  margin-bottom: 12px;
}
.water-choice strong {
  display: block;
  font-size: 18px;
}
.water-choice p {
  margin-bottom: 0;
  color: var(--muted);
}
.small-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 18px;
}
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  padding: 0 18px;
}
.faq-list summary {
  padding: 18px 0;
  font-weight: 850;
  cursor: pointer;
}
.faq-list details p {
  margin: -5px 0 18px;
  color: var(--muted);
}
@media (max-width: 820px) {
  .city-water-grid,
  .water-choice-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .answer-card {
    grid-template-columns: 1fr;
  }
}

/* Tipping in Poland page */
.tip-scale {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.tip-scale-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.tip-scale-item.featured {
  border-color: #b8dccb;
  background: #f0faf5;
}
.tip-number {
  display: block;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.tip-scale-item p {
  margin: 4px 0 0;
  color: var(--muted);
}
@media (max-width: 820px) {
  .tip-scale { grid-template-columns: 1fr; }
}

/* Paying by card in Poland page */
.payment-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 28px 0 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.payment-stat-number {
  font-size: 50px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.055em;
}
.payment-stat p {
  margin: 4px 0 0;
  color: var(--muted);
}
.currency-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 28px 0;
}
.currency-good, .currency-caution {
  padding: 24px;
  border-radius: 19px;
  border: 1px solid var(--line);
  background: white;
}
.currency-good {
  border-color: #b8dccb;
  background: #f0faf5;
}
.currency-caution {
  border-color: #eadb94;
  background: #fffaf0;
}
.currency-badge {
  display: inline-grid;
  min-width: 55px;
  min-height: 38px;
  place-items: center;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-weight: 950;
  margin-bottom: 16px;
}
.currency-choice h3 {
  font-size: 24px;
  margin-bottom: 9px;
}
.currency-choice p {
  color: var(--muted);
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .payment-stat,
  .currency-choice {
    grid-template-columns: 1fr;
  }
}

/* Currency tip + BLIK */
.travel-money-tip {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 24px;
  margin: 26px 0 16px;
  border: 1px solid #b8dccb;
  border-radius: 19px;
  background: #f0faf5;
}
.travel-money-icon {
  font-size: 30px;
}
.travel-money-tip h3 {
  font-size: 25px;
  margin: 0 0 10px;
  line-height: 1.18;
}
.travel-money-tip p {
  margin-top: 8px;
}
.tip-example {
  padding: 13px 15px;
  border-radius: 12px;
  background: white;
  border: 1px solid #dcece4;
}
.blik-demo {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  align-items: stretch;
  margin: 28px 0 22px;
}
.blik-code-box {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--ink);
  color: white;
  text-align: center;
}
.blik-code-box strong {
  display: block;
  font-size: 36px;
  letter-spacing: .12em;
  margin: 12px 0 6px;
}
.blik-label, .blik-code-box small {
  color: #c9c5c0;
}
.blik-explainer {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.blik-explainer h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
.blik-explainer ol {
  margin: 0;
  padding-left: 22px;
}
.blik-explainer li {
  margin: 9px 0;
}
@media (max-width: 700px) {
  .travel-money-tip,
  .blik-demo {
    grid-template-columns: 1fr;
  }
}

/* Polish currency page */
.money-basics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 25px 0;
}
.money-basic, .denomination-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}
.money-basic span, .denomination-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.money-basic strong {
  font-size: 28px;
}
.rate-tip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.rate-tip p { margin-bottom: 0; color: var(--muted); }
.kantor-board {
  margin: 25px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #171717;
  color: white;
}
.kantor-board > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #393939;
}
.kantor-board > div:last-child { border-bottom: 0; }
.kantor-head {
  background: #292929;
  color: #c9c5c0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
}
.denomination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 25px 0;
}
.denomination-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .money-basics,
  .denomination-grid,
  .rate-tip {
    grid-template-columns: 1fr;
  }
}

/* Sunday shopping + Zabka page */
.next-sunday-card {
  margin: 26px 0;
  padding: 24px;
  border-radius: 20px;
  background: var(--ink);
  color: white;
}
.next-sunday-label {
  display: block;
  color: #c9c5c0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.next-sunday-card strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 30px;
  letter-spacing: -.035em;
}
.next-sunday-card small { color: #c9c5c0; }

.sunday-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 27px 0;
}
.sunday-date {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}
.sunday-date > span {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
}
.sunday-date > strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  margin: 7px 0 8px;
  letter-spacing: -.04em;
}
.sunday-date small { color: var(--muted); }

.zabka-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  margin: 28px 0;
}
.zabka-word {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px;
  border-radius: 22px;
  background: #ecf8f0;
  border: 1px solid #b9dcc5;
}
.zabka-word strong {
  display: block;
  font-size: 38px;
  letter-spacing: -.04em;
}
.zabka-word span {
  margin-top: 6px;
  color: var(--muted);
}
.zabka-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.zabka-use {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}
.zabka-use > span {
  display: block;
  font-size: 27px;
  margin-bottom: 14px;
}
.zabka-use strong { display: block; }
.zabka-use p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.nano-hero-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 26px 0;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--ink);
  color: white;
}
.nano-hero-box h3 {
  margin: 12px 0 9px;
  font-size: 31px;
}
.nano-hero-box p { color: #c9c5c0; margin-bottom: 0; }
.nano-chip {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}
.nano-icon { font-size: 58px; }
.fun-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 25px 0;
  padding: 20px;
  border-radius: 17px;
  background: #f5f1eb;
  border: 1px solid var(--line);
}
.fun-fact > span { font-size: 28px; }
.fun-fact p { margin: 4px 0 0; color: var(--muted); }

@media (max-width: 820px) {
  .sunday-grid { grid-template-columns: repeat(2, 1fr); }
  .zabka-use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .zabka-intro,
  .nano-hero-box { grid-template-columns: 1fr; }
  .zabka-use-grid { grid-template-columns: 1fr; }
}

/* Homepage v11 */
.homepage-hero .hero-copy { max-width: 760px; }

.quick-start-section { padding-top: 66px; }
.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.start-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 128px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.start-card:hover {
  transform: translateY(-2px);
  border-color: #bdb5ad;
  box-shadow: 0 12px 35px rgba(35,29,24,.07);
}
.start-number {
  color: #aaa29a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.start-icon { font-size: 28px; }
.start-card strong {
  display: block;
  font-size: 18px;
  letter-spacing: -.02em;
}
.start-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}
.start-arrow {
  font-size: 24px;
  font-weight: 800;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 46px;
  align-items: end;
}
.split-heading > p:last-child {
  margin: 0 0 4px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.guide-card {
  grid-column: span 2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--ink);
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(35,29,24,.07);
}
.guide-card.featured-guide {
  grid-column: span 4;
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.guide-icon {
  font-size: 29px;
  margin-bottom: 25px;
}
.guide-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.featured-guide .guide-tag { color: #f1a4aa; }
.guide-card h3 {
  font-size: 27px;
  margin-bottom: 10px;
}
.guide-card p {
  margin: 0;
  color: var(--muted);
}
.featured-guide p { color: #c9c5c0; max-width: 580px; }
.guide-link {
  margin-top: auto;
  padding-top: 26px;
  font-weight: 850;
  color: var(--red);
}
.featured-guide .guide-link { color: white; }

.gdansk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.city-feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 23px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.city-feature-card h3 {
  margin: 15px 0 10px;
  font-size: 33px;
  max-width: 520px;
}
.city-feature-card p {
  margin: 0;
  color: #c9c5c0;
}
.light-city-card {
  background: #f2eee8;
  color: var(--ink);
  border: 1px solid var(--line);
}
.light-city-card p { color: var(--muted); }
.city-card-arrow {
  align-self: flex-end;
  font-size: 34px;
  line-height: 1;
}

.survival-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}
.restaurant-mode-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 23px;
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.restaurant-mode-card h3 {
  margin: 16px 0 12px;
  font-size: 38px;
}
.restaurant-mode-card p {
  max-width: 560px;
  margin: 0;
  color: #c9c5c0;
}
.restaurant-mode-card .button {
  width: fit-content;
  margin-top: auto;
}
.inverse-tag {
  color: #f1a4aa;
}
.phrase-stack {
  display: grid;
  gap: 12px;
}
.compact-phrase-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.compact-phrase-card small,
.compact-phrase-card span {
  display: block;
  color: var(--muted);
}
.compact-phrase-card small {
  margin-bottom: 5px;
  color: var(--red);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 10px;
}
.compact-phrase-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  line-height: 1.2;
}
.mini-show {
  min-width: 68px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}
.mini-show:hover { border-color: #aaa39b; }

.homepage-purpose { text-align: center; }
.homepage-purpose .large-copy { margin-bottom: 26px; }
.purpose-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.purpose-points span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 900px) {
  .guide-card,
  .guide-card.featured-guide { grid-column: span 3; }
  .split-heading { grid-template-columns: 1fr; gap: 12px; }
  .survival-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .start-grid,
  .gdansk-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card,
  .guide-card.featured-guide { grid-column: auto; min-height: 245px; }
}
@media (max-width: 520px) {
  .start-card {
    grid-template-columns: auto 1fr auto;
  }
  .start-number { display: none; }
  .restaurant-mode-card { min-height: 350px; }
  .restaurant-mode-card h3 { font-size: 32px; }
}
