/*
 * Kanzlei Wollweber - Main Styles
 * Attorney Website - Wuppertal, Germany
 */

:root{
  /* Light Theme - Warm & Elegant: Sand & Beige */
  --bg-light: #F4F2E8;
  --bg-white: #FAF8F5;
  --light: #F7F5EF;
  --text-dark:#1A2332;
  --text:#1A2332;
  --text-secondary:#4A5563;
  --muted:#64748B;
  --muted-dark:#475569;
  --gold:#C9A961;
  --brand-blue: #1E4B8B;
  --brand-blue-hover: #163A6C;
  --link-blue: #2563EB;
  --border-dark: rgba(15,23,42,.10);
  --border-light: #E5E7EB;
  --shadow-soft: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.12);
  --radius: 18px;
  --max: 1120px;
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%; margin:0; padding:0}

body{
  margin:0;
  padding:0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg-light);
  background-attachment: fixed;
  line-height:1.55;
  min-height: 100vh;
}

a{color:inherit; text-decoration:none}
a:hover{color: var(--link-blue)}

.container{max-width: var(--max); margin:0 auto; padding: 0 20px}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 20px;
  font-size: 0.9rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  color: #666;
}

.breadcrumb a {
  color: #2563eb;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: #333;
  font-weight: 500;
}

/* ===== TOPBAR (REMOVED) ===== */
/* Topbar has been removed - contact info moved to footer */
/*
.topbar{
  background: var(--light);
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

.topbar .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
  color: var(--muted-dark);
  font-size: 13px;
  flex-wrap: wrap;
}

.mini{display:flex; gap:16px; flex-wrap:wrap}
.mini a{color: var(--muted-dark)}
.mini a:hover{color: var(--text-dark)}
*/

/* ===== LANGUAGE SWITCHER (Now in Navigation) ===== */
.lang{
  display:flex;
  gap:10px;
  align-items:center;
  margin-left: auto; /* Push to the right on desktop */
}

.lang a{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid var(--border-light);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--muted-dark);
  background: var(--bg-white);
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
}

.lang a:hover{
  border-color: #0f172a;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lang a[aria-current="page"]{
  border-color: #0f172a;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 2px 8px rgba(15,23,42,.25);
  font-weight: 800;
}

/* ===== HEADER ===== */
.header{
  position: sticky;
  top:0;
  z-index:50;
  background: var(--light);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  margin: 0;
}

.header .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 260px;
  transition: opacity 0.2s ease;
}

.brand:hover{
  opacity: 0.85;
}

.logo{
  width: 85px; height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand .name{display:flex; flex-direction:column; gap:2px}
.brand .name strong{color: var(--text-dark); font-size: 16px}
.brand .name span{color: var(--muted-dark); font-size: 13px}

.nav{display:flex; gap: 6px; align-items:center}

.nav-item{
  position: relative;
}

.nav-link{
  color: var(--text-dark);
  opacity: .80;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.nav-link:hover{
  opacity:1;
  background: rgba(15,23,42,.06);
}

.dropdown-arrow{
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] .dropdown-arrow{
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(244,246,248,.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 36px rgba(15,23,42,.20);
  display: none;
  min-width: 620px;
  z-index: 1000;
  pointer-events: auto;
}

.dropdown-menu.show{
  display: block;
  animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dropdown-column{
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
}

.dropdown-header{
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
  padding: 0;
}

.dropdown-link{
  color: var(--text-dark);
  font-size: 13px;
  padding: 8px 12px 8px 0;
  border-radius: 10px;
  transition: background 0.2s ease;
  display: block;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.dropdown-link:hover{
  background: rgba(15,23,42,.08);
  color: var(--text-dark);
}

/* CTA Button - Conversion Optimized */
.btn-cta{
  background: #0f172a;
  color: #fff !important;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 4px 14px rgba(15,23,42,.35);
  transition: all 0.2s ease;
  opacity: 1 !important;
  margin-left: 8px;
}

.btn-cta:hover{
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,23,42,.5);
}

.menu-btn{
  display:none !important; /* Force hide on desktop */
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

/* Show menu button only on tablet/mobile */
@media (max-width: 920px) {
  .menu-btn{
    display:inline-flex !important;
  }
}

/* ===== HERO ===== */
.hero{
  padding: 48px 0 56px;
  margin: 0;
  background:
    radial-gradient(900px 420px at 18% 20%, rgba(201,162,76,.06), transparent 60%),
    radial-gradient(1100px 520px at 82% 18%, rgba(30,75,139,.08), transparent 62%),
    var(--bg-light);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: stretch;
}

/* Hero Content Column - Flexbox structure */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.hero-text {
  flex: 0 1 auto;
}

.kicker{
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  font-weight: 600;
}

/* ===== SEO-OPTIMIZED HERO HEADINGS ===== */
/* Visual reversal: H1 styled small (SEO keyword), H2 styled large (user-facing) */
.hero-h1-as-kicker {
  /* Styles H1 to look like .kicker (small, gold, uppercase) */
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--sans);
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.hero-h2-as-title {
  /* Styles H2 to look like h1 (large, serif) */
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  margin: 14px 0 18px;
  color: var(--text-dark);
}

h1{
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  margin: 14px 0 18px;
  color: var(--text-dark);
}

.lead{
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
  max-width: 65ch;
}

.actions{display:flex; gap: 12px; flex-wrap:wrap; margin-top: 20px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover{
  background: var(--light);
  transform: translateY(-1px);
}

.btn.primary{
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(30,75,139,.15);
}

.btn.primary:hover{
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn.light{
  background: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--border-light);
}

.btn.light:hover{
  background: var(--light);
  border-color: var(--muted);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 13px;
  background: rgba(255,255,255,.8);
}

/* Hero Badges Container */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  align-items: flex-start;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Individual Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Badge Icon */
.hero-badge .badge-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Badge Text */
.hero-badge .badge-text {
  line-height: 1.3;
}

/* Highlighted Badge (Parlo italiano) */
.hero-badge-highlight {
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  border-color: rgba(15, 23, 42, 0.5);
  font-weight: 600;
}

.hero-badge-highlight:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(15, 23, 42, 0.7);
}

.hero-badge-highlight .badge-icon {
  opacity: 1;
}

.hero-media{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow:hidden;
  background: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  max-width: 520px;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-left: auto;
  margin-right: 0;
}

.hero-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: center top;
}

.hero-media picture{
  display: block;
  height: 100%;
  width: 100%;
}

/* Google Rating Badge */
.google-rating-badge{
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg-white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 40px);
  min-width: 200px;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.google-rating-badge:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.1);
}

.google-logo{
  flex-shrink: 0;
  display: block;
}

.google-text{
  font-weight: 700;
  font-size: 18px;
  color: #0f172a;
  flex-shrink: 0;
  line-height: 1;
}

.stars{
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  flex-shrink: 0;
}

.rating-text{
  margin: 0;
  font-size: 14px;
  color: #0f172a;
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
  flex: 1 1 auto;
  min-width: 150px;
  max-width: 100%;
}

/* ===== SECTIONS ===== */
.section{
  padding: 56px 0 56px;
  background: var(--bg-light);
  margin: 0;
}

.section h2{
  font-family: var(--serif);
  font-size: 38px;
  margin: 0 0 16px;
  color: var(--text-dark);
  line-height: 1.2;
}

.section p.sub{
  margin:0 0 16px;
  color: var(--text-secondary);
  max-width: 70ch;
}

.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px}

/* Specific grid for "Why Us" section - 4 columns on desktop */
.grid-why-us {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Responsive breakpoints for Why Us grid */
@media (max-width: 1023px) {
  .grid-why-us {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 639px) {
  .grid-why-us {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.card{
  border-radius: var(--radius);
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--muted);
}

.card h3{
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.card p{
  margin:0;
  color: var(--text-secondary);
  font-size: 14px;
}

.card a.inline{
  display:inline-block;
  margin-top: 10px;
  color: var(--link-blue);
  font-weight: 800;
  font-size: 13px;
}

.notice{
  margin-top: 18px;
  margin-bottom: 0;
  background: var(--light);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
}

.notice strong{color: var(--text-dark)}

.split{display:grid; grid-template-columns: 1fr 380px; gap: 24px; align-items:start}

/* Sticky sidebar for split layout */
.split > div:last-child {
  position: sticky;
  top: 90px;
}

/* ===== FOOTER ===== */
.footer{
  margin: 0;
  background: var(--light);
  border-top: 1px solid var(--border-light);
  padding: 48px 0 32px;
  color: var(--text-secondary);
}

/* Footer Branding */
.footer-branding{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
  text-align: center;
}

.footer-logo{
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: var(--text-dark);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.footer-branding h3{
  color: var(--text-dark);
  font-size: 20px;
  margin: 0;
  font-family: var(--serif);
}

.footer-branding p{
  color: var(--text-secondary);
  font-size: 14px;
  margin: 4px 0 0;
}

/* Footer Main Grid */
.footer-main{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 24px 0;
}

.footer-col{
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

.footer-col strong{
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.footer-link{
  color: var(--text-secondary);
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.2s ease;
  display: block;
}

.footer-link:hover{
  color: var(--brand-blue);
}

.footer-address,
.footer-contact-item,
.footer-hours{
  color: var(--text-secondary);
  font-size: 13px;
  margin: 0 0 8px;
  line-height: 1.6;
}

.footer-contact-item a{
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-contact-item a:hover{
  color: var(--brand-blue);
}

/* Footer Button */
.btn-footer{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-footer:hover{
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

/* Footer Multi-Column */
.footer-col-multi{
  gap: 20px;
}

.footer-sub-section{
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  text-align: left;
}

.footer-sub-section strong{
  margin-bottom: 4px;
}

/* Footer Copyright */
.footer-copyright{
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0 0;
}

/* Separator */
.sep{
  border: 0;
  border-top: 1px solid var(--border-light);
  margin: 20px 0;
}

/* Legacy small class */
.small{
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== FORMS ===== */
.form{display:grid; gap: 12px}

.field label{
  display:block;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

.field input, .field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: 14px;
  font-family: var(--sans);
}

.field input::placeholder, .field textarea::placeholder{
  color: var(--muted);
}

.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30,75,139,.15);
  background: var(--bg-white);
}

.field textarea{min-height: 140px; resize: vertical}

.hint{font-size: 13px; color: var(--text-secondary)}

/* Forms in light containers */
.service-content .field label{
  color: var(--text-dark);
  font-weight: 600;
}

.service-content .field input,
.service-content .field textarea{
  border: 1.5px solid rgba(15,23,42,.20);
  background: var(--bg-white);
  color: var(--text-dark);
}

.service-content .field input::placeholder,
.service-content .field textarea::placeholder{
  color: rgba(15,23,42,.45);
}

.service-content .field input:focus,
.service-content .field textarea:focus{
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(30,75,139,.15);
  background: var(--bg-white);
}

.service-content .hint{
  color: var(--text-secondary);
}

.service-content .hint a{
  color: var(--link-blue);
  font-weight: 600;
}

.service-content .hint a:hover{
  color: var(--brand-blue);
  text-decoration: underline;
}

.service-content .btn.primary{
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
  font-weight: 800;
}

.service-content .btn.primary:hover{
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Contact links styling */
.contact-link{
  color: var(--link-blue);
  font-weight: 600;
}

.contact-link:hover{
  color: var(--brand-blue);
  text-decoration: underline;
}

/* ===== SERVICE PAGES ===== */
.service-header{
  padding: 28px 0 18px;
  text-align: center;
}

.service-header h1{
  color: var(--text-dark);
  margin-bottom: 14px;
}

.service-header .lead{
  margin: 0 auto;
}

.service-content{
  background: rgba(255,255,255,.92);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
  color: var(--text-dark);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-soft);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-content h2{
  font-family: var(--serif);
  color: var(--text-dark);
  font-size: 34px;
  margin: 0 0 18px;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-content h3{
  font-family: var(--serif);
  color: var(--text-dark);
  font-size: 20px;
  margin: 24px 0 12px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.service-content ul{
  margin: 12px 0;
  padding-left: 24px;
}

.service-content li{
  margin: 8px 0;
  color: rgba(15,23,42,.80);
  line-height: 1.6;
}

.service-cta{
  background: linear-gradient(135deg, rgba(30,75,139,.08), rgba(201,162,76,.06));
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 32px 0;
  border: 1px solid var(--border-light);
}

.split .service-cta{
  margin-top: 20px;
}

.service-cta h3{
  font-family: var(--serif);
  color: var(--text-dark);
  margin: 0 0 12px;
}

.service-cta p{
  color: var(--text-secondary);
  margin: 0 0 16px;
}

/* ===== RESPONSIVE IMAGES & MAPS ===== */

/* Responsive Map Container */
.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
}

/* 16:9 Aspect Ratio Container */
.map-container.ratio-16-9 {
  padding-bottom: 56.25%; /* 9/16 = 0.5625 */
  height: 0;
}

/* 4:3 Aspect Ratio Container */
.map-container.ratio-4-3 {
  padding-bottom: 75%; /* 3/4 = 0.75 */
  height: 0;
}

/* Default aspect ratio */
.map-container:not(.ratio-16-9):not(.ratio-4-3) {
  padding-bottom: 56.25%; /* Default to 16:9 */
  height: 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Image Improvements */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure images in hero maintain aspect ratio */
.hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* Logo images should maintain aspect ratio */
.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Lazy loading placeholder style */
img[loading="lazy"] {
  background: linear-gradient(135deg, rgba(30,75,139,.04), rgba(201,162,76,.03));
}

/* ===== MOBILE UTILITIES ===== */
/* Touch target minimum size 48x48px per WCAG guidelines and mobile best practices */
.touch-target{
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Ensure all interactive elements meet touch target size */
.cta-button,
.btn-cta,
.nav-link,
button,
a.button {
  min-height: 48px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Scroll lock for mobile menu open state */
body.menu-open{
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile tap spacing */
.tap-spacing-sm{
  margin: 8px 0;
}

.tap-spacing-md{
  margin: 12px 0;
}

/* Visible focus states for accessibility */
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}

  /* Reset hero column flexbox on mobile */
  .hero-content {
    display: block;
  }

  /* Reset badges margin on mobile */
  .hero-badges {
    margin-top: 20px;
    padding-top: 20px;
  }

  /* Reset hero media sizing on mobile */
  .hero-media {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}

  /* FOOTER MOBILE: Stack columns */
  .footer-main{
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col-multi{
    grid-column: 1 / -1;
  }

  .footer-branding{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Disable sticky on mobile */
  .split > div:last-child {
    position: static;
  }

  /* HEADER MOBILE: Hide nav by default */
  .nav{display:none}

  /* HEADER MOBILE: Improved hamburger menu */
  .nav.open{
    display:flex;
    position:absolute;
    right:20px;
    left:20px;
    top: 74px;
    background: rgba(244,246,248,.98);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(15,23,42,.15);
    z-index: 100;
  }

  /* Mobile Navigation Items */
  .nav.open .nav-item{
    width: 100%;
  }

  .nav.open .nav-link{
    min-height: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
  }

  /* Mobile Dropdown - Show as expanded list */
  .nav.open .dropdown-menu{
    position: static;
    transform: none;
    min-width: auto;
    margin-top: 8px;
    padding: 8px;
    display: none;
  }

  .nav.open .dropdown-menu.show{
    display: block;
  }

  .nav.open .dropdown-grid{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav.open .dropdown-column{
    gap: 2px;
  }

  .nav.open .dropdown-header{
    font-size: 10px;
    margin-bottom: 4px;
    padding: 8px 12px 4px;
  }

  .nav.open .dropdown-link{
    font-size: 13px;
    padding: 10px 12px;
  }

  /* Mobile CTA Button */
  .nav.open .btn-cta{
    width: 100%;
    margin: 8px 0 0 0;
    justify-content: center;
    padding: 14px 18px;
    font-size: 14px;
  }

  /* Mobile Language Switcher - Show at bottom of menu */
  .nav.open .lang{
    width: 100%;
    margin: 12px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    justify-content: center;
    gap: 12px;
  }

  .nav.open .lang a{
    width: 48px;
    height: 48px;
    font-size: 14px;
    font-weight: 700;
  }

  .service-content{
    padding: 24px 20px;
  }

  /* FORMS: Larger touch targets on tablets */
  .btn{
    min-height: 44px;
    padding: 12px 20px;
  }
}

/* Tablet: Google Rating Badge optimization */
@media (max-width: 920px) and (min-width: 641px) {
  .google-rating-badge {
    padding: 12px 16px;
    gap: 7px;
  }

  .rating-text {
    font-size: 13px;
    min-width: 120px;
  }
}

@media (max-width: 640px){
  /* HEADER MOBILE: Topbar removed globally */
  /* .topbar styles removed - no longer needed */

  /* HEADER MOBILE: Header sticky position */
  .header{
    top: 0;
  }

  /* Logo and Brand adjustments for mobile */
  .logo{
    width: 50px;
    height: 50px;
  }

  .brand .name strong{
    font-size: 14px;
  }

  .brand .name span{
    font-size: 12px;
  }

  /* Typography adjustments */
  h1{
    font-size: 32px;
  }

  .hero{
    padding: 24px 0 20px;
  }

  /* Google Rating Badge Mobile */
  .google-rating-badge{
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .google-text{
    font-size: 15px;
  }

  .stars{
    font-size: 16px;
  }

  .rating-text{
    font-size: 12px;
    width: 100%;
    white-space: normal;
    line-height: 1.4;
    min-width: unset;
  }

  .section{
    padding: 18px 0 24px;
  }

  /* FOOTER MOBILE: Single column on small screens */
  .footer-main{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col-multi{
    grid-column: 1;
  }

  .footer-branding{
    text-align: center;
  }

  /* FOOTER MOBILE: Larger touch targets */
  .footer-link{
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 0;
  }

  .btn-footer{
    width: 100%;
    min-height: 44px;
    padding: 12px 20px;
  }

  /* FORMS/CTAs: Full-width buttons on mobile */
  .btn{
    width: 100%;
    min-height: 44px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .actions{
    flex-direction: column;
    width: 100%;
  }

  .actions .btn{
    width: 100%;
  }

  /* Form inputs full width with proper touch targets */
  .field input, .field textarea{
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Mobile container padding adjustment */
  .container{
    padding: 0 16px;
  }

  /* Breadcrumb mobile padding alignment */
  .breadcrumb{
    padding: 1rem 16px;
  }

  /* Cards spacing for better mobile UX */
  .grid{
    gap: 12px;
  }

  .card{
    padding: 16px;
  }

  /* Service content mobile optimization */
  .service-content{
    padding: 20px 16px;
    margin: 16px 0;
  }

  /* Hero media full width on mobile */
  .hero-media{
    max-width: 100%;
  }

  /* Pill component responsive */
  .pill{
    font-size: 12px;
    padding: 10px 12px;
    text-align: center;
  }

  /* Hero Badges responsive */
  .hero-badges {
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 10px;
    flex: 1 1 auto;
    min-width: calc(50% - 4px);
  }

  .hero-badge .badge-icon {
    font-size: 0.95rem;
  }

  .hero-badge .badge-text {
    font-size: 0.75rem;
  }

  /* Split layout adjustments */
  .split{
    gap: 16px;
  }

  /* Mini links touch optimization */
  .mini a{
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Topbar styles removed - no longer needed */
  /*
  .topbar .inner{
    gap: 12px;
    padding: 12px 0;
  }

  .mini{
    flex: 1 1 auto;
    min-width: 200px;
  }

  .lang{
    flex: 0 0 auto;
  }
  */
}

/* ===== i18n LOADING STATES ===== */
body.i18n-loading {
  cursor: wait;
}

body.i18n-transitioning * {
  transition: opacity 0.2s ease-in-out;
}

body.i18n-loading [data-i18n],
body.i18n-loading [data-i18n-placeholder] {
  opacity: 0.6;
}

/* ===== REVIEWS SECTION - HORIZONTAL CAROUSEL ===== */
.reviews-section{
  padding: 64px 0;
  margin: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.reviews-header{
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2{
  font-family: var(--serif);
  font-size: 42px;
  margin: 0 0 24px;
  color: var(--text-dark);
  line-height: 1.2;
}

.rating-summary{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stars{
  display: inline-flex;
  gap: 4px;
  font-size: 24px;
  line-height: 1;
}

.star{
  color: #E5E7EB;
}

.star.filled{
  color: var(--gold);
  transition: transform 0.2s ease;
}

/* Only animate stars on card hover - performance optimization */
.review-card:hover .star.filled{
  animation: starPulse 0.6s ease-in-out;
}

@keyframes starPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.15); }
}

.rating-text{
  color: var(--text-secondary);
  font-size: 14px;
}

.rating-text strong{
  color: var(--text-dark);
  font-size: 18px;
  margin-right: 4px;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper{
  position: relative;
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 0 60px;
}

/* Swiper Carousel - Replacing custom carousel */
.reviews-swiper{
  overflow: hidden;
  padding: 12px 0;
}

/* Swiper slide sizing */
.swiper-slide{
  width: auto;
  height: auto;
}

/* Review Cards */
.review-card{
  width: 100%;
  max-width: 450px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
              border-color 0.4s ease,
              transform 0.3s ease;
}

.review-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  border-color: var(--gold);
}

.review-header{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.reviewer-info{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.reviewer-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #D4AF74 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.reviewer-name{
  display: block;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
}

.review-date{
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.review-header .stars{
  font-size: 16px;
  flex-shrink: 0;
}

.review-text{
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Navigation Arrows */
.carousel-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  will-change: transform, background-color, border-color;
  padding: 0;
  overflow: visible;
}

.carousel-nav:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 6px 16px rgba(201, 169, 97, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active{
  transform: translateY(-50%) scale(0.95);
}

/* Disabled state - using CSS class instead of inline styles */
.carousel-nav.disabled{
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.carousel-nav-prev{
  left: 20px;
}

.carousel-nav-next{
  right: 20px;
}

.carousel-nav svg{
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.carousel-nav svg path{
  stroke: #0f172a !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  fill: none !important;
  transition: stroke 0.3s ease;
}

.carousel-nav:hover svg path{
  stroke: white !important;
}

.carousel-nav.disabled svg path{
  stroke: #94a3b8 !important;
}

/* Swiper navigation button overrides */
.swiper-button-prev,
.swiper-button-next{
  position: static;
  width: auto;
  height: auto;
  margin: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after{
  display: none;
}

.swiper-button-disabled{
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.reviews-cta{
  text-align: center;
  margin-top: 32px;
}

.reviews-cta .btn{
  min-width: 240px;
}

/* Tablet Responsive */
@media (max-width: 920px){
  .reviews-carousel-wrapper{
    padding: 0 50px;
  }

  .review-card{
    width: 100%;
    max-width: 400px;
  }

  .reviews-header h2{
    font-size: 28px;
  }

  .carousel-nav{
    width: 40px;
    height: 40px;
  }
}

/* Mobile Responsive */
@media (max-width: 640px){
  .reviews-section{
    padding: 40px 0;
  }

  .reviews-header{
    margin-bottom: 28px;
  }

  .reviews-header h2{
    font-size: 24px;
  }

  .stars{
    font-size: 20px;
  }

  .reviews-carousel-wrapper{
    padding: 0 16px;
  }

  .reviews-swiper{
    padding: 4px 0;
  }

  .review-card{
    width: 100%;
    max-width: 350px;
    padding: 20px;
    gap: 12px;
  }

  .review-header{
    flex-direction: column;
    gap: 12px;
  }

  .review-header .stars{
    align-self: flex-start;
  }

  .reviewer-avatar{
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  /* Hide navigation arrows on mobile, use swipe instead */
  .carousel-nav{
    display: none;
  }

  .reviews-cta{
    margin-top: 24px;
  }

  .reviews-cta .btn{
    min-width: auto;
    width: 100%;
  }
}

/* (Breadcrumb styles moved to line 49) */

/* ===== FAQ / DETAILS COMPONENT ===== */
details {
  background: #f8fafc;
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

summary {
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 0.5rem;
  transition: transform 0.2s;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  padding: 1rem 0 0 1.5rem;
  color: #475569;
}

/* ===== MOBILE CALL BUTTON ===== */
@media (max-width: 768px) {
  .mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #16a34a;
    color: white;
    padding: 16px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 24px;
    min-width: 60px;
    min-height: 60px;
  }

  .mobile-call-button:hover {
    background: #15803d;
    transform: scale(1.05);
  }
}

/* ===== TIMELINE COMPONENT ===== */
.timeline{
  position: relative;
  padding: 24px 0;
  margin: 32px 0 0;
}

/* Vertical line */
.timeline::before{
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,162,76,.2));
}

.timeline-item{
  position: relative;
  padding-left: 60px;
  margin-bottom: 36px;
}

.timeline-item:last-child{
  margin-bottom: 0;
}

.timeline-marker{
  position: absolute;
  left: 12px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,76,.1);
  z-index: 1;
}

.timeline-marker.active{
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,76,.2), 0 0 0 8px rgba(201,162,76,.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(201,162,76,.2), 0 0 0 8px rgba(201,162,76,.1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(201,162,76,.3), 0 0 0 12px rgba(201,162,76,.15);
  }
}

.timeline-content{
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-content:hover{
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.timeline-content h3{
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 6px;
}

.timeline-period{
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.timeline-content p{
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.timeline-content p:not(.timeline-period){
  margin-top: 8px;
}

/* Responsive Timeline */
@media (max-width: 640px){
  .timeline{
    padding: 16px 0;
    margin: 20px 0 0;
  }

  .timeline::before{
    left: 14px;
  }

  .timeline-item{
    padding-left: 44px;
    margin-bottom: 28px;
  }

  .timeline-marker{
    left: 6px;
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .timeline-content{
    padding: 16px;
  }

  .timeline-content h3{
    font-size: 16px;
  }

  .timeline-period{
    font-size: 12px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 920px;
  width: calc(100% - 40px);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(15, 23, 42, 0.25);
  z-index: 1001;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-banner-hidden {
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-text h3 {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.cookie-banner-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 8px;
}

.cookie-banner-link {
  color: var(--link-blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  transition: color 0.2s ease;
}

.cookie-banner-link:hover {
  color: var(--brand-blue);
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  min-width: 180px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold), #b89035);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.35);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #b89035, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.45);
}

.cookie-btn-accept:active {
  transform: translateY(0);
}

.cookie-btn-essential {
  background: var(--bg-white);
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(30, 75, 139, 0.15);
}

.cookie-btn-essential:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 75, 139, 0.25);
}

.cookie-btn-essential:active {
  transform: translateY(0);
}

.cookie-btn:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

.cookie-banner-link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 920px) {
  .cookie-banner {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .cookie-banner-actions {
    flex-direction: row;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 24px);
    border-radius: 14px;
  }

  .cookie-banner-content {
    padding: 18px;
    gap: 16px;
  }

  .cookie-banner-text h3 {
    font-size: 16px;
  }

  .cookie-banner-text p {
    font-size: 13px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.12);
  padding: 24px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: slideUp 0.3s forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.cookie-banner-hidden {
  transform: translateY(100%);
}

.cookie-banner-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-text h3 {
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.cookie-banner-text p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.cookie-banner-link {
  color: var(--link-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.cookie-banner-link:hover {
  border-bottom-color: var(--link-blue);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--sans);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cookie-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cookie-btn-accept {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

.cookie-btn-accept:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 75, 139, 0.3);
}

.cookie-btn-essential {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-light);
}

.cookie-btn-essential:hover {
  background: var(--light);
  border-color: var(--muted);
  transform: translateY(-2px);
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 0;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-banner-text h3 {
    font-size: 18px;
  }

  .cookie-banner-text p {
    font-size: 13px;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px 0;
  }

  .cookie-banner-content {
    gap: 16px;
  }

  .cookie-banner-text h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .cookie-banner-text p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .cookie-banner-actions {
    gap: 10px;
  }

  .cookie-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
}

/* ===== ABOUT US SECTIONS ===== */

/* About Header Grid - Über Uns Page */
.about-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.about-header-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-header-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-header-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* About Preview Grid - Homepage */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
  padding: 32px 0;
}

.about-preview-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-preview-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-preview-content .kicker {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.about-preview-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.about-preview-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.about-preview-content .actions {
  margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 920px) {
  .about-header-grid,
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-header-image,
  .about-preview-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-preview-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .about-header-grid,
  .about-preview-grid {
    gap: 24px;
  }

  .about-preview-content h2 {
    font-size: 24px;
  }

  .about-preview-content p {
    font-size: 15px;
  }

  .about-header-image,
  .about-preview-image {
    max-width: 100%;
  }
}
