/* WohnRaum Meister – Creative Artistic CSS Theme */

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

:root {
  --color-primary: #2C3E4F;
  --color-secondary: #BEC4B8;
  --color-accent: #F6B336;
  --color-bg: #F9F7F3;
  --color-bg-alt: #fffbe6;
  --color-dark: #1a232b;
  --color-light: #fff;
  --color-grey: #e5e7eb;
  --color-shadow: rgba(44,62,79,0.08);
  --color-shadow-strong: rgba(44,62,79,0.18);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(.77,.2,.05,1.0);
  --shadow-card: 0 6px 32px var(--color-shadow);
  --shadow-hover: 0 12px 32px var(--color-shadow-strong);
  --gradient-hero: linear-gradient(120deg, #F6B336 0%, #BEC4B8 100%);
  --gradient-accent: linear-gradient(90deg, #F6B336 0%, #FFD580 100%);
  --gradient-art: linear-gradient(135deg, #F6B336 0%, #2C3E4F 100%);
}

html {
  box-sizing: border-box;
  font-size: 18px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-primary);
  margin: 0;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* === GENERAL LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.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-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}

.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  min-width: 0;
  color: var(--color-dark);
}
.testimonial-card .stars {
  color: var(--color-accent);
  font-size: 1.2em;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.03) rotate(1deg);
}
.feature-icon {
  font-size: 2.2em;
  background: var(--gradient-accent);
  border-radius: 50%;
  padding: 10px 16px;
  color: var(--color-primary);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 8px;
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--gradient-hero);
  box-shadow: 0 2px 16px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1.05em;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width var(--transition);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-accent);
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 100%;
}

.cta-button {
  background: var(--gradient-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.08em;
  border: none;
  border-radius: var(--radius-lg);
  padding: 14px 32px;
  margin-left: 16px;
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.cta-button:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: var(--color-accent);
  opacity: 0.15;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: 0;
}
.cta-button:hover:after {
  width: 200%;
  height: 500%;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 6px 24px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.03);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 2em;
  padding: 6px 16px;
  cursor: pointer;
  margin-left: 12px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.mobile-menu-toggle:active {
  background: var(--color-primary);
  color: var(--color-accent);
  transform: scale(0.95);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,62,79,0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,.2,.05,1.0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2em;
  margin: 24px 32px 0 0;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-close:hover {
  color: #fff;
  transform: scale(1.1) rotate(8deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  margin: 60px 40px 0 0;
}
.mobile-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.5em;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition), text-shadow var(--transition);
  text-shadow: 0 2px 8px rgba(44,62,79,0.25);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff;
  text-shadow: 0 4px 16px var(--color-accent);
}

/* === HERO SECTION === */
.hero-section {
  background: var(--gradient-hero);
  padding: 80px 0 60px 0;
  margin-bottom: 60px;
  border-bottom-left-radius: 80px 40px;
  border-bottom-right-radius: 80px 40px;
  box-shadow: 0 8px 32px var(--color-shadow-strong);
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}
.hero-section h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5em;
  color: var(--color-primary);
  margin: 0 0 12px 0;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px var(--color-shadow);
}
.hero-section p {
  font-size: 1.25em;
  color: var(--color-dark);
  margin-bottom: 18px;
}

/* === FEATURES === */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.features h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 2em;
  margin-bottom: 18px;
}

/* === ABOUT SHORT === */
.about-short ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-short ul li {
  font-size: 1.1em;
  font-family: var(--font-display);
  color: var(--color-accent);
  position: relative;
  padding-left: 28px;
}
.about-short ul li:before {
  content: '★';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1em;
}

/* === TESTIMONIALS === */
.testimonials h2 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 2em;
  margin-bottom: 18px;
}
.testimonial-card p {
  font-size: 1.1em;
  color: var(--color-dark);
  margin: 0 0 6px 0;
}
.testimonial-card span {
  font-size: 0.98em;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
}

/* === CTA SECTION === */
.cta {
  background: var(--gradient-art);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px var(--color-shadow-strong);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-light);
  font-size: 2em;
  margin-bottom: 8px;
}
.cta p {
  color: var(--color-light);
  font-size: 1.15em;
}
.cta .cta-button {
  background: var(--color-light);
  color: var(--color-primary);
  box-shadow: 0 2px 12px var(--color-shadow);
}
.cta .cta-button:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 40px 0 24px 0;
  border-top-left-radius: 60px 30px;
  border-top-right-radius: 60px 30px;
  box-shadow: 0 -4px 24px var(--color-shadow-strong);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  font-size: 1em;
  transition: color var(--transition);
}
.footer-menu a:hover {
  color: #fff;
}
.footer-contact p {
  margin: 0 0 6px 0;
  font-size: 0.98em;
  color: var(--color-secondary);
}

/* === SERVICES PAGE === */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service-item {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.service-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.03) rotate(-2deg);
}
.service-icon {
  font-size: 2.2em;
  background: var(--gradient-accent);
  border-radius: 50%;
  padding: 10px 16px;
  color: var(--color-primary);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 8px;
}

/* === GALLERY / REFERENCES === */
.project-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.project-item {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.project-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px) scale(1.02) rotate(2deg);
}

/* === PRICING TABLE === */
.pricing table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1em;
}
.pricing th {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
}
.pricing tr:nth-child(even) td {
  background: var(--color-bg-alt);
}
.pricing tr:nth-child(odd) td {
  background: var(--color-light);
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01) rotate(-1deg);
}
.faq-item h2, .faq-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}

/* === CONTACT PAGE === */
.contact-details {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--color-primary);
}
.map {
  background: var(--color-grey);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  color: var(--color-secondary);
  font-style: italic;
  text-align: center;
}

/* === CONFIRMATION PAGE === */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.confirmation h1 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2em;
}

/* === LEGAL PAGES === */
.privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
  background: var(--color-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 40px 24px;
  margin-bottom: 60px;
}
.privacy-policy h1, .gdpr h1, .cookie-policy h1, .terms-of-use h1 {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2em;
  margin-bottom: 18px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.2em; }

p, ul, ol, li {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 1em;
  margin-bottom: 8px;
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}
a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-primary);
}

/* === BUTTONS === */
button, .button {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  background: var(--gradient-accent);
  color: var(--color-primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 12px var(--color-shadow);
  font-size: 1em;
  letter-spacing: 0.03em;
}
button:hover, .button:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 6px 24px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.03);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: var(--color-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  z-index: 99999;
  box-shadow: 0 -4px 24px var(--color-shadow-strong);
  border-top-left-radius: 32px 16px;
  border-top-right-radius: 32px 16px;
  animation: cookieBannerIn 0.7s cubic-bezier(.77,.2,.05,1.0);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1em;
  color: var(--color-light);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 1em;
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .accept:hover {
  background: var(--color-light);
  color: var(--color-accent);
}
.cookie-banner .reject {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .reject:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-banner .settings:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(44,62,79,0.85);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.4s cubic-bezier(.77,.2,.05,1.0);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-light);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px var(--color-shadow-strong);
  padding: 40px 32px 32px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalIn 0.5s cubic-bezier(.77,.2,.05,1.0);
  position: relative;
}
@keyframes modalIn {
  from { transform: scale(0.8) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--color-primary);
}
.cookie-modal .cookie-toggle {
  width: 44px;
  height: 24px;
  background: var(--color-secondary);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  margin-left: 8px;
}
.cookie-modal .cookie-toggle input {
  display: none;
}
.cookie-modal .cookie-toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  transition: left var(--transition), background var(--transition);
}
.cookie-modal .cookie-toggle input:checked + span {
  left: 22px;
  background: var(--color-primary);
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.6em;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.cookie-modal .close-modal:hover {
  color: var(--color-primary);
  transform: scale(1.1) rotate(8deg);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  .container {
    max-width: 900px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .features .feature-grid,
  .services .service-list,
  .project-gallery {
    justify-content: center;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 64px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    padding: 10px 18px;
    font-size: 1em;
    margin-left: 0;
  }
  .hero-section {
    padding: 48px 0 32px 0;
    border-bottom-left-radius: 40px 20px;
    border-bottom-right-radius: 40px 20px;
  }
  .hero-section h1 {
    font-size: 1.5em;
  }
  .features .feature-grid,
  .services .service-list,
  .project-gallery {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .feature-item, .service-item, .project-item {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card {
    padding: 14px;
    gap: 12px;
  }
  .faq-item, .contact-details, .map, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
    padding: 18px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 10px;
  }
  .cookie-modal {
    padding: 24px 8px 18px 8px;
    min-width: 0;
    max-width: 98vw;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .footer-logo img {
    height: 32px;
  }
  .cta {
    padding: 18px 4px;
    border-radius: var(--radius-md);
  }
}

/* === ARTISTIC DECORATIVE ELEMENTS === */
.hero-section:before {
  content: '';
  position: absolute;
  top: -60px; left: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle at 60% 40%, #F6B336 0%, transparent 70%);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.hero-section:after {
  content: '';
  position: absolute;
  bottom: -60px; right: -80px;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 40% 60%, #2C3E4F 0%, transparent 70%);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

/* === MICRO-INTERACTIONS === */
.card, .feature-item, .service-item, .project-item, .faq-item {
  will-change: transform, box-shadow;
}
.cta-button, button, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal .close-modal {
  will-change: background, color, transform;
}

/* === PRINT STYLES === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
}
