/* ============================== */
/*         CSS RESET/NORMALIZE     */
/* ============================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #F6F4E6;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #204663;
  background: #F6F4E6;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

/* ============================== */
/*          BRAND TYPOGRAPHY      */
/* ============================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #204663;
  --color-secondary: #B58338;
  --color-accent: #F6F4E6;
  --color-card-bg: #fff;
  --color-muted: #e3e6ea;
  --color-text: #204663;
  --color-contrast: #212121;
  --color-shadow: rgba(32, 70, 99, 0.09);
  --radius-base: 14px;
  --radius-card: 22px;
  --shadow-card: 0 2px 24px var(--color-shadow);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.12;
}
h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
h4 {
  font-size: 1rem;
  font-weight: 700;
}
p, li, blockquote {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 14px;
}
blockquote {
  border-left: 4px solid var(--color-secondary);
  padding-left: 18px;
  margin: 0 0 18px 0;
  font-style: italic;
  color: var(--color-primary);
}
strong {
  font-weight: bold;
  color: var(--color-contrast);
}
em {
  font-style: italic;
}

/* Spacing and Structure */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* ============================= */
/*        HEADER & MAIN NAV      */
/* ============================= */
header {
  background: var(--color-card-bg);
  box-shadow: 0 2px 20px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 0 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
  text-transform: uppercase;
}
.main-nav a.cta-primary {
  background: var(--color-secondary);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 1px 8px var(--color-shadow);
  border-radius: var(--radius-base);
  padding: 10px 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s, transform 0.2s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #8e5b17;
  transform: translateY(-2px) scale(1.03);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.main-nav img {
  height: 38px;
  margin-right: 12px;
  vertical-align: middle;
}

/* ========================================= */
/*              MOBILE NAVIGATION           */
/* ========================================= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 200;
  transition: background 0.18s, transform 0.14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: #8e5b17;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--color-card-bg);
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.52,.02,.34,1);
  box-shadow: -8px 0px 32px var(--color-shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 0 0;
  background: var(--color-muted);
  color: var(--color-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.9rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px var(--color-shadow);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 34px;
  margin-left: 40px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 0;
  margin-bottom: 6px;
  border-radius: 8px;
  min-width: 170px;
  transition: color 0.18s, background 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
@media (max-width: 1050px) {
  .main-nav a:not(:first-child) {
    font-size: 0.99rem;
    padding: 4px 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================= */
/*           HERO SECTION        */
/* ============================= */
.hero {
  background: linear-gradient(92deg,var(--color-accent) 78%, #ece2ca 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  border-bottom: 5px solid var(--color-secondary);
}
.hero h1 {
  color: var(--color-primary);
  margin-bottom: 14px;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 28px;
  max-width: 450px;
}
.hero .cta-primary {
  margin-top: 6px;
}
@media (min-width: 700px) {
  .hero {
    min-height: 380px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
}

/* ================================ */
/*      CTA BUTTON PRIMARY/SECONDARY */
/* ================================ */
.cta-primary {
  background: var(--color-secondary);
  color: #fff !important;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border-radius: var(--radius-base);
  padding: 12px 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: background 0.18s, color 0.18s, transform 0.16s;
  border: 2px solid transparent;
  outline: none;
  display: inline-block;
  cursor: pointer;
  margin-top: 10px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #8e5b17;
  color: #fff;
  transform: scale(1.045) translateY(-2px);
  border: 2px solid var(--color-primary);
}

/* ============================= */
/*        FEATURE CARDS          */
/* ============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 4px 21px var(--color-shadow);
  padding: 30px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 220px;
  max-width: 290px;
  flex: 1 1 225px;
  transition: box-shadow 0.22s, transform 0.15s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 8px 36px 0 var(--color-shadow);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  height: 52px;
  margin-bottom: 14px;
}
.feature-grid h3 {
  color: var(--color-secondary);
  margin-bottom: 8px;
  font-size: 1.19rem;
  letter-spacing: 0.03em;
}
.feature-grid p {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 0;
}

/* Tour Overview Cards */
.tour-overview-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tour-overview-cards > div {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 28px 20px 18px 20px;
  min-width: 190px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.14s;
  position: relative;
}
.tour-overview-cards > div:hover {
  box-shadow: 0 7px 30px var(--color-shadow);
  transform: translateY(-2px) scale(1.03);
}
.tour-overview-cards h3 {
  color: var(--color-primary);
  margin-bottom: 0.6em;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}
.tour-overview-cards p {
  font-size: 1rem;
  color: var(--color-contrast);
  margin-bottom: 0;
}

/* Blog Teaser Grid */
.blog-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-teaser-grid article {
  background: var(--color-card-bg);
  box-shadow: 0 3px 15px var(--color-shadow);
  border-radius: var(--radius-card);
  padding: 32px 26px 22px 26px;
  flex: 1 1 270px;
  min-width: 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.16s, transform 0.11s;
}
.blog-teaser-grid article:hover {
  box-shadow: 0 7px 30px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
.blog-teaser-grid h3 {
  color: var(--color-secondary);
}
.blog-teaser-grid a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--color-secondary);
  transition: color 0.2s;
  display: inline-block;
  margin-top: 6px;
  padding-bottom: 2px;
}
.blog-teaser-grid a:hover {
  color: var(--color-secondary);
}

/* ============================= */
/*       TESTIMONIALS CARDS      */
/* ============================= */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 32px 18px 28px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 3px 18px var(--color-shadow);
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  z-index: 10;
  border-left: 8px solid var(--color-secondary);
}
.testimonial-card blockquote {
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 1.11rem;
  border-left: none;
  padding-left: 0;
}
.testimonial-card p {
  color: #333;
  font-size: 0.98rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
}


/* ============================= */
/*        FAQ ACCORDION          */
/* ============================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion h3 {
  cursor: pointer;
  background: var(--color-muted);
  color: var(--color-primary);
  padding: 14px 22px;
  border-radius: 14px 14px 0 0;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.15s;
  margin-bottom: 0;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  background: var(--color-secondary);
  color: #fff;
}
.faq-accordion div {
  background: #fff;
  border-radius: 0 0 14px 14px;
  padding: 14px 22px 14px 30px;
  color: var(--color-text);
  font-size: 0.97rem;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-muted);
  box-shadow: 0 1px 12px var(--color-shadow);
}

/* ============================== */
/* TABLE PRICING                  */
/* ============================== */
table, th, td {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: var(--color-primary);
}
table {
  width: 100%;
  border-radius: var(--radius-base);
  background: #fff;
  box-shadow: 0 2px 15px var(--color-shadow);
  margin-bottom: 22px;
  margin-top: 8px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
th, td {
  padding: 15px 10px;
  text-align: left;
}
thead {
  background: var(--color-muted);
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-secondary);
}
tr:nth-child(even) td {
  background: #f8f9f9;
}

/* ============================== */
/*           FOOTER               */
/* ============================== */
footer {
  background: #fff;
  border-top: 5px solid var(--color-secondary);
  padding: 48px 0 28px 0;
  margin-top: 58px;
}
.footer-nav {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 7px;
  transition: background 0.15s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--color-primary);
  font-size: 0.96rem;
}
.footer-contact p {
  margin-bottom: 0;
}

/* ============================== */
/*      COOKIE CONSENT BANNER     */
/* ============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-card-bg);
  color: var(--color-primary);
  padding: 22px 16px 20px 16px;
  box-shadow: 0 -6px 24px var(--color-shadow);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: slideUpCookie 0.38s cubic-bezier(.62,.02,.42,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  border: none;
  outline: none;
  border-radius: 11px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  cursor: pointer;
  box-shadow: 0 1px 4px var(--color-shadow);
  margin: 0;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--color-accent);
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .reject {
  background: #e0e3e3;
  color: var(--color-primary);
}
.cookie-banner button:focus, .cookie-banner button:hover {
  box-shadow: 0 2px 12px var(--color-shadow);
  filter: brightness(0.97);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  bottom: 0;
  background: rgba(33,36,36,0.24);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeInModal 0.31s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -6px 42px var(--color-shadow);
  padding: 40px 19px 28px;
  min-width: 300px;
  width: 90vw;
  max-width: 390px;
  margin-bottom: 0;
  animation: slideModalUp 0.38s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@keyframes slideModalUp {
  from { transform: translateY(60px); }
  to { transform: translateY(0); }
}
.cookie-modal-content h2 {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 12px 0;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cookie-toggle-row label {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
}
.cookie-toggle-row input[type="checkbox"] {
  width: 32px;
  height: 18px;
  accent-color: var(--color-secondary);
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 7px;
  padding: 8px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  margin: 0;
}
.cookie-modal-actions .save {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-modal-actions .close {
  background: #edefef;
  color: var(--color-primary);
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  filter: brightness(0.95);
}

/* ============================== */
/*           RESPONSIVE           */
/* ============================== */
@media (max-width: 1024px) {
  .feature-grid, .tour-overview-cards, .blog-teaser-grid, .testimonial-slider, .testimonial-list {
    gap: 14px;
  }
  .feature-grid > div, .tour-overview-cards > div, .blog-teaser-grid article, .testimonial-card {
    min-width: 180px;
    max-width: unset;
    padding: 24px 10px 18px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .tour-overview-cards, .blog-teaser-grid, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .tour-overview-cards > div, .blog-teaser-grid article, .testimonial-card {
    min-width: 80%;
    margin-bottom: 17px;
    box-sizing: border-box;
  }
  .section {
    padding: 24px 7px;
  }
  .content-wrapper {
    padding: 0;
    align-items: stretch;
  }
  .hero {
    min-height: 220px;
  }
  .hero h1 {
    font-size: 1.46rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 20px 12px 14px 14px;
  }
  .footer-nav {
    gap: 17px;
    font-size: 0.96rem;
  }
  .footer-contact {
    font-size: 0.93rem;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .feature-grid > div, .tour-overview-cards > div, .blog-teaser-grid article, .testimonial-card {
    padding: 14px 6px 12px 8px;
    font-size: 0.97rem;
  }
  .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}

/*.content-grid pattern*/
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px var(--color-shadow);
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 34px var(--color-shadow);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
}

/* ============================== */
/*   GEOMETRIC STRUCTURED ELEMENTS*/
/* ============================== */
.section {
  background: linear-gradient(92deg,var(--color-accent) 80%, #ece2ca 100%);
  border-radius: 34px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 38px var(--color-shadow);
  position: relative;
}
.section:not(.hero):after {
  content: '';
  display: block;
  position: absolute;
  top: -28px; right: 28px;
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 7px 22px 3px 13px;
  box-shadow: 0 4px 22px var(--color-shadow);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}

/* ============================== */
/*   FORMS, INPUTS (Kontakt)      */
/* ============================== */
input, textarea {
  background: #fafbfc;
  border: 1.7px solid var(--color-muted);
  border-radius: 8px;
  padding: 9px 13px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--color-primary);
  outline: none;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  border-color: var(--color-secondary);
}

/* ============================== */
/*   ICONS IN CONTACT             */
/* ============================== */
.content-wrapper img[alt^="Icon"] {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  height: 22px;
}

/* ============================== */
/*   THANK YOU PAGE               */
/* ============================== */
.thank-you-section {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================== */
/*         MICRO-INTERACTIONS     */
/* ============================== */
a, button, .feature-grid > div, .blog-teaser-grid article, .card, .tour-overview-cards > div {
  transition: box-shadow 0.14s, color 0.12s, background 0.14s, transform 0.13s;
}

/* ============================== */
/*         UTILITIES              */
/* ============================== */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pb-0 { padding-bottom: 0; }
.pt-0 { padding-top: 0; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-12 { gap: 12px; }

/* ============================== */
/*  NO FLEXBOX, NO GRID OVERRIDE  */
/* ============================== */
/* Intentionally not using display: grid or columns */
