/* ========= RESET ========= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ========= VARIABLES ========= */
:root {
  --navy: #1a2b4a;
  --navy-mid: #243656;
  --navy-light: #2e4470;
  --green: #2d6a4f;
  --green-light: #52a87b;
  --green-pale: #e8f5ee;
  --cream: #f8f7f4;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e8ef;
  --text: #1a2b4a;
  --red: #e63946;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========= NAV ========= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 4vw;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--navy); line-height: 1.2; flex-shrink: 0;
}
.nav-logo span { color: var(--green); }

.nav-logo-link { text-decoration: none; transition: transform .2s ease, opacity .2s ease; }
.nav-logo-link:hover { transform: translateY(-1px); opacity: .92; }
.nav-logo-small { font-size: 0.7rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links a.is-active,
.nav-mobile-menu a.is-active { color: var(--navy); }
.nav-links a.is-active { position: relative; }
.nav-links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.45rem;
  height: 2px; background: var(--green);
}
body.mobile-menu-open { overflow: hidden; }

.nav-links {
  display: flex; gap: 1.4rem;
  list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gray); text-decoration: none; transition: 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 0.5rem 1.25rem; border-radius: 4px;
  font-size: 0.78rem !important; font-weight: 500 !important; transition: 0.2s !important;
}
.nav-cta:hover { background: var(--green) !important; }

/* Hamburger mobile */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: 0.3s; }
.nav-mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 6vw; z-index: 99;
  flex-direction: column; gap: 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 0.9rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gray); text-decoration: none;
}
.nav-mobile-menu .nav-cta-mob {
  display: inline-block; background: var(--navy);
  color: white !important; padding: 0.75rem 1.5rem;
  border-radius: 4px; text-align: center;
}

/* ========= HERO ========= */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; padding-top: 68px;
}
.hero-left {
  background: var(--navy); display: flex; flex-direction: column;
  justify-content: center; padding: 8vw 6vw 8vw 8vw;
  position: relative; overflow: hidden;
}
.hero-left::before, .hero-left::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-left::before { top: -20%; right: -10%; width: 60%; padding-bottom: 60%; }
.hero-left::after { bottom: -15%; left: -5%; width: 40%; padding-bottom: 40%; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 2rem;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--green-light); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white); font-weight: 300; margin-bottom: .4rem;
}
.hero-title strong { font-weight: 500; display: block; }
.hero-subtitle {
  color: rgba(255,255,255,0.5); font-size: 1.1rem;
  letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2.5rem;
}
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 0.9rem;
  line-height: 1.8; max-width: 400px; margin-bottom: 3rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block; background: var(--green); color: #fff;
  padding: .85rem 2rem; border-radius: 4px; font-size: .85rem;
  text-decoration: none; font-weight: 500; transition: .2s;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75); padding: .85rem 2rem;
  border-radius: 4px; text-decoration: none; transition: .2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

.hero-right {
  background: var(--cream); display: flex;
  align-items: center; justify-content: center; padding: 4rem;
}
.hero-photo-wrap { max-width: 460px; width: 100%; position: relative; }
.hero-main-img { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(26,43,74,0.15); }

.hero-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: white; border: 1px solid var(--gray-light);
  border-radius: 6px; padding: 1rem 1.25rem;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(26,43,74,0.1);
}
.badge-num { font-family: var(--font-display); font-size: 2rem; color: var(--navy); }
.badge-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-badge2 {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--green); padding: .85rem 1.1rem;
  border-radius: 6px; box-shadow: 0 8px 24px rgba(45,106,79,0.3);
}
.badge2-text { color: rgba(255,255,255,.9); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

/* ========= SECTION SHARED ========= */
section { padding: 7rem 8vw; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: 0.14em;
  color: var(--green); text-transform: uppercase; margin-bottom: 1.25rem;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--green); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--green); }

.divider { width: 48px; height: 2px; background: var(--green); margin-bottom: 2.5rem; }

/* ========= KAFELKI GŁÓWNA ========= */
.service-card {
  background: white; padding: 2.5rem 2rem;
  border-radius: 8px; border: 1px solid var(--gray-light);
  transition: .25s; position: relative;
  text-decoration: none; display: block; color: var(--text);
}
.service-card:hover {
  background: var(--navy); border-color: var(--navy);
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,43,74,0.18);
}
.service-card:hover .service-icon { color: var(--green-light); }
.service-card:hover .service-name { color: white; }
.service-card:hover .service-desc { color: rgba(255,255,255,.55); }

.service-icon { font-size: 2rem; margin-bottom: 1.25rem; color: var(--green); display: block; }
.service-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: .75rem; display: block; }
.service-desc { font-size: .84rem; color: var(--gray); line-height: 1.75; }

/* diagnostyka grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--gray-light);
  border-radius: 6px; overflow: hidden;
}
.services-grid .service-card { border: none; border-radius: 0; }
.service-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: var(--font-display); font-size: 3.5rem;
  color: var(--gray-light); opacity: .4; user-select: none;
}

/* ========= SYMPTOMS ========= */
.faq-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.faq-item {
  background: white; padding: 2.5rem; border-radius: 8px;
  border-left: 4px solid var(--green); box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.faq-question { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--navy); margin-bottom: 1.25rem; }
.faq-answer { color: var(--gray); font-size: .95rem; line-height: 1.8; }

.symptoms-container { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; max-width: 1000px; margin: auto; }
.symptom-pill {
  background: white; border: 1.5px solid var(--gray-light);
  padding: 1rem 2rem; border-radius: 50px;
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; font-weight: 500; color: var(--navy);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02); transition: .35s; cursor: default;
}
.symptom-pill:hover { background: var(--red); border-color: var(--red); color: white; transform: scale(1.08); }

/* ========= SCHORZENIA ========= */
.disease-list-wrap { max-width: 900px; }
.disease-row {
  display: flex; gap: 2rem; padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-light); transition: .3s;
}
.disease-row:hover { padding-left: 1.5rem; background: var(--cream); border-color: var(--green-light); }
.disease-num { font-family: var(--font-display); font-size: 1.8rem; color: var(--green); width: 40px; flex-shrink: 0; }
.disease-content .disease-title { font-size: 1.1rem; font-weight: 500; color: var(--navy); margin-bottom: .3rem; }
.disease-sub { color: var(--gray); font-size: .85rem; line-height: 1.5; }

/* ========= O MNIE ========= */
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: center; }
.about-img-col { width: 100%; }
.about-img { width: 100%; border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { color: var(--gray); font-size: 1rem; line-height: 1.9; margin-bottom: 1.25rem; }

/* ========= OPINIE – MARQUEE ========= */
.marquee-wrapper { width: 100vw; margin-left: calc(-50vw + 50%); overflow: hidden; padding: 1rem 0; }
.marquee-track {
  display: flex; gap: 2rem; width: max-content;
  animation: scrollMarquee 90s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scrollMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.review-card {
  background: var(--navy-mid); width: 360px; flex-shrink: 0;
  padding: 2.5rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.05); transition: .3s;
}
.review-card:hover { background: var(--navy-light); transform: translateY(-5px); }
.review-stars { display: flex; gap: 4px; margin-bottom: .75rem; }
.star { color: #f4a226; font-size: 1rem; }
.review-text { font-size: .95rem; font-style: italic; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.review-author { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1rem; display: flex; justify-content: space-between; align-items: center; }
.author-name { font-size: .85rem; font-weight: 500; color: white; }
.author-date { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ========= KONTAKT ========= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-label { font-size: .72rem; letter-spacing: .12em; color: var(--green); text-transform: uppercase; margin-bottom: .5rem; }
.contact-value { font-size: 1.05rem; font-weight: 500; color: var(--navy); line-height: 1.6; }
.contact-value a { color: var(--navy); text-decoration: none; }
.contact-value a:hover { color: var(--green); }

.timetable-card { background: white; padding: 2.5rem 2rem; border-radius: 8px; border: 1px solid var(--gray-light); }
.tt-header { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); text-align: center; margin-bottom: 1.5rem; }
.tt-row { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; border-bottom: 1px solid var(--gray-light); }
.tt-row:last-child { border-bottom: none; }
.tt-day { font-size: .9rem; color: var(--gray); }
.tt-hours { font-size: .9rem; font-weight: 600; background: var(--green-pale); color: var(--green); padding: .3rem .8rem; border-radius: 4px; }

/* ========= MAPA (klik → Google Maps) ========= */
.map-col { border-radius: 8px; overflow: hidden; min-height: 320px; position: relative; }

.map-direct-link {
  display: block;
  position: relative;
  width: 100%; min-height: 320px; height: 100%;
  border-radius: 8px; overflow: hidden;
  text-decoration: none;
  background: var(--cream);
}

.map-bg-img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: cover; display: block;
  filter: grayscale(20%);
  transition: filter .35s;
}
.map-direct-link:hover .map-bg-img { filter: grayscale(0%); }

.map-fallback {
  display: none;
  width: 100%; min-height: 320px;
  background: linear-gradient(135deg, #e8f5ee 0%, #f8f7f4 100%);
  position: relative;
}
.map-fallback-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}

.map-overlay-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(26,43,74,0.88);
  backdrop-filter: blur(6px);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background .3s;
}
.map-direct-link:hover .map-overlay-content { background: rgba(45,106,79,0.92); }

.map-pin-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: white; flex-shrink: 0;
}

.map-cta-title {
  font-size: .95rem; font-weight: 600; color: white;
}
.map-cta-desc {
  font-size: .75rem; color: rgba(255,255,255,.65); margin-top: .15rem;
}

/* ========= FAQ PAGE ========= */
.faq-page-list { max-width: 800px; display: flex; flex-direction: column; gap: 0; }
.faq-accordion-item { border-bottom: 1px solid var(--gray-light); }
.faq-accordion-btn {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.75rem 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--navy); transition: color .2s;
}
.faq-accordion-btn:hover { color: var(--green); }
.faq-accordion-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: .25s; font-size: 1.2rem; color: var(--green);
}
.faq-accordion-btn.open .faq-accordion-icon { background: var(--green); border-color: var(--green); color: white; transform: rotate(45deg); }
.faq-accordion-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-accordion-body.open { max-height: 600px; }
.faq-accordion-body p { color: var(--gray); font-size: .95rem; line-height: 1.8; padding-bottom: 1.75rem; }

/* ========= FOOTER ========= */
footer {
  background: var(--navy); padding: 3.5rem 8vw; color: white;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: white; }
.footer-brand span { color: var(--green-light); }
.footer-links { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .78rem; }
.footer-links a:hover { color: white; }
.footer-copy { color: rgba(255,255,255,.35); font-size: .78rem; }

/* ========= BREADCRUMBS ========= */
.breadcrumbs { display: flex; gap: .5rem; align-items: center; font-size: .78rem; color: var(--gray); padding: 5rem 8vw 0; }
.breadcrumbs a { color: var(--green); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: var(--gray-light); }

/* ========= MOBILE ========= */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .map-col { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .site-nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 6rem 6vw 4rem; }
  section { padding: 4rem 6vw; }
  footer { text-align: center; flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-block { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-col { grid-column: auto; }
  .breadcrumbs { padding: 4rem 6vw 0; }
}

/* ========= ANIMATIONS ========= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag { animation: fadeUp .7s ease both; }
.hero-title { animation: fadeUp .7s .1s ease both; }
.hero-subtitle { animation: fadeUp .7s .2s ease both; }
.hero-desc { animation: fadeUp .7s .3s ease both; }
.hero-btns { animation: fadeUp .7s .4s ease both; }


.home-quick-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
}
.home-quick-grid .service-card {
  box-shadow: 0 10px 28px rgba(26,43,74,0.06);
  border-color: rgba(26,43,74,0.08);
}
.home-quick-grid .service-icon {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-pale);
}
.home-quick-grid .service-card:hover .service-icon {
  background: rgba(255,255,255,0.12);
}

.disease-list-wrap {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.disease-row {
  display: flex; flex-direction: column; text-align: center; align-items: center;
  gap: .85rem; padding: 2rem 1.5rem; background: white;
  border: 1px solid var(--gray-light); border-radius: 10px; border-bottom: 1px solid var(--gray-light);
  box-shadow: 0 8px 22px rgba(26,43,74,0.05);
}
.disease-row:hover {
  padding-left: 1.5rem; transform: translateY(-4px);
  background: var(--cream); border-color: var(--green-light);
}
.disease-num { width: auto; font-size: 2rem; }

.page-step-nav {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding-top: 2rem;
}
.page-step-nav__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
}
.page-step-card {
  display: flex; flex-direction: column; gap: .75rem;
  text-decoration: none; padding: 1.5rem; border-radius: 10px;
  background: white; border: 1px solid var(--gray-light); color: var(--navy);
  box-shadow: 0 10px 25px rgba(26,43,74,0.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.page-step-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 28px rgba(26,43,74,0.10);
  border-color: var(--green-light);
}
.page-step-card__eyebrow {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}
.page-step-card__title {
  font-family: var(--font-display); font-size: 1.55rem; line-height: 1.1;
}
.page-step-card__desc { color: var(--gray); line-height: 1.7; font-size: .92rem; }

.booking-teaser {
  background: white; padding-top: 1rem; padding-bottom: 1rem;
}
.booking-teaser__inner {
  max-width: 1100px; margin: 0 auto; display: grid;
  grid-template-columns: 1.2fr .9fr; gap: 2rem; align-items: start;
}
.booking-teaser__text { color: var(--gray); line-height: 1.85; max-width: 760px; }
.booking-teaser__box {
  background: var(--cream); border: 1px solid var(--gray-light);
  border-radius: 10px; padding: 1.5rem 1.75rem;
}
.booking-teaser__box strong { display: block; margin-bottom: .9rem; color: var(--navy); }
.booking-teaser__box ul { margin-left: 1.1rem; color: var(--gray); line-height: 1.9; }

.map-card-clean {
  min-height: 320px; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem; text-decoration: none; color: var(--navy);
  background:
    radial-gradient(circle at top right, rgba(82,168,123,.14), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border: 1px solid var(--gray-light); border-radius: 10px; padding: 2rem;
  box-shadow: 0 10px 25px rgba(26,43,74,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.map-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(26,43,74,0.10);
  border-color: var(--green-light);
}
.map-card-clean__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
}
.map-card-clean__eyebrow {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}
.map-card-clean__title {
  font-family: var(--font-display); font-size: 2rem; line-height: 1.1;
}
.map-card-clean__desc { color: var(--gray); line-height: 1.8; max-width: 32ch; }
.map-route-btn {
  display: inline-flex; align-self: flex-start;
  padding: .85rem 1.2rem; border-radius: 6px;
  background: var(--navy); color: white; font-size: .9rem;
}

.footer-brand-link { color: inherit; text-decoration: none; }
.footer-brand-link:hover { opacity: .92; }

@media (max-width: 900px) {
  .home-quick-grid { grid-template-columns: 1fr !important; }
  .page-step-nav__inner { grid-template-columns: 1fr; }
  .booking-teaser__inner { grid-template-columns: 1fr; }
}
