/* ========================================================================== 
   CSS RESET & BASE NORMALIZATION
   ========================================================================== */
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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: #F8F7F3;
  color: #22343D;
  font-family: 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: disc inside;
}
a {
  color: #8C6136;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #EAC47A;
  text-decoration: underline;
}
strong {
  font-weight: bold;
  color: #6B3F13;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
}

input, textarea, select {
  border: 1.5px solid #ded8ca;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #EAC47A;
  box-shadow: 0 0 0 2px #eac47a33;
}

h1, h2, h3, h4 {
  font-family: 'UnifrakturCook', 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #22343D;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem;   line-height: 1.15; margin-bottom: 18px; }
h3 { font-size: 1.3rem; line-height: 1.21; margin-bottom: 12px; }
h4 { font-size: 1.1rem; line-height: 1.2; margin-bottom: 10px; }

.subheadline {
  font-size: 1.2rem;
  font-family: 'Merriweather', Georgia, serif;
  color: #8C6136;
  margin-bottom: 18px;
}

::-webkit-input-placeholder { color: #B6AA97; opacity: 1; }
::-moz-placeholder { color: #B6AA97; opacity: 1; }
:-ms-input-placeholder { color: #B6AA97; opacity: 1; }
::placeholder { color: #B6AA97; opacity: 1; }


/* ========================================================================== 
   LUXURY PREMIUM COLOR PALETTE & SHADOWS
   ========================================================================== */
:root {
  --color-primary: #22343D;
  --color-secondary: #EAC47A;
  --color-accent: #8C6136;
  --color-light: #fff;
  --color-dark: #22343D;
  --color-bg: #F8F7F3;
  --color-border: #ded8ca;
  --color-shadow: #2e35401a;
  --color-gold: #EAC47A;
  --color-gold-dark: #C8A44C;
  --color-brown: #6B3F13;
}


/* ========================================================================== 
   CONTAINERS & SECTION SPACING (MANDATORY FLEXBOX & GAPS)
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F8F7F3;
  border-left: 5px solid var(--color-gold);
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 600px;
  color: #22343D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--color-shadow);
  border: 1.5px solid #ede6d3;
  padding: 28px 22px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.feature-item:hover {
  box-shadow: 0 6px 32px #eac47a33;
  transform: translateY(-4px) scale(1.015);
  border-color: var(--color-gold);
}
.feature-item img {
  height: 38px; width: 38px; margin-bottom: 4px;
}

/* Mandatory section spacing rules */
.section > *, section > .container {
  margin-bottom: 20px;
}

/* ========================================================================== 
   NAVIGATION & HEADER (LUXURY BAR, CTAs, MOBILE)
   ========================================================================== */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 3px 16px var(--color-shadow);
  padding: 0;
  z-index: 1000;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 20px;
  min-height: 70px;
  background: transparent;
}
.main-nav a img {
  height: 36px;
  width: auto;
  margin-right: 16px;
}
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav ul li {
  list-style: none;
}
.main-nav ul li a {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--color-gold);
  background: #fffbf3;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  color: #22343D;
  border-radius: 999px;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 32px;
  box-shadow: 0 2px 16px #eac47a26;
  border: none;
  outline: none;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: background 0.22s, color 0.17s, box-shadow 0.17s, transform 0.15s;
  margin-left: 16px;
  text-shadow: 0px 1px 0px #fff9decc;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFE6A2, var(--color-gold));
  color: #6B3F13;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 24px #EAC47A44;
  text-decoration: none;
}

/* ========================================================================== 
   MOBILE MENU (FULLSCREEN OVERLAY, FLEXBOX LAYOUT, ANIMATION) 
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-light);
  color: var(--color-accent);
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 2.3rem;
  box-shadow: 0 2px 9px #eac47a22;
  position: absolute;
  right: 24px; top: 20px;
  z-index: 1002;
  transition: background 0.16s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFF8E2;
  color: #C8A44C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #22343DE6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: opacity 0.3s, transform 0.33s;
  z-index: 1400;
  padding-top: 60px;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #EAC47A;
  z-index: 1402;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F1D194;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100vw;
  margin-top: 42px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-size: 1.23rem;
  color: #fff;
  letter-spacing: 0.045em;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
  min-width: 60vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EAC47A33;
  color: #EAC47A;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 10px;
  }
  .cta-btn { padding: 10px 18px; font-size: 1rem; }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================================================================== 
   HERO SECTION
   ========================================================================== */
.hero {
  background: linear-gradient(90deg, #22343D 60%, #F8F7F3 100%);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 54px;
  margin-bottom: 28px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 22px #22343d24;
}
.hero .container { padding-top: 16px; padding-bottom: 16px; }
.hero h1 {
  font-family: 'UnifrakturCook', 'Merriweather', serif;
  font-size: 2.7rem;
  color: #fff;
  text-shadow: 0px 2px 8px #22343D55;
}
.hero .subheadline {
  color: #EAC47A;
  text-shadow: 0 1px 8px #2f273015;
  font-size: 1.23rem;
}
.hero .cta-btn {
  margin-top: 16px;
  box-shadow: 0 2px 24px #eac47a54;
}


/* ========================================================================== 
   FEATURES & SERVICES FLEX LAYOUTS
   ========================================================================== */
.features-grid,
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-item, .service-item {
  flex: 1 1 230px;
  max-width: 320px;
  min-width: 220px;
  margin-bottom: 20px;
}

.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--color-shadow);
  border: 1.5px solid #ede6d3;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.18s, border 0.18s;
}
.service-item:hover {
  box-shadow: 0 6px 32px #eac47a33;
  transform: translateY(-4px) scale(1.015);
  border-color: var(--color-gold);
  z-index: 1;
}
.service-item img {
  height: 38px; width: 38px; margin-bottom: 2px;
}
.service-item span {
  margin-top: 5px;
  color: #8C6136;
  font-weight: 700;
  font-size: 1.12rem;
}

@media (max-width: 900px) {
  .features-grid, .services-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item, .service-item {
    max-width: unset;
    min-width: 0;
  }
}

/* ========================================================================== 
   TEAM & CITY HIGHLIGHTS FLEX LAYOUT
   ========================================================================== */
.team-section,
.city-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.city-feature {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--color-shadow);
  border-left: 5px solid var(--color-gold);
  min-width: 220px;
  padding: 20px 18px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, border 0.15s;
}
.city-feature h3 { color: #6B3F13; margin-bottom: 12px; }
.city-feature ul {
  margin-bottom: 0;
  padding-left: 0.7em;
}
.city-feature:hover {
  box-shadow: 0 8px 32px #EAC47A33;
  border-color: #C8A44C;
}

@media (max-width: 900px) {
  .city-highlights, .team-section {
    flex-direction: column;
    gap: 16px;
  }
  .city-feature {
    min-width: 0;
    width: 100%;
  }
}

/* ========================================================================== 
   TESTIMONIALS & CARDS
   ========================================================================== */
.testimonial-card {
  background: #fffef8;
  border-radius: 18px;
  box-shadow: 0 2px 14px #C8A44C22;
  border-left: 5px solid var(--color-gold);
  padding: 24px 22px;
  margin-bottom: 20px;
  color: #22343D;
  font-size: 1.07rem;
  font-style: italic;
  min-width: 200px;
  max-width: 640px;
}
.testimonial-card span {
  font-style: normal;
  color: #6B3F13;
  margin-left: 14px;
  font-weight: 600;
}

@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px 12px;
  }
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-preview {
  flex: 1 1 250px;
  background: #fff;
  box-shadow: 0 2px 12px #2e35401a;
  border-radius: 14px;
  border: 1.5px solid #EAC47A33;
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  max-width: 360px;
  transition: box-shadow 0.17s, border 0.16s;
}
.blog-preview h3 a {
  color: #22343D;
  text-decoration: none;
  font-size: 1.15rem;
  font-family: 'Merriweather', serif;
  transition: color 0.15s;
}
.blog-preview h3 a:hover {
  color: #EAC47A;
}
.blog-preview:hover {
  border-color: #EAC47A99;
  box-shadow: 0 6px 32px #EAC47A1a;
}

@media (max-width: 860px) {
  .blog-list { flex-direction: column; gap: 14px; }
  .blog-preview { max-width: unset; }
}

.categories-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
  align-items: center;
}
.categories-nav a {
  color: #8C6136;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.14s;
}
.categories-nav a:hover {
  color: #EAC47A;
}

/* ========================================================================== 
   FAQ FLEX LAYOUT
   ========================================================================== */
.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.faq > div {
  background: #fff;
  border: 1.5px solid #ede6d3;
  border-radius: 14px;
  box-shadow: 0 3px 15px #8C61361a;
  padding: 18px 20px;
  flex: 1 1 220px;
  min-width: 170px;
  max-width: 320px;
}
@media (max-width: 800px) {
  .faq { flex-direction: column; gap: 10px; }
}

/* ========================================================================== 
   FOOTER
   ========================================================================== */
footer {
  background: #22343D;
  color: #fff;
  padding: 40px 0 0 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -4px 28px #22343d1a;
}
.footer-nav {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 0 20px 32px 20px;
  flex-wrap: wrap;
}
.footer-nav img {
  height: 40px;
  margin-right: 18px;
}
.footer-nav ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav ul li {
  list-style: none;
}
.footer-nav ul li a {
  color: #EAC47A;
  font-family: 'Merriweather', serif;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background 0.16s, color 0.13s;
}
.footer-nav ul li a:hover {
  color: #22343D;
  background: #EAC47A;
  text-decoration: none;
}
.legal-info {
  font-size: 0.98rem;
  color: #eac47a;
  padding-bottom: 22px;
  padding-left: 20px;
}
.legal-info a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 16px;
  min-height: 40px;
  padding-left: 20px;
  margin-bottom: 0;
}
@media (max-width:600px) {
  .footer-nav { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-nav img { margin-bottom: 14px; }
}

/* ========================================================================== 
   COOKIE CONSENT BANNER & MODAL (FLEXbox, BUTTONS, ACCESSIBILITY)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 1600;
  background: #22343D;
  color: #fff;
  box-shadow: 0 -5px 32px #22343d44;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  animation: cookiebounce 0.7s cubic-bezier(.45,1.8,.47,.96);
}
@keyframes cookiebounce {
  0% { transform: translateY(100%); opacity: 0; }
  70% { transform: translateY(-16px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
  background: #EAC47A;
  color: #22343D;
  margin-right: 2px;
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #eac47a1b;
  cursor: pointer;
}
.cookie-banner button:hover {
  background: #FFF2C2;
  color: #6B3F13;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: #EAC47A;
  border: 1.5px solid #eac47a99;
}
.cookie-banner .settings-btn:hover {
  background: #EAC47A33;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1800;
  inset: 0;
  background: #22343Dcc;
  justify-content: center;
  align-items: center;
  transition: background 0.25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #22343D;
  border-radius: 16px;
  box-shadow: 0 8px 38px #8C613666;
  padding: 34px 28px 24px 28px;
  max-width: 440px;
  min-width: 320px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalfadein 0.32s cubic-bezier(.46,1.4,.55,1.03);
}
@keyframes modalfadein {
  from { transform: translateY(24px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #6B3F13;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #22343D;
}
.cookie-category input[type="checkbox"] {
  accent-color: #EAC47A;
}
.cookie-category input[disabled] {
  accent-color: #EAC47A;
  opacity: 0.85;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  background: #EAC47A;
  color: #22343D;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, box-shadow 0.19s;
  box-shadow: 0 2px 8px #EAC47A22;
}
.cookie-modal-actions button:hover {
  background: #FFF2C2;
  color: #6B3F13;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 28px;
  background: none;
  border: none;
  color: #EAC47A;
  font-size: 2.25rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #C8A44C;
}
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 90vw;
    padding: 22px 10px 12px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 7px 16px 10px;
    font-size: .98rem;
  }
}

/* ========================================================================== 
   NEWSLETTER FORM, CONTACT FORM, MAP
   ========================================================================== */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 370px;
  margin-top: 18px;
}
form button[type='submit'],
form button[type='button'],
form input[type='submit'] {
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
  color: #22343D;
  border-radius: 999px;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 32px;
  box-shadow: 0 2px 16px #eac47a26;
  border: none;
  outline: none;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: background 0.22s, color 0.15s, box-shadow 0.19s, transform 0.15s;
  margin-top: 4px;
}
form button:hover, form input[type='submit']:hover {
  background: linear-gradient(90deg, #ffe7a2, var(--color-gold));
  color: #6B3F13;
  transform: scale(1.04);
  box-shadow: 0 7px 24px #eac47a45;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #eac47a11;
  padding: 18px 12px;
  margin-top: 8px;
}

/* ========================================================================== 
   TEXT SECTIONS LAYOUT
   ========================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px #22343d11;
  border: 1.5px solid #ede6d3;
  padding: 29px 21px;
  margin-bottom: 20px;
}

/* ========================================================================== 
   RESPONSIVE RULES: COLUMN LAYOUT ON MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper, .section, section {
    padding: 30px 6px;
    margin-bottom: 38px;
    gap: 14px;
  }
  .hero { padding-top: 34px; padding-bottom: 28px; }
  .hero h1 { font-size: 2.05rem; }
  .hero .subheadline { font-size: 1.05rem; }
  .footer-nav ul {
    flex-direction: column;
    gap: 7px;
    margin-top: 12px;
  }
  .team-section, .city-highlights {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .blog-list, .features-grid, .services-list {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item, .service-item, .city-feature {
    min-width: 0;
    width: 100%;
    max-width: unset;
  }
  .testimonial-card {
    max-width: unset;
    min-width: 0;
    font-size: 0.98rem;
    padding: 12px 7px;
    gap: 7px;
  }
  .faq {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================================================== 
   MICRO-INTERACTIONS & EFFECTS
   ========================================================================== */
button, .cta-btn, input[type='submit'] {
  transition: all 0.16s cubic-bezier(.47,1.64,.41,.8);
}
@media (hover: hover) {
  .feature-item:hover, .service-item:hover, .city-feature:hover, .cta-btn:hover {
    box-shadow: 0 7px 28px #EAC47A30;
    filter: saturate(1.1);
  }
}

/* Focus outlines (high-accessibility) */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid #EAC47A;
  outline-offset: 1.5px;
}

/* Utility classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mt-24 { margin-top: 24px !important; }

/* Loader, spinner (if needed in cookie/modal etc.) */
.loader {
  border: 3px solid #eee;
  border-top: 3px solid #EAC47A;
  border-radius: 50%;
  width: 28px; height: 28px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========================================================================== 
   PRINT OPTIMIZATION
   ========================================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .container { width: auto !important; padding: 0 !important; }
  body { color: #000; background: #fff !important; }
}

/* ========================================================================== 
   WEBFONTS LOAD OPTIMIZATION (only if not loaded elsewhere)
   ========================================================================== */
@font-face {
  font-family: 'UnifrakturCook';
  src: local('UnifrakturCook'), url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');
  font-weight: 700;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;600;700&display=swap');

