/* ===========================================================
   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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #f7f7ee;
  color: #21635b;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: #21635b;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #7dc89c;
  text-decoration: underline;
}

/* ===========================================================
   GLOBAL COLOR VARIABLES (with Fallback)
   =========================================================== */
:root {
  --primary: #21635b;
  --secondary: #7dc89c;
  --accent: #f7f7ee;
  --dark-text: #1b2c27;
  --light-text: #ffffff;
  --muted: #e8e6de;
  --border: #d8dcc8;
  --shadow: rgba(33, 99, 91, 0.07);
  --shadow2: rgba(33, 99, 91, 0.10);
}
/* Fallback in case CSS var not supported */
body { background: #f7f7ee; }

/* ===========================================================
   TYPOGRAPHY SCALE & STYLING (Elegant Classic)
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .5em;
}
h1 { font-size: 2.7rem; line-height: 1.15; margin-top: 0; }
h2 { font-size: 2rem; line-height: 1.19; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
}

p,
ul, ol, li {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 0.7em;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 3px 18px var(--shadow);
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 34px;
    padding: 22px 6px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 15px;
  }
}

/* ===========================================================
   HEADER, LOGO & NAVIGATION
   =========================================================== */
header {
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 9px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
nav a {
  padding: 7px 8px;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}
nav a.cta-btn {
  background: var(--primary);
  color: var(--light-text);
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 2px 10px var(--shadow2);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.05em;
}
nav a.cta-btn:hover, nav a.cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 18px var(--shadow2);
}
nav a:hover:not(.cta-btn), nav a:focus:not(.cta-btn) {
  background: var(--secondary);
  color: var(--light-text);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  nav {
    gap: 13px;
  }
}

@media (max-width: 900px) {
  nav {
    gap: 5px;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    font-size: 2.2rem;
    background: none;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--border);
    padding: 4px 12px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 1201;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: var(--secondary);
    color: var(--light-text);
  }
}

/* --- Mobile menu overlay --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: var(--accent);
  box-shadow: 0 4px 32px var(--shadow2);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.5,0.1,0.1,1);
  z-index: 1200;
  padding: 32px 24px 24px 24px;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 100%;
  padding: 2px 13px;
  margin-bottom: 34px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 1231;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--light-text);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 25px;
}
.mobile-nav a {
  padding: 13px 0 13px 0;
  font-size: 1.18rem;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--light-text);
  border-radius: 7px;
  padding-left: 10px;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===========================================================
   HERO & CTA BUTTONS
   =========================================================== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 48vh;
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  padding: 54px 0 44px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: .2em;
  font-weight: 700;
}
.hero p {
  margin-bottom: 1.3em;
  font-size: 1.15rem;
  color: var(--dark-text);
  max-width: 600px;
  text-align: center;
}
.hero .cta-btn,
.cta-btn {
  background: var(--primary);
  color: var(--light-text);
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  font-family: 'Georgia', serif;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 24px var(--shadow2);
  margin-top: 1em;
  cursor: pointer;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus, .hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 24px var(--shadow);
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .hero .cta-btn { font-size: 1rem; padding: 11px 24px;}
}

/*-- Generic CTA section --*/
.cta {
  background: var(--accent);
  border-radius: 15px;
  box-shadow: 0 2px 12px var(--shadow);
  margin-bottom: 60px;
  padding: 32px 18px;
}

/* ===========================================================
   FLEXBOX LAYOUT COMPONENTS
   (Mandatory layout classes, see instructions)
   =========================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px var(--shadow);
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  padding: 26px 25px 22px 25px;
  transition: box-shadow 0.15s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 4px 32px var(--shadow2);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 45px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  color: var(--dark-text);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive layout: switch to column on small screens */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 17px;
  }
}

/* --- Feature Grid (Index page "Warum SilberEcho Ernährung") --- */
.feature-grid,
.recipe-cards,
.plan-cards,
.blog-article-cards,
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 11px var(--shadow);
  padding: 22px 20px 18px 20px;
  min-width: 220px;
  flex: 1 1 200px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.feature:hover, .plan-card:hover, .blog-card:hover {
  box-shadow: 0 4px 20px var(--shadow2);
  transform: translateY(-2px) scale(1.012);
}

@media (max-width:700px) {
  .feature-grid, .recipe-cards, .plan-cards, .blog-article-cards, .team-bios { flex-direction: column; gap: 15px; }
}

.recipe-card,
.plan-card,
.blog-card,
.team-member {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 20px 18px 18px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.14s;
}

.team-member {
  min-width: 200px;
}

@media (max-width:600px) {
  .feature, .recipe-card, .plan-card, .blog-card, .team-member {
    min-width: 0;
    padding: 16px 8px 15px 8px;
    border-radius: 10px;
  }
}

.blog-article-cards {
  margin-top: 18px;
}

.blog-card {
  cursor: pointer;
}

/* ----- Plan Cards (Abo-Optionen) ----- */
.plan-cards {
  margin-bottom: 30px;
}
.plan-card strong {
  display: inline-block;
  font-size: 1.15rem;
  margin-top: 10px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
}

/* ----- Testimonial Cards ----- */
.testimonials, .testimonial-card {
  background: var(--accent);
}
.testimonial-card strong {
  display: block;
  margin-top: 12px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: var(--primary);
  font-size: 1.06rem;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--dark-text);
}

/* ----- Tags, Badges, etc ----- */
.tag {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  font-size: 0.93em;
  padding: 2px 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-right: 9px;
  margin-bottom: 5px;
  vertical-align: bottom;
  text-transform: capitalize;
  box-shadow: 0 1px 5px var(--shadow2);
}

/* ===========================================================
   CARDS TABLES, PAGINATION
   =========================================================== */
.price-table {
  width: 98%;
  margin: 0 auto 32px auto;
  border-spacing: 0;
  font-size: 1rem;
  box-shadow: 0 2px 15px var(--shadow);
  background: #fff;
  border-radius: 10px;
  overflow-x: auto;
  margin-bottom: 36px;
}
.price-table th, .price-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: 'Georgia', serif;
}
.price-table th {
  background: var(--accent);
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: bold;
}
.price-table tr:last-child td {
  border-bottom: none;
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin: 25px 0 0 0;
  padding-bottom: 10px;
  align-items: center;
}
.pagination span, .pagination a {
  color: var(--primary);
  font-size: 1.1rem;
  text-align: center;
  min-width: 32px; min-height: 32px;
  border-radius: 32px;
  padding: 2px 8px;
  transition: background 0.19s, color 0.16s;
  box-shadow: 0 1px 4px var(--shadow);
}
.pagination span {
  font-weight: bold;
  background: var(--secondary);
  color: #fff;
  cursor: default;
}
.pagination a:hover, .pagination a:focus {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

/* ===========================================================
   LISTS, UL, OL, CATEGORY/TOPIC TAGS
   =========================================================== */
.category-list li, .editor-pick, .popular-topics ul li {
  font-size: 1.06rem;
  margin-bottom: 7px;
  padding-left: 1.1em;
  position: relative;
}
.category-list li::before {
  content: '\2013'; /* EN DASH */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.03em;
}
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 12px;
  margin-top: 18px;
}
.topic-tags a {
  background: var(--secondary);
  color: #fff;
  border-radius: 11px;
  font-size: 1em;
  padding: 4px 15px;
  box-shadow: 0 1px 8px var(--shadow2);
  font-weight: 500;
  transition: background 0.23s, color 0.21s;
}
.topic-tags a:hover, .topic-tags a:focus {
  background: var(--primary);
  color: #fff;
}
.editor-pick {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 1px 6px var(--shadow);
  font-size: 0.99em;
  padding: 11px 16px;
  margin-top: 10px;
}
.editor-pick h4 {
  font-size: 1.07em;
  color: var(--secondary);
  margin-bottom: .4em;
}

/* ===========================================================
   FORMS (Newsletter, Inputs, Buttons)
   =========================================================== */
input[type="email"],
input[type="text"],
textarea {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 1em;
  padding: 10px 14px;
  width: 100%;
  margin-bottom: 18px;
  transition: border-color 0.18s, box-shadow 0.17s;
}
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 10px var(--shadow2);
}
button, input[type="submit"], .newsletter-mini-signup button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 27px;
  padding: 10px 24px;
  font-size: 1.01em;
  font-family: 'Georgia', serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.20s, color 0.20s, box-shadow 0.16s, transform 0.12s;
  margin-left: 2px;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 13px var(--shadow2);
  transform: translateY(-1px) scale(1.03);
}
.newsletter-mini-signup form,
.newsletter-signup form {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.newsletter-mini-signup label {
  font-size: 1rem;
  margin-right: 8px;
  color: var(--primary);
}
@media (max-width: 600px) {
  .newsletter-mini-signup form {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}

/* ===========================================================
   FOOTER, CONTACT INFO, SOCIAL MEDIA
   =========================================================== */
footer {
  background: var(--accent);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 36px 0 0 0;
  font-size: 1em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--primary);
  font-size: .99em;
  padding: 4px 4px;
  border-radius: 7px;
  transition: background 0.15s, color 0.14s;
}
.footer-links a:hover, .footer-links a:focus {
  background: var(--secondary);
  color: #fff;
}
.contact-quick {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px 38px;
  margin-bottom: 11px;
  align-items: flex-start;
}
.contact-quick p { display: flex; align-items: center; gap: 10px; margin: 0 0 6px 0; }
.contact-quick img { width: 20px; height: 20px; margin-right: 7px; }
.social-media {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 14px;
}
.social-media a img {
  width: 28px; height: 28px; filter: grayscale(30%) brightness(0.9);
  transition: filter 0.18s, transform 0.15s;
}
.social-media a:hover img {
  filter: none;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 2px 9px var(--shadow2);
}

@media (max-width: 700px) {
  .contact-quick { flex-direction: column; gap: 7px; }
  footer .container { gap: 18px; }
}

/* ===========================================================
   COOKIE CONSENT (Banner & Modal)
   =========================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: var(--accent);
  box-shadow: 0 -2px 18px var(--shadow);
  padding: 21px 18px 18px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  border-top: 1.8px solid var(--border);
  animation: fadeInUp 0.5s cubic-bezier(.16,.99,.29,.92) both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity:1; transform: translateY(0); }
}
.cookie-banner p {
  color: var(--primary);
  flex: 1 1 250px;
  max-width: 460px;
  font-size: 1rem;
  margin: 0 18px 0 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  font-size: 1em;
  padding: 8px 20px;
  border: none;
  font-family: 'Georgia', serif;
  transition: background 0.18s, color 0.17s, box-shadow 0.14s;
  cursor: pointer;
  box-shadow: 0 1px 7px var(--shadow2);
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1.4px solid var(--primary);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 7px 13px 7px;
    gap: 9px;
  }
  .cookie-banner .cookie-buttons { gap: 8px; }
}

/* -- Cookie modal popup -- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1400;
  background: rgba(33, 99, 91, 0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 7px 36px var(--shadow2);
  padding: 38px 24px 29px 24px;
  min-width: 288px;
  max-width: 96vw;
  min-height: 190px;
  font-size: 1.10em;
  animation: fadeInScale 0.4s cubic-bezier(0.45,0.9,0.4,1.07) both;
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(.92) translateY(38px); }
  100% { opacity:1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: var(--primary);
  font-size: 1.18em;
  margin-bottom: 1.1em;
}
.cookie-modal label,
.cookie-modal p {
  color: var(--dark-text);
  margin: 0 0 .8em 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: .6em;
}
.cookie-modal .toggle {
  margin-left: 9px;
  width: 38px;
  height: 19px;
  border-radius: 30px;
  background: var(--secondary);
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
  flex-shrink: 0;
}
.cookie-modal .toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .slider {
  position: absolute; left: 2px; top: 2px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 100%;
  transition: transform 0.18s, background 0.15s;
}
.cookie-modal .toggle input:checked + .slider {
  transform: translateX(17px);
  background: var(--primary);
}
.cookie-modal .cookie-buttons {
  margin-top: 17px;
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-buttons button {
  font-size: 1em;
  padding: 8px 20px;
  border-radius: 16px;
}
@media (max-width:600px) {
  .cookie-modal {
    padding: 17px 5px 11px 5px;
    min-width: 165px;
  }
}

/* ===========================================================
   MISC: MAP PLACEHOLDER, UTILITY
   =========================================================== */
.map-placeholder, .map-placeholder img {
  width: 100%;
  max-width: 425px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 15px;
  margin: 18px 0 9px 0;
  box-shadow: 0 1px 8px var(--shadow2);
}
@media (max-width:600px) {
  .map-placeholder, .map-placeholder img { min-height: 80px; border-radius: 7px; }
}

/* ===========================================================
   SUCCESS PAGE / THANK YOU
   =========================================================== */
.success-message {
  background: var(--accent);
  border-radius: 19px;
  box-shadow: 0 3px 22px var(--shadow2);
  margin: 72px auto 60px auto;
  padding: 64px 23px 56px 23px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  text-align: center;
}
.success-message h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: .7em;
}
.success-message ul { margin-top: 8px; }
.success-message ul li { margin-bottom: 7px; font-size: 1.05em; }
@media (max-width:700px) {
  .success-message {
    margin: 32px 0 22px 0;
    padding: 33px 7px 21px 7px;
  }
  .success-message h1 { font-size: 1.2rem; }
}

/* ===========================================================
   GENERAL UTILITY
   =========================================================== */
.hide { display: none !important; }
.visible { display: block !important; }
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===========================================================
   PRINTING (optional)
   =========================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}

/** -- END OF STYLE.CSS -- **/
