/* === CSS RESET & BASE STYLES === */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #212226;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.7,0,.3,1);
}
img {
  max-width: 100%;
  display: block;
}

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* === COLOR VARIABLES (with fallback) === */
:root {
  --color-primary: #212226;
  --color-secondary: #E8E6E1;
  --color-accent: #C99237;
  --color-bg-dark: #18191D;
  --color-grey-light: #F6F4F0;
  --color-card-bg: #fff;
  --color-error: #C94B37;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.18;
}
h4 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h5, h6 {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
p, li, blockquote {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
p {
  margin-bottom: 18px;
}

strong {
  font-weight: 600;
}

.text-section h3 {
  margin-bottom: 12px;
}

/* === GENERAL LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 0;
}

/* === HEADER & NAVIGATION === */
header {
  background: #FFF7F1;
  border-bottom: 3px solid var(--color-accent);
  position: relative;
  min-height: 64px;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 80px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1.1rem;
  padding: 6px 8px 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

.button.primary {
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 30px 10px 30px 10px;
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  box-shadow: 0 3px 18px rgba(201,146,55,0.13);
  margin-left: 12px;
}
.button.primary:hover, .button.primary:focus {
  background: #212226;
  color: #FFECEC;
  box-shadow: 0 6px 26px rgba(201,146,55,0.21), 0 1px 4px rgba(33,34,38,.08);
  transform: translateY(-2px) scale(1.034);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 2px 8px rgba(33,34,38,0.11);
  margin-left: 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 92vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 60px 0 rgba(33,34,38,0.32);
  transform: translateX(110%);
  transition: transform 0.24s cubic-bezier(.6,0,.2,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 36px 24px 36px 24px;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  padding: 4px 10px;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-error);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 9px 6px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 1024px) {
  header .container {
    gap: 16px;
    min-height: 64px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 6px;
  }
  .main-nav {
    font-size: 1rem;
    gap: 9px;
  }
}
@media (max-width: 768px) {
  .main-nav,
  .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* === SECTION, SPACING & FLEX PATTERNS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: 24px 12px 32px 12px;
  box-shadow: 0 4px 24px rgba(33,34,38,0.07);
  padding: 28px 22px;
  min-width: 280px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-secondary);
  border-radius: 32px 16px 40px 12px;
  margin-bottom: 24px;
  box-shadow: 0 3px 26px rgba(33,34,38,0.10);
  border: 2px solid var(--color-accent);
  max-width: 550px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(105deg, #FFF7F1 55%, #EFE2D4 100%);
  border-bottom: 5px solid var(--color-accent);
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 720px;
}
.hero h1 {
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-primary);
}
.hero .button.primary {
  margin-top: 18px;
}

/* === FEATURES === */
.features .content-wrapper {
  gap: 28px;
}
.features h2 {
  color: var(--color-accent);
  font-size: 2.1rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 30px 12px 26px 12px;
  box-shadow: 0 4px 22px rgba(33,34,38,0.07);
  padding: 30px 24px 28px 24px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border: 1.5px solid var(--color-secondary);
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.20s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 30px 0 rgba(201,146,55,0.17), 0 1px 12px rgba(33,34,38,.10);
  border-color: var(--color-accent);
  z-index: 2;
}
.feature img {
  height: 44px;
  width: 44px;
  margin-bottom: 0;
  margin-top: -14px;
  margin-bottom: 5px;
}
.feature h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
}
.feature p {
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-price {
  background: var(--color-accent);
  color: #fff;
  padding: 5px 18px;
  border-radius: 16px 6px 18px 6px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* === BLOG POSTS === */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.blog-post {
  background: #fff;
  padding: 22px 18px 16px 18px;
  border-radius: 20px 6px 22px 8px;
  box-shadow: 0 1px 13px rgba(33,34,38,0.06);
  border: 1px solid var(--color-secondary);
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.blog-post h3 {
  color: var(--color-accent);
  margin-bottom: 9px;
}
.featured-posts {
  margin-top: 12px;
  background: var(--color-secondary);
  border-radius: 16px 6px 12px 6px;
  padding: 14px 22px;
  font-size: 1rem;
}
.featured-posts ul {
  margin-top: 4px;
  list-style: disc inside;
}
.featured-posts a {
  color: var(--color-accent);
  font-weight: 600;
  transition: text-decoration 0.18s;
}
.featured-posts a:hover {
  text-decoration: underline wavy var(--color-accent) 1.5px;
}

/* === SERVICE-LIST === */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.service-list li {
  background: #fff;
  border-radius: 20px 7px 20px 7px;
  box-shadow: 0 0.5px 6px rgba(33,34,38,0.06);
  padding: 19px 20px 17px 20px;
  border-left: 4px solid var(--color-accent);
  margin-bottom: 20px;
}
.service-list h3 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.13rem;
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-list .service-price {
  background: var(--color-accent);
  color: #fff;
  border-radius: 10px 4px 10px 4px;
  padding: 2px 12px;
  font-size: 0.98rem;
  margin-left: 8px;
}

/* === TESTIMONIALS === */
.testimonials .content-wrapper {
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 400px;
  transition: box-shadow 0.22s, border-color 0.19s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 38px rgba(201,146,55,0.12);
  border-color: #f7debb;
}
.stars {
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 3px;
  letter-spacing: 2.5px;
}
.testimonial-card p {
  font-size: 1.04rem;
  color: #18191d;
  text-align: center;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
  margin-top: 6px;
  text-align: right;
  width: 100%;
}

/* === CTA === */
.cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: 32px 16px 34px 16px;
  box-shadow: 0 1.5px 18px rgba(33,34,38,0.07);
  text-align: left;
  margin-bottom: 42px;
}
.cta .content-wrapper {
  align-items: flex-start;
  color: #fff;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: #fff;
  font-size: 1.10rem;
}
.cta .button.primary {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  margin-top: 10px;
}
.cta .button.primary:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: #fff;
}

/* === LISTS === */
ul {
  margin-bottom: 14px;
  padding-left: 22px;
  list-style-type: disc;
}
ul li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* === ADDRESS & CONTACT SECTION === */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 44px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.address-block, .email-block {
  background: var(--color-secondary);
  border-radius: 12px 6px 12px 7px;
  padding: 14px 21px;
  font-size: 1rem;
  box-shadow: 0 1.3px 9px rgba(33,34,38,0.06);
  margin-bottom: 8px;
}
.text-section {
  margin-bottom: 18px;
}

/* === LEGAL SECTION === */
.legal .content-wrapper {
  background: #fff;
  border-radius: 16px 8px 18px 8px;
  padding: 34px 20px 28px 20px;
  box-shadow: 0 1.3px 13px rgba(33,34,38,0.05);
  margin-bottom: 16px;
  flex-direction: column;
  gap: 16px;
}
.legal h1 {
  color: var(--color-accent);
  margin-bottom: 16px;
}
.legal h2 {
  color: var(--color-primary);
  margin-bottom: 6px;
}
.legal ul {
  margin-bottom: 12px;
  padding-left: 22px;
}

/* === FOOTER === */
footer {
  margin-top: 74px;
  background: #212226;
  color: #fff;
  padding: 42px 0 30px 0;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-top: 4px solid var(--color-accent);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo-footer img {
  height: 48px;
  filter: brightness(1.5);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  opacity: 0.87;
  transition: color 0.15s, text-decoration 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact span,
.footer-contact a {
  color: #fff;
  font-size: 0.95rem;
  opacity: 0.81;
}
.footer-contact a {
  text-decoration: underline 1.3px dotted var(--color-accent);
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--color-accent);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 22px 10px 16px 14px;
  border: 2.1px solid var(--color-accent);
  box-shadow: 0 9px 80px rgba(33,34,38,0.23), 0 1.5px 13px rgba(33,34,38,0.11);
  z-index: 1200;
  padding: 26px 28px 18px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  animation: fadeInBanner 0.4s cubic-bezier(.41,.92,.44,.98);
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
}
.cookie-consent-banner .button {
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: 18px 6px 16px 6px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  box-shadow: 0 1.3px 6px rgba(33,34,38,0.09);
}
.cookie-consent-banner .button:hover, .cookie-consent-banner .button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-consent-banner .button.reject {
  background: var(--color-error);
}
.cookie-consent-banner .button.reject:hover {
  background: var(--color-primary);
  color: var(--color-error);
}
.cookie-consent-banner .button.settings {
  background: #EEEDE8;
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent);
}
.cookie-consent-banner .button.settings:hover {
  background: var(--color-accent);
  color: #fff;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,32,34,0.40);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s cubic-bezier(.44,1,.45,1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 8px 20px 14px;
  box-shadow: 0 10px 39px rgba(33,34,38,0.13);
  max-width: 430px;
  width: 96vw;
  padding: 38px 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal h2 {
  color: var(--color-accent);
  margin-bottom: 2px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  padding: 4.5px 14px 4.5px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.15s;
}
.cookie-modal .modal-close:hover {
  background: var(--color-accent);
  color: #fff;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: space-between;
}
.cookie-modal label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-primary);
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #E8E6E1;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  margin-left: 12px;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal .cookie-category.essential .cookie-toggle {
  background: var(--color-accent);
  pointer-events: none;
  opacity: 0.7;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie-modal .button {
  color: #fff;
  background: var(--color-accent);
  border: none;
  border-radius: 12px 5px 12px 5px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.15s;
  box-shadow: 0 1.2px 8px rgba(33,34,38,0.07);
}
.cookie-modal .button.reject {
  background: var(--color-error);
}
.cookie-modal .button.settings {
  background: #EEEDE8;
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent);
}
.cookie-modal .button:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* === ANIMATIONS === */
.button, .main-nav a, .feature, .testimonial-card, .blog-post, .service-list li, .cta, .content-wrapper, .mobile-menu-toggle {
  transition: box-shadow 0.18s, border-color 0.19s, background 0.21s, color 0.20s, transform 0.16s;
}
.card, .feature, .testimonial-card, .cta, .blog-post, .service-list li {
  will-change: box-shadow, transform;
}

/* === MEDIA QUERIES (MOBILE FIRST) === */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
  .features .feature-grid,
  .card-container,
  .blog-post-grid,
  .content-grid,
  .testimonials .content-wrapper {
    gap: 21px;
  }
  .feature,
  .card,
  .blog-post,
  .testimonial-card {
    min-width: 180px;
    max-width: 95vw;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  section, .section {
    padding: 32px 7px;
    margin-bottom: 38px;
  }
  .footer-contact, .footer-nav {
    font-size: 0.97rem;
  }
  header .container {
    flex-direction: row;
    gap: 2px;
    min-height: 56px;
  }
  .main-nav {
    display: none;
  }
  .button.primary {
    display: none;
  }
  .testimonials .content-wrapper, .content-grid, .feature-grid, .blog-post-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 10px;
    margin: 0 auto;
  }
  .cta {
    text-align: left;
    border-radius: 18px 6px 18px 6px;
  }
  .cookie-consent-banner {
    left: 2px; right: 2px;
    padding: 18px 7px 13px 14px;
    border-radius: 16px 8px 16px 7px;
    gap: 12px;
  }
  .cookie-modal {
    padding: 18px 8px 16px 8px;
    border-radius: 14px 5px 10px 7px;
  }
}
@media (max-width: 480px) {
  .logo img, .logo-footer img {
    height: 36px;
  }
  .feature, .blog-post, .card, .testimonial-card, .service-list li {
    min-width: 100px !important;
    max-width: 99vw !important;
    padding: 18px 10px 13px 10px;
    border-radius: 13px 6px 14px 5px;
  }
  .cookie-consent-banner {
    left: 0; right: 0;
    font-size: 0.96rem;
    border-radius: 10px 6px 10px 4px;
    padding: 11px 2px 8px 7px;
  }
}

/* === UNIQUE ARTISTIC ELEMENTS === */
.feature::before, .feature::after,
.card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
}
.feature::before {
  top: -24px; left: -24px;
  width: 66px; height: 66px;
  background: var(--color-accent);
}
.feature::after {
  right: -9px; bottom: -17px;
  width: 25px; height: 25px;
  background: var(--color-primary);
  opacity: 0.15;
}
.card::before { left: -11px; top: -13px; width: 28px; height: 28px; background: var(--color-accent); opacity: 0.08; }
.testimonial-card::before { left: -13px; top: 3px; width: 18px; height: 18px; background: var(--color-accent); opacity: 0.11; }

/* === FOCUS STATES FOR ACCESSIBILITY === */
a:focus, .button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
  background: #fffbe7;
  color: var(--color-primary);
}

/* === UTILS === */
.button {
  display: inline-block;
  text-align: center;
  min-width: 120px;
}
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mb-20 { margin-bottom: 20px; }
.gap-18 { gap: 18px; }

/* === ENSURE NO GRID OR COLUMNS: (per requirements) === */
/* 
Absolutely NO: display: grid, grid-*, column-count, column-gap, columns, etc. Used ONLY flexbox in all layouts.
*/