* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a2e;
  --muted: #5b6b6f;
  --sand: #f5f2ed;
  --aqua: #1f9aa6;
  --pine: #16494f;
  --mist: #e9f2f3;
  --pebble: #d7d3cc;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

figure {
  margin: 0;
  background: var(--pebble);
  padding: 8px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.nav a {
  font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--aqua);
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 8% 80px;
  background: var(--mist);
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 60%;
  top: 40px;
  width: 36%;
  height: 60%;
  background: var(--pebble);
  z-index: 0;
}

.hero-content {
  flex: 1 1 320px;
  z-index: 1;
}

.hero-image {
  flex: 1 1 320px;
  z-index: 1;
}

.hero-image figure {
  background: var(--pebble);
  padding: 12px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  background: var(--pine);
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.alt {
  background: transparent;
  border: 2px solid var(--pine);
  color: var(--pine);
}

.btn:hover,
.inline-link:hover {
  opacity: 0.85;
}

.inline-link {
  color: var(--aqua);
  border-bottom: 1px solid var(--aqua);
}

.section {
  padding: 70px 8%;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.bg-shelter {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-shelter .card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.bg-workflow {
  background-image: url("https://images.unsplash.com/photo-1425082661705-1834bfd09dca?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-block .text {
  flex: 1 1 320px;
}

.offset-block .visual {
  flex: 1 1 280px;
  margin-top: -30px;
  background: var(--pebble);
  padding: 12px;
}

.stacked-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e0e0e0;
}

.card figure {
  margin: 0 0 12px;
}

.price {
  font-weight: 700;
  color: var(--pine);
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split-row .col {
  flex: 1 1 300px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e0e0e0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #cfd7d8;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  background: var(--aqua);
  color: #ffffff;
  padding: 12px 16px;
  display: inline-flex;
}

.image-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-band figure {
  flex: 1 1 180px;
  margin: 0;
}

.footer {
  padding: 40px 8%;
  background: #101c1f;
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer small {
  color: #b8c4c6;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  padding: 16px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
  cursor: pointer;
}

.page-hero {
  padding: 50px 8% 30px;
  background: var(--mist);
}

.page-hero h1 {
  margin: 0;
}

.legal-block {
  max-width: 900px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e0e0e0;
}
