:root {
  --bg: oklch(0.97 0.012 75);
  --ink: oklch(0.24 0.02 40);
  --ink-soft: oklch(0.42 0.03 40);
  --ink-soft2: oklch(0.3 0.02 40);
  --brand: oklch(0.46 0.09 40);
  --brand-dark: oklch(0.36 0.08 40);
  --accent: oklch(0.74 0.13 75);
  --cream: oklch(0.94 0.02 70);
  --card: oklch(0.99 0.005 70);
  --border: oklch(0.88 0.02 60);
  --border-soft: oklch(0.92 0.015 65);
  --dark: oklch(0.24 0.02 40);
  --dark-card: oklch(0.28 0.02 40);
  --dark-border: oklch(0.35 0.02 40);
  --white: oklch(0.99 0.005 70);
  --danger: oklch(0.5 0.14 25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Zilla Slab Fallback', Georgia, 'Times New Roman', serif;
  font-family: Verdana, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

body, input, textarea, select, button {
  font-family: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; border-radius: 8px; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: Georgia, serif; font-weight: 700; font-size: 20px; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: Georgia, serif; font-weight: 700; font-size: 19px; color: var(--ink); }
.brand-sub { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em; }

.desktop-nav { display: none; gap: 16px; align-items: center; }
.desktop-nav a { font-size: 14px; font-weight: 500; padding: 6px 1px; border-bottom: 2px solid transparent; white-space: nowrap; }
.desktop-nav a:hover { color: var(--brand); }
.desktop-nav a.active { color: var(--brand); border-bottom-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link { display: none; font-family: Georgia, serif; font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; }
.btn-book {
  background: var(--brand); color: var(--white); padding: 10px 18px; border-radius: 6px;
  font-weight: 600; font-size: 14px; white-space: nowrap; border: none; cursor: pointer; display: inline-block;
}
.btn-book:hover { background: var(--brand-dark); }
.burger {
  display: flex; background: none; border: 1px solid var(--border); border-radius: 6px;
  width: 40px; height: 40px; align-items: center; justify-content: center; cursor: pointer;
}
.burger-bars { display: flex; flex-direction: column; gap: 4px; }
.burger-bars span { width: 18px; height: 2px; background: var(--ink); display: block; }

.mobile-nav { display: none; flex-direction: column; padding: 6px 24px 18px; gap: 2px; border-top: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--border-soft); }
.mobile-nav a.active { color: var(--brand); }
.mobile-phone { padding: 12px 4px; font-family: Georgia, serif; font-weight: 600; color: var(--brand); }

@media (min-width: 1080px) {
  .desktop-nav { display: flex !important; }
  .phone-link { display: inline !important; }
  .burger { display: none !important; }
}

/* Hero */
.hero {
  max-width: 1180px; margin: 0 auto; padding: 56px 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block; background: var(--cream); color: var(--brand);
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px;
}
.hero h1 { font-size: 44px; line-height: 1.15; }
.hero p.lead { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 22px 0 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--brand); color: var(--white); padding: 14px 26px; border-radius: 6px;
  font-weight: 600; font-size: 15px; border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
  border: 1px solid var(--ink); color: var(--ink); padding: 14px 26px; border-radius: 6px;
  font-weight: 600; font-size: 15px; display: inline-block; background: none; cursor: pointer;
}
.btn-secondary:hover { background: var(--cream); }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat-num { font-family: Georgia, serif; font-size: 26px; font-weight: 700; color: var(--brand); }
.hero-stat-label { font-size: 13px; color: var(--ink-soft); }
.hero-photo { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Photo frame used for placeholder-style images */
.photo-frame { border-radius: 12px; overflow: hidden; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Sections */
.section { max-width: 1180px; margin: 0 auto; padding: 20px 24px 60px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.section-title { font-size: 30px; }
.link-strong { color: var(--brand); font-weight: 600; font-size: 14px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 26px; display: flex; flex-direction: column; gap: 10px; color: var(--ink);
}
.service-card:hover { border-color: var(--accent); }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.service-title { font-family: Georgia, serif; font-weight: 600; font-size: 18px; }
.service-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.section-cream { background: var(--cream); padding: 60px 24px; }
.section-cream-inner { max-width: 1180px; margin: 0 auto; }
.section-heading-center { font-size: 30px; margin-bottom: 32px; text-align: center; }

.adv-item { text-align: center; }
.adv-icon { font-size: 30px; margin-bottom: 10px; }
.adv-title { font-family: Georgia, serif; font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.adv-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: Georgia, serif;
  font-weight: 700; margin: 0 auto 14px;
}
.step-title { font-weight: 600; margin-bottom: 6px; font-family: Georgia, serif; font-size: 17px; }
.step-desc { font-size: 14px; color: var(--ink-soft); }

.section-dark { background: var(--dark); color: var(--cream); padding: 56px 24px; }
.section-dark-inner { max-width: 1180px; margin: 0 auto; }
.section-dark h2 { font-size: 26px; margin-bottom: 30px; color: var(--white); }
.review-card { background: var(--dark-card); border-radius: 10px; padding: 22px; }
.review-stars { color: var(--accent); margin-bottom: 10px; font-size: 15px; }
.review-text { font-size: 14.5px; line-height: 1.6; color: oklch(0.9 0.02 65); margin-bottom: 14px; }
.review-name { font-size: 13px; font-weight: 600; color: var(--white); }

.cta-section { max-width: 1180px; margin: 20px auto 0; padding: 60px 24px; text-align: center; }
.cta-section h2 { font-size: 28px; margin-bottom: 14px; }
.cta-section p { font-size: 16px; color: var(--ink-soft); margin-bottom: 26px; }

/* Footer */
.site-footer { background: var(--dark); color: var(--cream); margin-top: 60px; }
.footer-grid {
  max-width: 1180px; margin: 0 auto; padding: 56px 24px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-mark {
  width: 38px; height: 38px; border-radius: 8px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: var(--dark);
  font-family: Georgia, serif; font-weight: 700; font-size: 18px;
}
.footer-name { font-family: Georgia, serif; font-weight: 700; font-size: 18px; }
.footer-desc { font-size: 14px; line-height: 1.6; color: oklch(0.82 0.02 65); max-width: 280px; }
.footer-heading { font-family: Georgia, serif; font-weight: 600; font-size: 15px; margin-bottom: 14px; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: oklch(0.82 0.02 65); }
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: oklch(0.82 0.02 65); }
.footer-contact a { color: oklch(0.82 0.02 65); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding: 20px 24px; border-top: 1px solid var(--dark-border);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: 13px; color: oklch(0.68 0.02 60);
}

/* Page heading blocks */
.page-head { max-width: 1180px; margin: 0 auto; padding: 56px 24px 20px; }
.page-head-narrow { max-width: 900px; margin: 0 auto; padding: 56px 24px 20px; }
.page-head-article { max-width: 760px; margin: 0 auto; padding: 56px 24px 20px; }
.page-head h1 { font-size: 38px; margin-bottom: 14px; }
.page-head p { font-size: 16px; color: var(--ink-soft); max-width: 640px; line-height: 1.6; }

/* Services page */
.svc-list { max-width: 1180px; margin: 0 auto; padding: 20px 24px 70px; display: flex; flex-direction: column; gap: 56px; }
.svc-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 36px; align-items: center; }
.svc-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
.svc-row.reverse .svc-photo { order: 2; }
.svc-photo { aspect-ratio: 5/4; border-radius: 12px; overflow: hidden; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-emoji { font-size: 32px; margin-bottom: 6px; }
.svc-row h2 { font-size: 26px; margin-bottom: 10px; }
.svc-row p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 14px; }
.svc-row ul { margin: 0; padding-left: 18px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; }

/* Pricing */
.price-groups { max-width: 900px; margin: 0 auto; padding: 0 24px 60px; display: flex; flex-direction: column; gap: 40px; }
.price-group h2 { font-size: 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.price-table-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
table.price-table { width: 100%; border-collapse: collapse; }
table.price-table td { padding: 12px 8px; font-size: 14.5px; border-bottom: 1px solid var(--border-soft); }
table.price-table tr:last-child td { border-bottom: none; }
table.price-table td.name { color: var(--ink); }
table.price-table td.price { text-align: right; font-weight: 600; color: var(--brand); white-space: nowrap; }
.price-note { font-size: 13.5px; color: var(--ink-soft); text-align: center; }

/* Tips / articles */
.article-list { max-width: 1180px; margin: 0 auto; padding: 20px 24px 70px; display: flex; flex-direction: column; gap: 48px; }
.article-row { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; border-top: 1px solid var(--border); padding-top: 36px; }
.article-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-tag { font-size: 13px; color: var(--brand); font-weight: 600; margin-bottom: 8px; }
.article-row h2 { font-size: 22px; margin-bottom: 10px; }
.article-row p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 12px; }
.article-row ul { margin: 0; padding-left: 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

/* About page */
.story { max-width: 1180px; margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.story p { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 14px; }
.story-photo { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.value-card { background: var(--card); border-radius: 12px; padding: 24px; text-align: center; }
.value-icon { font-size: 28px; margin-bottom: 10px; }
.value-title { font-weight: 600; font-family: Georgia, serif; font-size: 16px; margin-bottom: 6px; }
.value-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.timeline { display: flex; flex-direction: column; gap: 22px; max-width: 640px; margin: 0 auto; }
.timeline-item { display: flex; gap: 20px; }
.timeline-year { font-family: Georgia, serif; font-weight: 700; font-size: 18px; color: var(--brand); width: 60px; flex-shrink: 0; }
.timeline-body { border-left: 2px solid var(--border); padding-left: 20px; padding-bottom: 6px; }
.timeline-title { font-weight: 600; font-family: Georgia, serif; font-size: 16px; margin-bottom: 4px; }
.timeline-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

.team-member { text-align: center; }
.team-photo {
  aspect-ratio: 1; border-radius: 50%; max-width: 160px; margin: 0 auto 14px; overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 600; font-family: Georgia, serif; font-size: 16px; }
.team-role { font-size: 13.5px; color: var(--brand); }

/* Contact */
.contact-grid { max-width: 1180px; margin: 0 auto; padding: 20px 24px 70px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-row { display: flex; gap: 12px; align-items: flex-start; }
.contact-row-title { font-weight: 600; }
.contact-row-value { font-size: 14px; color: var(--ink-soft); }
.contact-row a.contact-row-value { color: var(--brand); }
.contact-map-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; position: relative; }
.contact-map-photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-map-caption {
  position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff; padding: 30px 16px 12px; font-size: 13px; text-align: center;
}
.contact-map-caption a { color: var(--accent); font-weight: 600; }
.contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.contact-form-card h2 { font-size: 20px; margin-bottom: 18px; }
.form-success { background: var(--cream); border-radius: 8px; padding: 18px; font-size: 14.5px; color: var(--ink); }
.form-error { background: oklch(0.94 0.08 30); border-radius: 8px; padding: 18px; font-size: 14.5px; color: oklch(0.3 0.1 25); margin-bottom: 16px; }

form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-row > * { flex: 1; min-width: 180px; }
input, textarea, select {
  font-family: inherit; font-size: 14.5px; padding: 11px 12px; border-radius: 6px;
  border: 1px solid oklch(0.85 0.02 60); width: 100%; box-sizing: border-box;
  background: var(--card); color: var(--ink);
}
label.checkbox-row { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); }
label.checkbox-row input { width: auto; margin-top: 2px; }
label.checkbox-row a { color: var(--brand); }
.btn-submit {
  background: var(--brand); color: var(--white); border: none; padding: 13px 24px; border-radius: 6px;
  font-weight: 600; font-size: 15px; cursor: pointer; align-self: flex-start;
}
.btn-submit:hover { background: var(--brand-dark); }

/* Shop */
.shop-layout { max-width: 1180px; margin: 0 auto; padding: 24px 24px 80px; display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; }
.product-photo { aspect-ratio: 1; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-weight: 600; font-family: Georgia, serif; font-size: 15.5px; }
.product-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.4; flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.product-price { font-weight: 700; font-family: Georgia, serif; font-size: 17px; color: var(--brand); }
.btn-add {
  background: var(--dark); color: var(--white); border: none; padding: 9px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.btn-add:hover { background: var(--brand); }

.cart-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
.cart-card h2 { font-size: 19px; }
.cart-empty { font-size: 14px; color: var(--ink-soft); }
.cart-items { display: flex; flex-direction: column; gap: 12px; max-height: 340px; overflow: auto; }
.cart-item { display: flex; justify-content: space-between; align-items: center; gap: 8px; border-bottom: 1px solid var(--border-soft); padding-bottom: 10px; }
.cart-item-name { font-size: 13.5px; font-weight: 600; }
.cart-item-meta { font-size: 12.5px; color: var(--ink-soft); }
.qty-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 24px; height: 24px; border-radius: 5px; border: 1px solid oklch(0.85 0.02 60); background: var(--bg); cursor: pointer; }
.qty-val { font-size: 13px; min-width: 16px; text-align: center; }
.remove-btn { margin-left: 4px; color: var(--danger); background: none; border: none; cursor: pointer; font-size: 13px; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; font-family: Georgia, serif; font-size: 17px; padding-top: 6px; }
.cart-total .amount { color: var(--brand); }
.cart-hint { font-size: 11.5px; color: var(--ink-soft); line-height: 1.5; }
.cart-hint a { color: var(--brand); }

/* Two column info grid (Doprava a platba) */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.info-card .info-icon { font-size: 26px; margin-bottom: 8px; }
.info-card h2 { font-size: 18px; margin-bottom: 8px; }
.info-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }

/* Legal pages */
.legal-body { display: flex; flex-direction: column; gap: 26px; font-size: 14.5px; line-height: 1.75; color: var(--ink-soft2); padding-bottom: 80px; }
.legal-body h2 { font-size: 18px; margin-bottom: 8px; color: var(--ink); }
.legal-body a { color: var(--brand); }
.legal-date { font-size: 13px; color: var(--ink-soft); margin-bottom: 32px; }
table.cookie-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.cookie-table td, table.cookie-table th { padding: 10px 8px; text-align: left; border-bottom: 1px solid var(--border-soft); }
table.cookie-table th { background: var(--cream); }
.table-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 26px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 18px 4px;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--ink); font-family: Georgia, serif;
}
.faq-sign { color: var(--brand); font-size: 20px; }
.faq-answer { padding: 0 4px 20px; font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); display: none; }
.faq-item.open .faq-answer { display: block; }

/* Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--dark); color: var(--cream); padding: 18px 24px;
  display: flex; gap: 20px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 13.5px; max-width: 640px; }
.cookie-banner a { color: var(--accent); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--brand); color: var(--white); border: none; padding: 10px 18px; border-radius: 6px; font-weight: 600; font-size: 13.5px; cursor: pointer; }
.cookie-decline { background: none; border: 1px solid oklch(0.5 0.02 60); color: var(--cream); padding: 10px 18px; border-radius: 6px; font-weight: 600; font-size: 13.5px; cursor: pointer; }
.cookie-banner.hidden { display: none; }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr !important; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr !important; }
  .svc-row, .svc-row.reverse { grid-template-columns: 1fr !important; }
  .svc-row.reverse .svc-photo { order: 0; }
  .story, .article-row, .contact-grid, .info-grid { grid-template-columns: 1fr !important; }
}
