:root {
  --radius-card: 16px;
  --radius-button: 0px;
  --radius-input: 4px;
  --radius-image: 24px;
  --shadow-card: 0 12px 32px rgba(0, 109, 175, 0.12), 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 4px 12px rgba(0, 109, 175, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 36px rgba(0, 109, 175, 0.14), 0 14px 34px rgba(0, 0, 0, 0.10);
  --inset-soft: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text-primary);
}

.font-display {
  font-family: var(--font-display);
}

.site-nav {
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(13, 24, 30, 0.34), rgba(13, 24, 30, 0.26));
}

.team-card,
.service-card,
.contact-card,
.info-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.team-card:hover,
.service-card:hover,
.contact-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--color-primary) 14%, white);
  color: var(--color-primary-dark);
}

.site-image {
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-card);
}

.btn-primary,
.btn-secondary,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  border-radius: var(--radius-button);
  border: none;
  box-shadow: var(--shadow-button), var(--inset-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 109, 175, 0.14), 0 6px 16px rgba(0, 0, 0, 0.08), var(--inset-soft);
}

input,
textarea,
select {
  border-radius: var(--radius-input);
  border: none;
  box-shadow: var(--inset-soft);
  background: var(--color-surface);
  color: var(--color-text-primary);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid color-mix(in srgb, var(--color-primary) 35%, white);
  outline-offset: 2px;
}

a {
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.link-underline:hover::after {
  transform: scaleX(1);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-image);
  box-shadow: var(--shadow-card);
}

@media (max-width: 767px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}