:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: var(--font-display);
}

a,
button {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

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

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

.section-tint {
  background: var(--color-surface);
}

.section-base {
  background: var(--color-background);
}

.logo-mark {
  border-radius: 24px;
}

.site-nav {
  transition: padding 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.site-nav.shrunk {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.nav-brand-mark {
  width: 3.25rem;
  height: 3.25rem;
  transition: width 200ms ease, height 200ms ease;
}

.site-nav.shrunk .nav-brand-mark {
  width: 2.5rem;
  height: 2.5rem;
}

.nav-shell {
  border-bottom: 1px solid rgba(0, 150, 209, 0.18);
}

.accent-rule {
  position: relative;
}

.accent-rule::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3px;
  margin-bottom: 1rem;
  background: var(--color-accent);
}

.tile-card,
.service-card {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 150, 209, 0.16);
  border-left: 4px solid var(--color-accent);
  background: #fff;
}

.btn-primary,
.btn-secondary,
.cookie-btn,
.form-submit {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-primary,
.cookie-btn,
.form-submit {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover,
.cookie-btn:hover,
.form-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(2, 2, 2, 0.12);
}

.btn-secondary:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.input-field,
select,
textarea,
input {
  border-radius: 4px;
  border: 1px solid rgba(2, 2, 2, 0.14);
  background: #fff;
}

.input-field:focus,
select:focus,
textarea:focus,
input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 150, 209, 0.12);
}

.hero-image,
.section-image,
.contact-image {
  border-radius: 24px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 28rem;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 150, 209, 0.16);
  border-left: 4px solid var(--color-accent);
  background: #fff;
}

.footer-logo {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 24px;
}

.footer-link,
.inline-link {
  text-decoration: none;
}

.footer-link:hover,
.inline-link:hover {
  color: var(--color-accent);
}

.result-box {
  border-radius: 16px;
  border: 1px solid rgba(0, 150, 209, 0.18);
  border-left: 4px solid var(--color-accent);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .cookie-banner {
    max-width: none;
  }
}
