/* =======================================
   ZÁŘE DOMOVA – ELEGANT_CLASSIC STYLE.CSS
   ======================================= */

/* ---------- 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;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #FAF9F6;
  color: #375453;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input, select, textarea {
  font: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #D6BC8C;
  outline-offset: 2px;
}

/* -------------- ROOT & VARIABLES --------------- */
:root {
  --primary: #375453;
  --secondary: #D6BC8C;
  --accent: #FFFFFF;
  --body-bg: #FAF9F6;
  --text-main: #375453;
  --text-muted: #898c88;
  --border: #E5E2D9;
  --card-bg: #FFFFFF;
  --shadow-card: 0 2px 16px rgba(55,84,83,0.06);
  --shadow-subtle: 0 1px 4px rgba(55,84,83,0.04);
  --radius: 12px;
  --font-display: 'Montserrat', Georgia, 'Times New Roman', serif;
  --font-body: 'Roboto', Georgia, 'Times New Roman', serif;
}

/* -------------- TYPOGRAPHY --------------------- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-main);
  background: var(--body-bg);
  letter-spacing: 0.01em;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.7;
}
.hero-subheadline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}
strong, b {
  font-weight: 600;
  color: var(--primary);
}
.text-muted {
  color: var(--text-muted);
}
ul, ol {
  margin-bottom: 18px;
  padding-left: 0;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 6px;
  position: relative;
}
.text-section ul li::before {
  content: "\2022";
  color: var(--secondary);
  position: relative;
  left: 0;
  margin-right: 10px;
}
.text-section ul {
  padding-left: 0;
}

/* -------------- CONTAINER & LAYOUT -------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.22s cubic-bezier(.86,0,.07,1);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(55,84,83,0.11);
}
.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;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  background: linear-gradient(102deg, #F8F7F3 60%, #EDF0EB 100%);
  box-shadow: 0 2px 12px rgba(55,84,83,0.03);
  padding: 70px 0 60px 0;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- FEATURES ---------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px 20px 18px 20px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s cubic-bezier(.86,0,.07,1), transform 0.22s cubic-bezier(.86,0,.07,1);
  min-width: 228px;
  max-width: 330px;
  flex: 1 1 220px;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(55,84,83,0.13);
  transform: translateY(-4px) scale(1.025);
}
.feature-item h3 {
  font-size: 1.08rem;
  color: var(--primary);
}
.feature-item p {
  color: var(--text-main);
  font-size: 0.99rem;
}

/* ---------- SERVICES OVERVIEW ---------- */
.services-overview, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
}
.service-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 22px 18px 22px;
  min-width: 210px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.service-box:hover {
  box-shadow: 0 10px 36px rgba(55,84,83,0.14);
  transform: translateY(-4px) scale(1.025);
}
.service-box h3 {
  color: var(--primary);
  font-size: 1.12rem;
}
.service-price {
  color: var(--secondary);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.09rem;
  margin-top: 6px;
}

/* ---------- TESTIMONIAL CARDS ---------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(55,84,83,0.15);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card .testimonial-stars {
  font-family: var(--font-display);
  color: #F2C87F;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.testimonial-card p {
  color: #163123;
  font-size: 1rem;
  margin-bottom: 10px;
}
.testimonial-card .testimonial-meta {
  color: var(--secondary);
  font-size: 0.98rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* ---------- ABOUT & INFO SECTIONS ---------- */
.text-section {
  background: none;
  padding: 0;
}
.text-section ul li {
  font-size: 1rem;
}

/* ---------- BLOG -------------------- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 8px;
}
.blog-entry {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  padding: 20px 18px 18px 18px;
  flex: 1 1 260px;
  max-width: 370px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  transition: box-shadow 0.22s cubic-bezier(.86,0,.07,1), transform 0.17s cubic-bezier(.86,0,.07,1);
}
.blog-entry:hover {
  box-shadow: 0 10px 38px rgba(55,84,83,0.14);
  transform: translateY(-2px) scale(1.023);
}
.blog-entry h3 {
  font-size: 1.08rem;
  color: var(--primary);
}
.blog-cta {
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-display);
  text-decoration: underline dotted var(--secondary) 1px;
  margin-top: 10px;
  transition: color 0.18s;
}
.blog-cta:hover, .blog-cta:focus {
  color: var(--secondary);
}
.blog-categories {
  background: #F6F2EC;
  border-radius: var(--radius);
  box-shadow: var(--shadow-subtle);
  padding: 14px 20px 12px 20px;
  margin-top: 16px;
}
.blog-categories h4 {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--primary);
}
.blog-categories ul {
  padding-left: 0;
  margin-top: 8px;
}
.blog-categories li {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.97rem;
  padding: 3px 12px;
  border-radius: 8px;
  margin-right: 10px;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

/* ---------- NEWSLETTER FORM ---------- */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.newsletter-form input[type="email"] {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--primary);
  min-width: 180px;
  transition: box-shadow 0.16s;
}
.newsletter-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px rgba(214,188,140,0.10);
}
.newsletter-form button {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 8px;
  border: none;
  transition: background 0.17s, box-shadow 0.16s;
  box-shadow: var(--shadow-subtle);
}
.newsletter-form button:hover, .newsletter-form button:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ---------- BUTTONS / CTAs ---------- */
.cta-button, .cta-primary,
.cta-secondary, .main-nav a, .mobile-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
  border-radius: 8px;
  padding: 11px 28px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  background: none;
  border: none;
  outline: none;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta-button, .cta-primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  box-shadow: 0 2px 12px rgba(55, 84, 83, 0.07);
  margin-left: 16px;
}
.cta-button:hover, .cta-primary:hover, .cta-button:focus, .cta-primary:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
.cta-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
  margin-top: 20px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: var(--primary);
}

footer .cta-button {
  margin: 0;
}
.main-nav a {
  color: var(--primary);
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.14s, color 0.12s;
  margin-left: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6F2EC;
  color: var(--secondary);
}
.mobile-nav a {
  display: block;
  font-size: 1.07rem;
  padding: 15px 0;
  border-bottom: 1px solid #eceae3;
  color: var(--primary);
  transition: background 0.13s, color 0.12s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F9F6EE;
  color: var(--secondary);
}

/* -------------- HEADER & NAV -------------- */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 16px rgba(55,84,83,0.03);
  position: relative;
  z-index: 40;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
  margin-right: 0;
}
nav.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 14px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  font-size: 2.1rem;
  border-radius: 10px;
  padding: 4px 16px 3px 16px;
  transition: background 0.12s, color 0.11s;
  z-index: 120;
  margin-left: 18px;
  outline: none;
  border: 2px solid var(--primary);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,249,246,0.96);
  backdrop-filter: blur(5px);
  z-index: 2000;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.43,.19,.58,1.17), opacity 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  align-self: flex-end;
  margin: 25px 32px 12px 0;
  padding: 0 16px 6px 16px;
  border-radius: 8px;
  line-height: 1;
  transition: background 0.17s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E5E2D9;
  color: var(--secondary);
}
.mobile-menu nav.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 8vw;
}

/* -------------- FOOTER -------------- */
footer {
  background: #F6F2EC;
  margin-top: 60px;
  font-size: 1rem;
  color: var(--primary);
  box-shadow: 0 -2px 16px rgba(55,84,83,0.03);
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 44px 0 12px 0;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-brand img {
  width: 52px;
  margin-bottom: 6px;
}
.footer-nav nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a, .footer-legal a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.01rem;
  transition: color 0.12s, text-decoration 0.13s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.97rem;
  max-width: 250px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--text-muted);
}
.footer-contact a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--secondary);
}
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 16px;
}
.footer-social a {
  border-radius: 100px;
  background: #E5E2D9;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--secondary);
}
.footer-social img {
  width: 18px;
  height: 18px;
}
.footer-copyright {
  padding: 16px 0 10px 0;
  text-align: center;
  color: #9c978e;
  font-size: 0.99rem;
}

/* -------------- COOKIE CONSENT -------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #FDF7EF;
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 18px rgba(55, 84, 83, 0.09);
  padding: 18px 24px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-body);
  color: var(--text-main);
  transition: transform 0.33s cubic-bezier(.28,1.25,.31,1), opacity 0.22s;
}
.cookie-banner.hidden {
  display: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 8px;
  border: none;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.11s, color 0.11s, box-shadow 0.12s;
  margin-left: 6px;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4100;
  background: rgba(48, 48, 48, 0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: backdrop-filter 0.18s;
}
.cookie-modal {
  background: #FFFDF9;
  border-radius: var(--radius);
  box-shadow: 0 6px 38px rgba(40,40,40,0.13);
  max-width: 430px;
  width: 94vw;
  padding: 32px 32px 22px 32px;
  font-family: var(--font-body);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  margin-bottom: 14px;
  font-size: 1.19rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  z-index: 4120;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 9px 0 9px;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.cookie-modal .cookie-category input[type="checkbox"]:not([disabled]) {
  accent-color: var(--secondary);
}
.cookie-modal .cookie-category input[disabled] {
  filter: grayscale(1);
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--primary);
}
.cookie-modal .cookie-category-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  margin-left: 30px;
  margin-bottom: 0;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--primary);
  color: var(--accent);
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.13s, color 0.12s, box-shadow 0.13s;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* -------------- SPACING & FLEX LAYOUTS -------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------- RESPONSIVE DESIGN -------------- */
@media (max-width: 1060px) {
  .container { max-width: 96vw; }
  .footer-columns { gap: 24px; }
}
@media (max-width: 900px) {
  .hero-section .content-wrapper { max-width: 98vw; }
  .feature-grid, .services-overview, .testimonial-list, .blog-list, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-columns {
    flex-wrap: wrap;
    gap: 18px;
  }
  .main-nav a { padding: 9px 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .hero-section {
    padding: 40px 0 35px 0;
    min-height: auto;
  }
  .section { padding: 25px 8px; margin-bottom: 40px; }
  .blog-categories { padding: 10px 8px; }
  .newsletter-form {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .footer-columns {
    flex-direction: column;
    gap: 24px;
    padding: 28px 0 10px 0;
  }
}
@media (max-width: 720px) {
  .header-flex { gap: 12px; }
  .main-nav { display: none !important; }
  .cta-button { display: none !important; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
  }
  header .container { padding-right: 56px; }
}
@media (max-width: 520px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .feature-item, .service-box, .testimonial-card, .blog-entry { padding: 10px 7px 11px 10px; }
  .hero-section { padding: 18px 0 18px 0; }
  .footer-brand img { width: 40px; }
}
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 10px 7px; }
  .cookie-banner .cookie-buttons { gap: 9px; }
  .cookie-modal { padding: 8vw 4vw 6vw 5vw; max-width: 98vw; }
}

/* ---------- TRANSITIONS & MICRO-INTERACTIONS ---------- */
a, .main-nav a, .mobile-nav a, .cta-button, .cta-primary, .cta-secondary, .service-box, .feature-item, .card, .testimonial-card, .blog-entry {
  transition-property: background, color, box-shadow, transform;
  transition-duration: 0.17s, 0.13s, 0.19s, 0.19s;
  transition-timing-function: cubic-bezier(.64,.09,.22,.94);
}

/* -------------- UTILITIES -------------- */
.text-center { text-align: center; }
.hide { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 12px !important; }
.mb-2 { margin-bottom: 24px !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-36 { gap: 36px; }

/* -------------- OVERRIDES FOR FORM ELEMENTS -------------- */
input, textarea, select {
  background: #FFF;
  border: 1px solid var(--border);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* -------------- Z-INDEX -------------- */
header { z-index: 30; }
footer { z-index: 10; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 4000; }
.cookie-modal-backdrop { z-index: 4100; }

/* -------------- REMOVE ABSOLUTE for CONTENT (except modal/close) -------------- */
/* Only .cookie-modal-close uses absolute for UI, no cards or main content */

/* END OF ELEGANT_CLASSIC CSS */
