:root {
  --pico-primary: #2c3d49;
  --pico-primary-background: #2c3d49;
  --pico-primary-hover: #061d2b;
  --pico-primary-hover-background: #061d2b;
  --pico-background-color: #ecf3f8;
  --pico-color: #091319;
  --pico-secondary: #59656e;
  --pico-font-family: 'Source Sans 3', sans-serif;
  --pico-border-radius: 16px;
  --pico-spacing: 1rem;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Source Serif 4', serif; }

html {
  scroll-behavior: smooth;
}

body {
  background: #ecf3f8;
  color: #091319;
}

header.site-header {
  background: #ecf3f8;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(89, 101, 110, 0.18);
}

nav.container ul li strong,
nav.container a[role="button"] {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

nav.container img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

nav.container a {
  color: #091319;
  text-decoration: none;
  transition: transform 160ms ease, color 160ms ease;
}

nav.container a:hover {
  color: #2c3d49;
  transform: translateY(-1px);
}

main.container {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

section {
  padding: 2.5rem 0;
  background: #ecf3f8;
}

.section-rule {
  width: 60%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(89, 101, 110, 0.45);
}

.curve-divider {
  display: block;
  width: 100%;
  height: 48px;
  color: #d7e3eb;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: end;
}

.hero-visual img,
.about-image img,
.offer-image img,
.contact-card iframe {
  width: 100%;
  border-radius: 24px;
}

.hero-visual img,
.about-image img,
.offer-image img {
  min-height: 360px;
  object-fit: cover;
}

.hero-card {
  background: #f8f8f8;
  padding: 2rem;
  margin-right: -4rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-radius: 16px;
}

.hero-card p {
  color: #4b575f;
  max-width: 34rem;
}

.hero-card h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

button,
a[role="button"],
input[type="submit"] {
  border-radius: 9999px;
  box-shadow: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

button:hover,
a[role="button"]:hover,
input[type="submit"]:hover {
  transform: scale(1.02);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

article {
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  background: #f8f8f8;
}

article h3,
article h4 {
  margin-bottom: 0.5rem;
}

.stats-strip article {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c3d49;
}

.service-list,
.contact-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li,
.contact-list li,
.footer-list li {
  margin-bottom: 0.75rem;
}

.service-list li::before,
.contact-list li::before {
  content: '↗';
  color: #b78700;
  margin-right: 0.5rem;
}

input,
textarea,
select {
  border-radius: 4px;
}

footer {
  background: #f8f8f8;
  padding: 3rem 0;
  border-top: 1px solid rgba(89, 101, 110, 0.18);
}

footer h3,
footer h4 {
  margin-bottom: 0.75rem;
}

footer a {
  color: #091319;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
  display: inline-block;
}

footer a:hover {
  color: #2c3d49;
  transform: translateX(2px);
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #f8f8f8;
  border: 1px solid rgba(89, 101, 110, 0.25);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 1rem 1.25rem;
  z-index: 50;
}

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

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.page-intro h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1;
}

.legal main.container {
  max-width: 860px;
}

@media (max-width: 900px) {
  .hero-wrap,
  .offer-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-right: 0;
    margin-bottom: -2rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }
}
