/* =========================================
   VARIABLES & THEMING (PREMIUM NOBLE CORPORATE)
   ========================================= */
:root {
  /* Colors - High-End Oxford Blue & Gold/Champagne */
  --bg-main: #ffffff;
  --bg-light: #fafafa; /* Very subtle off-white for contrast */
  --bg-deep: #050b14;  /* Extremely deep navy/black */
  --bg-darker: #02050a;
  
  --text-main: #2b3a4a; /* Elegant dark slate for readable text */
  --text-dark: #0a111a; /* Almost black for headings */
  --text-light: #f8f9fa;
  --text-muted: #6c757d;
  
  --primary-color: #0d1f33; /* Oxford Blue */
  --primary-hover: #172f4a;
  
  --accent-color: #c5a059;  /* Elegant Gold */
  --accent-hover: #a68442;
  --accent-light: rgba(197, 160, 89, 0.1);
  
  --border-color: #eaeaea; /* Very soft border */
  --border-gold: rgba(197, 160, 89, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1.0625rem; /* Slightly larger body text for luxury feel */
  --text-lg: 1.1875rem;
  --text-xl: 1.375rem;
  --text-2xl: clamp(1.5rem, 4vw, 2.25rem);
  --text-3xl: clamp(2rem, 5vw, 2.75rem);
  --text-4xl: clamp(2.5rem, 6vw, 3.75rem);
  --text-5xl: clamp(3rem, 8vw, 5rem);

  /* Spacing */
  --section-padding: clamp(100px, 15vw, 160px); /* Generous whitespace */
  --container-width: 1280px;
  
  /* Utilities */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px; /* Sharper, more corporate corners instead of round */
  
  --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* =========================================
   RESETS & BASE
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.15;
  font-weight: 400; /* Lighter headings for a more editorial/noble look */
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.bg-light { background-color: var(--bg-light); border-top: 1px solid var(--border-color); }
.bg-deep { background-color: var(--bg-deep); color: var(--text-light); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background-color: var(--text-main);
  color: white;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
.btn-outline-light:hover {
  background-color: white;
  color: var(--bg-deep);
}

.btn-lg {
  padding: 18px 42px;
  font-size: var(--text-base);
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.5s ease, padding 0.5s ease, border-bottom 0.5s ease;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95); /* Pure black */
  backdrop-filter: blur(12px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Light border */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo-img {
  height: 75px; /* Increased logo height */
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1); /* Ensure logo is always white */
}

.header.scrolled .logo-img {
  height: 60px;
}

.nav-menu ul {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  transition: color 0.3s ease;
}

/* Inherits white text */

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px; /* Thinner underline */
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  transition: width 0.4s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: white;
}
.header.scrolled .nav-menu a:hover {
  color: white;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  width: 100%;
  height: 1px;
  background-color: white;
  transition: var(--transition);
  transform-origin: left center;
}
.header.scrolled .menu-toggle span,
.header.open .menu-toggle span {
  background-color: white;
}

.header.open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
    width: 28px;
}
.header.open .menu-toggle span:nth-child(2) {
    opacity: 0;
}
.header.open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
    width: 28px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-deep) url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  color: white;
  padding-top: 100px;
}

/* Enhanced gradient overlay for a luxurious, deep vignette feel */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, rgba(5, 11, 20, 0.92) 0%, rgba(5, 11, 20, 0.8) 50%, rgba(13, 31, 51, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: var(--text-5xl);
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

/* Soft gold accent inside title */
.hero-title .highlight {
  color: var(--accent-color);
  font-style: italic; /* Classic touch for Playfair */
}

.hero-description {
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3.5rem;
  max-width: 700px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =========================================
   TRUST ELEMENTS BAND (CLEANER, MORE PREMIUM)
   ========================================= */
.trust-section {
  background-color: #fcfcfc;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

/* Small aesthetic line */
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--accent-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
  justify-content: center;
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 12px;
}

.trust-item .badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
}

.trust-item p.trust-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--text-muted);
}

.badge-link {
    display: block;
    width: 100%;
    max-width: 250px; /* Keep them uniform */
}

.trust-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  height: 120px;
  width: 100%;
}

/* Custom styles for the agenda image badge */
.agenda-badge {
    background: transparent;
    border: none;
    padding: 0;
    height: 100px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.agenda-link:hover .agenda-badge {
    /* Removed scale effect as requested */
}

/* Custom styles for the provenexpert image */
.proven-badge {
    background: transparent;
    border: none;
    padding: 0;
    height: 110px; /* Slightly taller to match visual weight */
    object-fit: contain;
    border-radius: 50%; /* Circular cut as requested */
    mix-blend-mode: multiply; /* Magically removes the solid white background on the image */
    transition: transform 0.4s ease;
}
.proven-link:hover .proven-badge {
    /* Removed scale effect as requested */
}

.trust-badge:not(.agenda-badge):not(.proven-badge):hover {
  /* Removed transform and shadow */
  border-color: rgba(197, 160, 89, 0.2);
}

/* Custom styles for the Google Review badge */
/* Custom styles for the Google Review badge */
.google-badge {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    height: 110px !important; /* Match other items' height */
    justify-content: center;
    gap: 0;
}
.google-logo {
    height: 38px; /* Increased logo size */
    width: auto;
    margin-bottom: 10px;
}
.google-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}
.google-stars svg {
    width: 24px; /* Increased star size */
    height: 24px;
}
.google-text {
    font-family: var(--font-body);
    font-size: 15px; /* Slightly larger text */
    color: var(--text-main);
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--accent-color);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
}

/* Small visual lines next to the badge */
.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--accent-color);
}
.section-badge::before { right: 100%; margin-right: 15px; }
.section-badge::after { left: 100%; margin-left: 15px; }

.section-title {
  font-size: var(--text-4xl);
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   SERVICES / LEISTUNGEN GRID (PREMIUM)
   ========================================= */
.services-section {
    background-color: var(--bg-main);
    padding-bottom: 60px; /* Reduces space at the bottom of the section */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  transition: background-color 0.4s ease, border-color 0.4s ease;
  position: relative;
  z-index: 1;
}

/* Subtle background shift instead of shadow */
.service-card:hover {
  background-color: var(--bg-light);
  border-color: var(--accent-light);
}

/* Maintain the elegant top accent line */
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  transform-origin: left;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent-color);
  display: block; /* Removed the boxed background to keep it elegant and minimal */
}

.service-title {
  font-size: var(--text-xl);
  margin-bottom: 20px;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: var(--text-base);
  line-height: 1.7;
}

.service-list {
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.service-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: var(--text-sm);
  color: var(--text-main);
}

/* Elegant custom checkmark */
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Legal Notice in Services */
.legal-notice {
    margin-top: 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* =========================================
   BANNER SECTION
   ========================================= */
.banner-section {
    position: relative;
    padding: 60px 0;
    background: var(--bg-deep); /* Removed image, using deep solid color for premium corporate feel */
    color: white;
}

/* A subtle pattern or gradient instead of chaotic photo */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h2 {
    color: white;
    font-size: var(--text-4xl);
    margin-bottom: 24px;
}

.banner-content p {
    font-size: var(--text-xl);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.banner-content .btn {
    margin-top: 40px;
}

/* =========================================
   FAQ ACCORDION (MINIMALIST & ELEGANT)
   ========================================= */
.faq-section {
  /* Removed max-width to allow the section to be full width */
  padding-bottom: 80px; /* Reduced bottom padding to bring the map closer (previously was default, then 40px, now 80px) */
}

.accordion {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: transparent;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border-color);
}

.accordion-header {
  width: 100%;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.accordion-header:hover {
  color: var(--accent-color);
}

.accordion-header .icon {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  color: var(--accent-color);
  margin-left: 20px;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(45deg);
}

.accordion-item.active .accordion-header {
    color: var(--accent-color);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1), padding 0.5s ease;
}

.accordion-content p {
  padding: 0 40px 30px 0; /* Left padding removed to align with text */
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: var(--text-base);
}

/* =========================================
   FOOTER (RICH & STRUCTURED)
   ========================================= */
.footer {
  background-color: var(--bg-deep); /* Very deep dark */
  color: rgba(255, 255, 255, 0.65);
  padding: 40px 0 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col { grid-column: span 5; }
.hours-col { grid-column: span 4; }
.links-col { grid-column: span 3; justify-self: end; }

/* Relocated map styling */
.map-section {
    width: 100%;
    line-height: 0; /* Remove bottom gap */
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
  font-weight: 400; /* Classy lightweight */
}

/* Use actual image logo if we inject it, else text */
.footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-heading {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-description {
  margin-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact-details p,
.hours-list li {
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 10px;
}

.footer a {
  color: rgba(255, 255, 255, 0.65);
}

.footer a:hover {
  color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-agenda-badge {
    max-width: 140px;
    display: block;
    border-radius: 4px; /* Ensure elegant rendering */
}

.map-wrapper {
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0.85; /* Blend map slightly with dark theme */
    transition: opacity 0.3s ease;
}
.map-wrapper:hover {
    opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: var(--bg-darker);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.3);
}

.footer-legals {
  opacity: 0.6;
}

/* =========================================
   COOKIE BANNER (SLIM & PROFESSIONAL)
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0d1f33; /* Dark background */
  color: white;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

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

.cookie-content p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  margin: 0;
}
.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: var(--text-xs);
}
.cookie-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: white;
}
.cookie-buttons .btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: white;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .brand-col { grid-column: span 12; }
  .hours-col { grid-column: span 6; }
  .links-col { grid-column: span 6; }
  
  .container {
      padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .header {
    background-color: rgba(0, 0, 0, 0.98); /* Pure black for solid mobile header */
    padding: 20px 0;
  }
  
  .hero {
    padding-top: 140px; /* Offset for solid header on mobile */
    padding-bottom: 80px;
    min-height: unset;
    align-items: flex-start;
  }
  
  /* Make logo visible on mobile always */
  body:not(.scrolled-body) .header .logo-img {
      filter: brightness(0) invert(1);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.98); /* Changed from --bg-deep to pure black */
    padding: 30px;
    transform: translateY(-150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .header.open .nav-menu {
    transform: translateY(0);
  }
  
  .nav-menu ul {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .nav-menu a {
      font-size: var(--text-base);
  }
  
  .hidden-mobile {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .trust-badge {
      max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 3rem);
    margin-bottom: 1.2rem;
  }

  .hero-description {
    font-size: var(--text-base);
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
  }

  /* Fix for inner borders on mobile for services grid */
  .services-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }

  .hours-col, .links-col {
    grid-column: span 12;
    justify-self: start;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
  }
  .cookie-buttons .btn {
    flex: 1;
  }
  
  .footer {
      padding: 60px 0 0;
  }
}
