* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2430;
  --muted: #5b6270;
  --accent: #1b6b86;
  --accent-dark: #11495c;
  --surface: #f6f4f1;
  --paper: #ffffff;
  --sand: #efeae3;
  --line: #d6d1c9;
  --sunset: #f3d7b7;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px 18px;
  background: var(--paper);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 28px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px 64px;
}

.section {
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.section.alt {
  background: var(--sand);
}

.section.sunset {
  background: var(--sunset);
}

.section-title {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.column {
  flex: 1;
  min-width: 0;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card img {
  border-radius: 12px;
}

.card h3 {
  margin: 0;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}

.quote {
  font-style: italic;
  margin: 0;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

footer {
  padding: 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(17, 73, 92, 0.24);
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hidden {
  display: none;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.hero-image {
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .columns {
    flex-direction: row;
  }

  .card-row {
    flex-direction: row;
  }

  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid .card {
    flex: 1 1 calc(50% - 12px);
  }
}
